/* =============================================
   FINCROW — styles.css
   fincrow.dev | Custom AI Automation for SMBs
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0A1628;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  line-height: 1.72;
  letter-spacing: 0.002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* --- Design Tokens --- */
:root {
  --bg:           #0A1628;
  --surface:      #0D1E38;
  --surface2:     #112240;
  --teal:         #4DD9C0;
  --teal-glow:    rgba(77,217,192,0.22);
  --teal-dim:     rgba(77,217,192,0.10);
  --teal-mid:     rgba(77,217,192,0.32);
  --teal-border:  rgba(77,217,192,0.14);
  --teal-hover:   rgba(77,217,192,0.42);
  --white:        #ffffff;
  --muted:        #B6C6D8;
  --dimmer:       #7E95AB;
  --body:         #D6E2EF;
  --section-pad:  clamp(72px, 10vw, 108px);
}

p { color: var(--body); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* --- Layout --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  padding: 15px 30px;
  font-size: 15.5px;
  border-radius: 100px;
  background: var(--teal);
  color: #081320;
  font-weight: 600;
  box-shadow: 0 0 36px var(--teal-glow);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  box-shadow: 0 0 56px rgba(77,217,192,0.38);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  padding: 15px 28px;
  font-size: 15.5px;
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.10);
  letter-spacing: -0.01em;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.26); }

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  background: transparent;
  letter-spacing: 0em;
}
.btn-sm:hover {
  background: var(--teal);
  color: #081320;
  border-color: var(--teal);
}

.btn-outline {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 100px;
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal-mid);
  display: block;
  text-align: center;
  width: 100%;
  transition: all 0.22s ease;
}
.btn-outline:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
}

.btn-large {
  font-size: 17px;
  padding: 18px 38px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--teal-border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  display: block;
  width: clamp(128px, 13vw, 170px);
  height: auto;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.22s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  animation: cta-pulse 6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50%       { box-shadow: 0 0 0 5px rgba(77,217,192,0.10); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px; height: 15px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
  gap: 1.25rem;
  border-top: 1px solid var(--teal-border);
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-cta { text-align: center; margin-top: 0.25rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 0 90px;
}

/* Dot-grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(77,217,192,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Ambient glow behind headline */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(77,217,192,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating crow shapes */
.hero-shape {
  position: absolute;
  pointer-events: none;
  height: auto;
  opacity: 0.1;
  filter: saturate(0.9) brightness(0.9);
}
.hero-shape-1 {
  width: clamp(220px, 26vw, 390px);
  top: 6%; right: 4%;
  animation: float-a 13s ease-in-out infinite;
  opacity: 0.1;
}
.hero-shape-2 {
  width: clamp(160px, 18vw, 270px);
  bottom: 12%; left: 3%;
  animation: float-b 10s ease-in-out infinite;
  opacity: 0.08;
}
.hero-shape-3 {
  width: clamp(120px, 14vw, 210px);
  top: 38%; right: 16%;
  animation: float-a 16s ease-in-out infinite reverse;
  opacity: 0.06;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(2.5deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(16px) rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shape, .nav-cta { animation: none !important; }
}

/* Hero content */
.hero-content {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.15s forwards;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 7vw, 74px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.85s ease 0.32s forwards;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--body);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.85s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.85s ease 0.68s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-up 1s ease 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.1); transform-origin: top; }
}

/* =============================================
   SECTION BASE
   ============================================= */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--surface); }

.section-header { margin-bottom: 3.75rem; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.028em;
  color: var(--white);
}

/* =============================================
   PAIN CARDS
   ============================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--teal-border);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,217,192,0.3), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pain-card:hover { border-color: var(--teal-hover); transform: translateY(-5px); }
.pain-card:hover::before { opacity: 1; }

.pain-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.65;
}

.pain-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.pain-body {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.8;
}

.collapsible-card {
  --collapsed-height: 150px;
  --collapsible-fade-bg: var(--surface);
}

.service-card.collapsible-card {
  --collapsible-fade-bg: var(--bg);
}

.card-collapsible-content {
  position: relative;
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.28s ease;
}

.collapsible-card.is-collapsed .card-collapsible-content {
  max-height: var(--collapsed-height);
}

.collapsible-card.is-collapsed .card-collapsible-content::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(10,22,40,0), var(--collapsible-fade-bg));
  pointer-events: none;
}

.card-toggle {
  margin-top: 0.45rem;
  border: none;
  background: transparent;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0;
  line-height: 1.3;
}

.card-toggle:hover {
  color: #7ce9d8;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--teal-border);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,217,192,0.3), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover { border-color: var(--teal-hover); transform: translateY(-5px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.service-body {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.78;
  flex: 1;
}

.service-outcome {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  padding-top: 1rem;
  border-top: 1px solid var(--teal-border);
  letter-spacing: 0.01em;
}

.portfolio-card {
  gap: 1rem;
}

.portfolio-card .service-body {
  flex: none;
}

.portfolio-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--teal-border);
  border-radius: 999px;
  background: var(--teal-dim);
}

.portfolio-audio-wrap {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--teal-border);
}

.portfolio-audio-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.portfolio-audio {
  width: 100%;
  display: block;
  border-radius: 999px;
}

.portfolio-video {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: rgba(8, 19, 32, 0.6);
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--teal-border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(77,217,192,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
}

.stat-item { position: relative; padding: 0 1rem; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 55%;
  background: var(--teal-border);
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 15.5px;
  color: var(--body);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.62;
}

/* =============================================
   PROCESS
   ============================================= */
