/* ============================================
   FÁILTE AI — Main Stylesheet
   ============================================ */

/* --- RESET & CUSTOM PROPERTIES --------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #06070f;
  --surface: #0d0f1a;
  --surface2: #131520;
  --border: #1e2235;
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --white: #f4f4f8;
  --muted: #5a6070;
  --mid: #9099ae;
  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

/* --- NOISE OVERLAY --------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- CUSTOM CURSOR --------------------------- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* --- KEYFRAMES ------------------------------- */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: rgba(6, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  animation: slideDown 0.6s ease both;
}

.logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--orange);
  color: #000;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(249, 115, 22, 0.04) 40%,
      rgba(249, 115, 22, 0.07) 60%,
      transparent 60%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-eyebrow::before {
  content: '●';
  font-size: 8px;
  animation: pulse 2s infinite;
}

h1.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 900px;
  animation: fadeUp 0.7s ease 0.2s both;
}

h1.hero-title .line2 {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* Buttons */
.btn-primary {
  background: var(--orange);
  color: #000;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}

.btn-ghost {
  color: var(--mid);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-grant {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--mid);
  animation: fadeUp 0.7s ease 0.5s both;
}

.hero-grant strong {
  color: var(--orange);
}

.grant-badge {
  background: var(--orange);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--orange);
  font-size: 8px;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stat-box {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}

.stat-box:hover {
  background: var(--surface);
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.5;
}

.stat-source {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section {
  padding: 100px 5vw;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

h2.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}

h2.section-title span {
  color: var(--orange);
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
}

.why-card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card:hover {
  background: var(--surface2);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
  cursor: none;
}

.service-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: var(--surface2);
  transform: translateY(-2px);
}

.service-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.15);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.service-card:hover .service-num {
  color: rgba(249, 115, 22, 0.4);
}

.service-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.stag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--orange);
}

/* ============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================ */
#social {
  background: var(--bg);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.2s;
}

.tcard:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard-stars {
  display: flex;
  gap: 3px;
}

.tcard-star {
  color: var(--orange);
  font-size: 14px;
}

.tcard-result {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
}

.tcard-quote {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  position: relative;
  padding-top: 8px;
}

.tcard-quote::before {
  content: '\201C';
  font-family: var(--display);
  font-size: 64px;
  color: rgba(249, 115, 22, 0.12);
  position: absolute;
  top: -16px;
  left: -8px;
  line-height: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.tcard-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.tcard-role {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* --- Trust Strip --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 48px;
}

.trust-item {
  background: var(--surface);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}

.trust-item:hover {
  background: var(--surface2);
}

.trust-icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-label-main {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-top: 4px;
}

.trust-label-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-2px);
}

.price-card.featured {
  background: var(--surface2);
  border-color: rgba(249, 115, 22, 0.5);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--orange);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
}

.price-tier {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 20px;
  color: var(--muted);
  font-weight: 400;
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pf {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

.pf::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
}

.price-cta:hover {
  background: #fff;
}

.price-card:not(.featured) .price-cta {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.price-card:not(.featured) .price-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.setup-banner {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 32px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.setup-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.setup-val {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.setup-right {
  font-size: 13px;
  color: var(--mid);
  max-width: 460px;
  line-height: 1.65;
}

.setup-right strong {
  color: var(--orange);
}

/* ============================================
   GRANT SECTION
   ============================================ */
.grant-section {
  background: linear-gradient(135deg, #0a0f06 0%, #0d1209 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.grant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grant-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 24px;
}

.grant-badge-big span {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
}

.grant-badge-big p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
}

.grant-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.grant-title span {
  color: var(--orange);
}

.grant-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}

.grant-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grant-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gs-num {
  width: 32px;
  height: 32px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}

.gs-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.gs-text strong {
  color: var(--white);
}

.grant-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.gv-label {
  font-size: 13px;
  color: var(--mid);
}

.gv-value {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.gv-value.green {
  color: #4ade80;
}

.gv-value.orange {
  color: var(--orange);
}

/* ============================================
   MARKET SECTION
   ============================================ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.2s;
}

.market-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.market-card-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.market-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.market-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.contact-info-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-info-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* --- Contact Form --- */
.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.form-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(249, 115, 22, 0.5);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field select {
  appearance: none;
  cursor: pointer;
  color: var(--mid);
}

.field select option {
  background: var(--surface2);
  color: var(--white);
}

.field textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Follow-up preferences */
.followup-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.fopt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  color: var(--mid);
  transition: all 0.2s;
  user-select: none;
}

.fopt.active {
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.06);
  color: var(--white);
}

.fopt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.2s;
}

.fopt.active .fopt-dot {
  border-color: var(--orange);
  background: var(--orange);
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.2s;
  margin-bottom: 14px;
}

.form-submit:hover {
  background: #fff;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--orange);
}

.form-success-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.form-success-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-right {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================ */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .services-grid,
  .testimonials,
  .pricing-grid,
  .grant-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================ */
@media (max-width: 600px) {

  .stats,
  .market-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .followup-opts {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   RESULT CARDS (upgraded testimonials)
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 52px;
}
.result-card {
  background: var(--surface);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s, border-color 0.25s;
}
.result-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.result-card:hover { background: var(--surface2); }
.result-industry {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.result-metrics {
  display: flex;
  gap: 32px;
}
.metric-val {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.metric-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.result-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid);
  flex: 1;
  font-style: italic;
}
.result-client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.client-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.client-info .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.client-info .role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ — STICKY TWO-COLUMN LAYOUT
   ============================================ */
#faq {
  padding: 100px 5vw;
  border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 110px;
}
.faq-blurb {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-top: 16px;
}
.faq-items {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.faq-q-btn:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
}
.faq-ans {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s;
}
.faq-item.open .faq-ans {
  max-height: 400px;
  padding-bottom: 22px;
}
@media (max-width: 800px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
}

/* Footer privacy notice */
.footer-privacy {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  max-width: 700px;
  margin-top: 8px;
}