.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 52px;
  bottom: 52px;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal) 0%, rgba(77,217,192,0.08) 100%);
}

.process-step {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: all 0.22s ease;
}
.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--teal);
  width: 63px; height: 63px;
  border-radius: 50%;
  border: 1px solid var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative; z-index: 1;
  background: var(--bg);
  letter-spacing: 0.06em;
}

.process-step:hover .process-num {
  background: var(--teal);
  color: #081320;
  border-color: var(--teal);
  box-shadow: 0 0 24px var(--teal-glow);
}

.process-content { padding-top: 0.9rem; }

.process-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.022em;
}

.process-body {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.8;
  max-width: 680px;
}

/* =============================================
   TOOLS / TECH TRUST
   ============================================= */
.tools-section {
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--teal-border);
}

.tools-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 1.75rem;
}

.tools-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tool-badge {
  padding: 7px 18px;
  border: 1px solid var(--teal-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--dimmer);
  transition: all 0.2s ease;
  font-weight: 500;
}
.tool-badge:hover {
  border-color: var(--teal-mid);
  color: var(--muted);
}

/* =============================================
   INVESTMENT
   ============================================= */
.investment-card {
  background: var(--bg);
  border: 1px solid var(--teal-border);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.25rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.investment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.55;
}

.investment-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.investment-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.investment-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.investment-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--teal-dim);
  border-radius: 100px;
  background: var(--teal-dim);
}

.investment-right {
  display: flex;
  flex-direction: column;
}

.investment-includes {
  background: var(--surface2);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--teal-border);
  flex: 1;
}

.includes-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.includes-list li {
  font-size: 14.5px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.4;
}
.includes-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.investment-cta-btn {
  margin-top: 1.25rem;
  display: block;
  text-align: center;
  padding: 15px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border-radius: 100px;
  background: var(--teal);
  color: #081320;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 0 28px var(--teal-glow);
}
.investment-cta-btn:hover {
  box-shadow: 0 0 48px rgba(77,217,192,0.36);
  transform: translateY(-2px);
}

/* =============================================
   CTA / CONTACT
   ============================================= */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(77,217,192,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.cta-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--body);
  max-width: 510px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.cta-paths {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-path {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.path-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 1.1rem;
}

.cta-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 3.5rem;
  color: var(--dimmer);
  font-size: 13px;
  flex-shrink: 0;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  width: 1px; height: 64px;
  background: var(--teal-border);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}

.form-input {
  width: 100%;
  background: #102746;
  border: 1px solid var(--teal-border);
  border-radius: 11px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  display: block;
}
.form-input::placeholder { color: var(--dimmer); }
.form-input:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(77,217,192,0.08);
}

.form-textarea {
  resize: none;
  line-height: 1.65;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--teal-dim);
  border-radius: 14px;
}
.success-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.form-success p {
  font-size: 15px;
  color: var(--body);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--teal-border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: clamp(120px, 11vw, 150px);
  height: auto;
}
.footer-tagline {
  font-size: 14px;
  color: var(--dimmer);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-link {
  font-size: 14px;
  color: var(--dimmer);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-copy {
  font-size: 13px;
  color: var(--dimmer);
  opacity: 0.55;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal,
[class*="reveal-delay"] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.revealed { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 960px) {
  .pain-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }

  .investment-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid { gap: 0; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 720px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

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

  .stat-item + .stat-item::before { display: none; }

  .stat-item { padding: 1.5rem 0; border-bottom: 1px solid var(--teal-border); }
  .stat-item:last-child { border-bottom: none; }

  .process-steps::before { display: none; }
  .process-step { gap: 1.25rem; }
  .process-num { width: 52px; height: 52px; font-size: 12px; }

  .cta-paths { flex-direction: column; align-items: center; gap: 2rem; }
  .cta-path { max-width: 100%; }
  .cta-divider {
    flex-direction: row;
    width: 100%;
    max-width: 360px;
    gap: 1rem;
    padding-top: 0;
  }
  .cta-divider::before,
  .cta-divider::after { width: 1fr; height: 1px; flex: 1; }

  .hero-shape-1 { opacity: 0.08; right: -2%; }
  .hero-shape-2 { opacity: 0.06; }
  .hero-shape-3 { display: none; }

  .investment-card { padding: 1.75rem; }

  .footer-links { gap: 1.5rem; }
}
