/* ============================================================
   Growdrive — main.css
   ============================================================
   1. Tokens
   2. Reset + base
   3. Layout utilities (mínimas)
   4. Componentes (pill, botones, cards, form, placeholders)
   5. Preview mode (cuando se abre un partial individualmente)
   6. Secciones
   ============================================================ */


/* ─── 1. Tokens ─────────────────────────────────────────── */
:root {
  /* greens */
  --green: #07D577;
  --green-2: #07CD72;
  --green-3: #07C56E;
  --green-bright: #12FF00;

  /* inks */
  --ink: #0B2A34;
  --ink-2: #062813;
  --ink-3: #061213;
  --ink-card: #0B2A34;

  /* lines / grays */
  --line: #203232;
  --line-soft: #DADDE0;
  --gray-1: #C9C9C9;
  --gray-2: #979797;
  --gray-3: #737373;
  --gray-4: #CCD0D4;
  --gray-soft: #696969;

  /* alerts */
  --red: #FF5252;
  --orange: #FF7D00;

  /* surfaces */
  --soft: #F4F4F4;
  --surface-light: #F6F6F6;

  /* gradients (reusables) */
  --grad-card: linear-gradient(180deg, #0B2A34 0%, #061213 100%);
  --grad-card-soft: linear-gradient(180deg, #0E292B 0%, #061213 100%);
  --grad-hero: linear-gradient(180deg, #0B2A34 0%, #000 100%);
  --grad-footer: linear-gradient(180deg, #fff 0%, #0B2A34 68%, #000 100%);

  /* radii */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 26px;

  /* layout */
  --container: 1380px;
  --container-narrow: 1174px;
  --pad-x: 40px;
}


/* ─── 2. Reset + base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
}

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

h1, h2, h3, h4, p { margin: 0; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, textarea { font: inherit; }

.font-arial { font-family: Arial, ArialMT, system-ui, sans-serif; }


/* ─── 3. Layout utilities (mínimas) ─────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container-narrow { max-width: var(--container-narrow); }


/* ─── 4. Componentes ────────────────────────────────────── */

/* Pills (badges de sección) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--green-2);
  border-radius: 9999px;
  padding: 6px 16px;
  color: var(--green-2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pill .pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px rgba(18, 255, 0, .6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-md);
  padding: 14px 22px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease, background-color .15s ease;
  cursor: pointer;
}
.btn--sm { padding: 10px 20px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--green);
  color: var(--ink);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(7, 213, 119, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn--ghost:hover { background: rgba(7, 213, 119, .08); }

/* Cards */
.card {
  background: var(--grad-card);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
}
.card--soft { background: var(--grad-card-soft); }
.card--neon {
  background: var(--grad-card);
  border: 2px solid var(--green-bright);
  box-shadow:
    0 0 0 1px rgba(18, 255, 0, .35),
    0 0 12px rgba(18, 255, 0, .55),
    0 0 28px rgba(18, 255, 0, .45),
    0 0 60px rgba(7, 205, 114, .55),
    0 0 100px rgba(7, 205, 114, .35),
    inset 0 0 24px rgba(18, 255, 0, .12);
}

/* Display headings */
.h-display {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}
.h-display-2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

/* Form fields */
.field {
  background: transparent;
  border: 1px solid var(--gray-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: #fff;
  font-weight: 400;
  width: 100%;
}
.field::placeholder { color: var(--gray-3); font-weight: 400; }
.field:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 213, 119, .18);
}

/* Hairline / dividers */
.divider {
  height: 1px;
  background: rgba(151, 151, 151, .25);
  border: 0;
}

/* Tiny chart bar */
.bar {
  width: 9px;
  background: var(--green-bright);
  border-radius: 1px;
}

/* Marquee */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* ─── Placeholders (reemplazan imágenes) ─── */
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: #0E292B;
  color: rgba(255, 255, 255, .35);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
.placeholder::after {
  content: attr(data-label);
  padding: 0 12px;
}
/* tipos */
.placeholder--hero      { aspect-ratio: 16/10; background: #1a3a4a; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.placeholder--problem   { background: #2a1a1a; height: 520px; }
.placeholder--team      { aspect-ratio: 16/9;  background: #1a2a3a; }
.placeholder--avatar    { aspect-ratio: 1;     border-radius: 50%; background: #4a3a5a; font-size: 9px; }
.placeholder--photo     { background: #1f3035; }
.placeholder--photo-a   { background: #28323a; }
.placeholder--photo-b   { background: #2c3a36; }
.placeholder--photo-c   { background: #383028; }
.placeholder--photo-d   { background: #2a2a3a; }
.placeholder--logo      { background: transparent; border: 1px dashed rgba(151, 151, 151, .35); }


/* Logo wordmark */
.logo-word {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  letter-spacing: .04em;
  color: #fff;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* ─── 5. Preview mode ───────────────────────────────────── */
/* Cuando se abre un sections/0X-*.html standalone, body.preview se aplica
   y agrega un padding + outline para ver los bordes de la sección. */
body.preview {
  background: var(--ink);
  padding: 24px;
  min-height: 100vh;
}
body.preview > * {
  outline: 1px dashed rgba(255, 255, 255, .12);
  outline-offset: 8px;
}


/* ─── 6. Secciones (cada CSS de sección abajo) ──────────── */

/* SECTION 01 — Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
.site-header__inner {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__brand { display: flex; align-items: center; gap: 12px; }
.site-header__brand .logo-word { font-size: 22px; }
.site-header__logo {
  display: block;
  height: 40px;
  width: auto;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: color .15s ease;
}
.nav-link:hover { color: #fff; }


/* SECTION 02 — Hero */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 0;
}
.hero__pill-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.hero__title {
  text-align: center;
  max-width: 1066px;
  margin: 0 auto;
  color: #fff;
}
.hero__title .accent { color: var(--green-2); }
.hero__lead {
  color: #fff;
  text-align: center;
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.hero__mock {
  margin: 40px auto 0;
  max-width: 1094px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  border: 2px solid #163040;
  border-bottom: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(7, 213, 119, .15);
}
.hero__mock-img {
  display: block;
  width: 100%;
  height: auto;
}


/* SECTION 03 — Problem */
.problem { background: #fff; }
.problem__inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem__copy h2 {
  margin-top: 20px;
  color: #0B2731;
}
.problem__copy h2 .accent { color: var(--green-2); }
.problem__lead {
  color: var(--gray-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 20px;
  max-width: 420px;
}
.problem__cards {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  max-width: 460px;
}
.problem__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
}
.problem__card-ic {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--red);
  margin-top: 1px;
}
.problem__card-ic svg,
.problem__card-ic img { width: auto; height: 28px; max-width: 100%; }
.problem__card-text { color: #fff; font-size: 14px; line-height: 1.3; }
.problem__card-text > .t { font-weight: 900; display: block; }
.problem__card-text > .d { color: var(--gray-1); font-weight: 400; margin-top: 2px; display: block; }

.problem__visual { position: relative; }
.problem__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-2);
}
.problem__photo-img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}


/* SECTION 04 — Pipeline */
.pipeline { background: #fff; padding-bottom: 24px; }
.pipeline__box {
  padding: 48px;
}
.pipeline__heading {
  text-align: center;
  margin-top: 24px;
  color: #fff;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pipeline__pill-wrap { display: flex; justify-content: center; }

.pipeline__cards {
  --grid-gap: 48px;
  --pipe-title-h: calc(14px * 1.25 * 2);
  --pipe-card-gap: 12px;
  --pipe-media-h: 320px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: start;
  position: relative;
}
.pipeline__card {
  position: relative;
  z-index: 2;
  max-width: 320px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pipe-card-gap);
}
.pipeline__card-title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  min-height: var(--pipe-title-h);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pipeline__connector {
  position: absolute;
  top: calc(var(--pipe-title-h) + var(--pipe-card-gap));
  width: 25%;
  height: var(--pipe-media-h);
  z-index: 1;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}
.pipeline__connector--a { right: 60%; }
.pipeline__connector--b { right: 25%; }
.pipeline__card-media {
  width: 60%;
  height: var(--pipe-media-h);
  border-radius: 16px;
  object-fit: contain;
  display: block;
  margin-inline: auto;
}
.pipeline__card-desc {
  margin: 0;
  color: var(--gray-1);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 260px;
}


/* SECTION 05 — Features ("Lo más importante") */
.features { background: #fff; padding: 96px 0; }
.features__head { text-align: center; }
.features__head h2 { margin-top: 20px; color: #0B2731; }
.features__head p {
  color: var(--gray-soft);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 16px;
  max-width: 820px;
  margin-inline: auto;
}
.features__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { padding: 28px; }
.feature-card--tall { grid-row: span 2; }
.feature-card__icon-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  justify-items: center;
  color: #07D577;
}
.feature-card__icon-grid svg { width: 48px; height: 48px; }
.feature-card__avatars {
  margin-top: 32px;
  display: flex;
  align-items: center;
}
.feature-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #0B2A34;
  object-fit: cover;
  display: block;
}
.feature-card__avatar + .feature-card__avatar { margin-left: -12px; }
.feature-card__avatar--more {
  background: #062813;
  display: grid;
  place-items: center;
  color: #07D577;
  font-size: 14px;
  font-weight: 900;
}
.feature-card__excelente,
.feature-card__correo {
  margin-top: 32px;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
.feature-card__title { color: #fff; font-size: 22px; font-weight: 900; margin-top: 24px; }
.feature-card__sub   { color: var(--gray-1); font-size: 15px; font-weight: 900; margin-top: 8px; }
.feature-card__inset {
  margin-top: 28px;
  border-radius: var(--r-md);
  padding: 16px;
  background: linear-gradient(180deg, #0B2731 0%, #000 100%);
  border: 1px solid #0A262F;
}
.feature-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.feature-card__chip {
  color: var(--green);
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 900;
}

/* email mock (card 2) */
.email-mock {
  margin-top: 24px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  color: #0B2731;
  border: 1px solid #0A262F;
  font-family: Arial, sans-serif;
  font-weight: 400;
}
.email-mock__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #182325;
}
.email-mock__bar-chip {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: #0E1A1C;
  border: 1px solid rgba(7, 213, 119, .22);
  color: var(--green-bright);
}
.email-mock__bar-text { line-height: 1.2; font-weight: 400; }
.email-mock__bar-text .t1 { color: var(--green-bright); font-size: 18px; font-weight: 700; }
.email-mock__bar-text .t2 { color: #CCD0D4; font-size: 14px; font-weight: 400; margin-top: 4px; }
.email-mock__meta {
  padding: 14px 18px;
  font-size: 13px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 6px;
  align-items: baseline;
}
.email-mock__meta-label { color: #737373; font-weight: 400; }
.email-mock__meta-value { color: #0B2731; font-weight: 400; }
.email-mock__meta-value--bold { font-weight: 700; }
.email-mock__sep { border-top: 1px solid #DADDE0; }
.email-mock__body {
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #0B2731;
  font-weight: 400;
  min-height: 120px;
}
.email-mock__body p { margin: 0 0 12px; }
.email-mock__body p:last-child { margin-bottom: 0; }
.email-mock__tags {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.email-mock__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0B2731;
  white-space: nowrap;
}
.email-mock__tag svg { color: var(--green); flex-shrink: 0; }

/* meeting stats (card 3) */
.meet-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.meet-stat {
  border-radius: var(--r-md);
  padding: 12px 0;
  background: linear-gradient(180deg, #0A262F 0%, #000 100%);
  border: 1px solid #0A262F;
}
.meet-stat__num { color: var(--green); font-weight: 900; font-size: 22px; font-family: Arial, sans-serif; }
.meet-stat__lbl { color: var(--gray-1); font-size: 10px; font-weight: 900; margin-top: 4px; letter-spacing: .05em; }

/* deliverability (card 4) */
.deliverability__lbl { color: var(--gray-1); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.deliverability__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.deliverability__bar {
  flex: 1;
  height: 8px;
  border-radius: 9999px;
  background: #0E292B;
  overflow: hidden;
}
.deliverability__bar > span {
  display: block;
  height: 100%;
  background: var(--green-bright);
}
.deliverability__pct { color: var(--green-bright); font-size: 14px; font-weight: 900; }
.deliverability__cap { color: var(--gray-1); font-size: 11px; font-weight: 400; margin-top: 12px; }

/* A/B testing (card 5) */
.ab__rows { margin-top: 24px; display: grid; gap: 8px; }
.ab__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.ab__row--a { border: 1px solid var(--gray-2); }
.ab__row--b { border: 1px solid #14B40C; background: rgba(13, 182, 0, .16); }
.ab__row-name { font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.ab__row--a .ab__row-name { color: var(--gray-1); }
.ab__row--b .ab__row-name { color: var(--green-bright); }
.ab__row-stats { display: flex; gap: 24px; }
.ab__stat-lbl { font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.ab__row--a .ab__stat-lbl { color: var(--gray-2); }
.ab__row--b .ab__stat-lbl { color: var(--green-bright); }
.ab__stat-val { color: #fff; font-weight: 900; }


/* SECTION 06 — Process (6 pasos) */
.process { background: #fff; padding: 96px 0; }
.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.process__copy h2 { margin-top: 20px; color: #0B2731; }
.process__lead {
  color: var(--gray-soft);
  font-size: 16px;
  margin-top: 20px;
  max-width: 440px;
  line-height: 1.5;
  font-weight: 400;
}
.process__list {
  border-radius: var(--r-md);
  overflow: hidden;
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-top: 2px solid var(--gray-1);
}
.process__item-ic { flex: none; width: 48px; display: grid; place-items: center; }
.process__item-ic img { width: auto; height: 36px; max-width: 100%; }
.process__item-title { color: #0B2731; font-size: 18px; font-weight: 900; }
.process__item-desc {
  color: var(--gray-3);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 400;
}


/* SECTION 07 — Market */
.market { background: #fff; padding: 96px 0; overflow-x: clip; }
.market-collage img { border-radius: var(--r-md); object-fit: cover; display: block; }
.market__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.market__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.market__photos .placeholder { aspect-ratio: auto; }
.market__copy h2 { margin-top: 20px; color: #0B2731; }
.market__lead {
  color: var(--gray-soft);
  margin-top: 20px;
  max-width: 440px;
  line-height: 1.5;
  font-weight: 400;
}
.market__industries-title { color: #0B2731; font-size: 15px; font-weight: 900; margin: 32px 0 16px; }
.market__industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
}
.industry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: var(--r-md);
  padding: 16px;
}
.industry__text {
  color: #0B2731;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: pre-line;
}
.market__b2b {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  margin-top: 20px;
}

.market__testimonials {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 0 24px;
  background: transparent;
}
.testimonial:not(:last-child) { border-right: 1px solid #E5E7EB; }
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial__stars img { width: 24px; height: 24px; }
.testimonial__avatar { object-fit: cover; }
.testimonial__quote { color: #0B2731; font-size: 14px; line-height: 1.55; font-weight: 400; }
.testimonial__by { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; }
.testimonial__name { color: #0B2731; font-size: 13px; font-weight: 900; }
.testimonial__role { color: var(--gray-3); font-size: 11px; font-weight: 400; }


/* SECTION 08 — Scaling CTA */
.scaling { background: #fff; padding-bottom: 96px; }
.scaling__box {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.scaling__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.scaling__bg .placeholder { height: 100%; border-radius: 0; aspect-ratio: auto; }
.scaling__copy { position: relative; z-index: 2; }
.scaling__copy h2 { color: #fff; margin-top: 20px; }
.scaling__copy p { color: var(--gray-1); margin-top: 16px; max-width: 420px; font-weight: 400; line-height: 1.5; }
.scaling__ctas { display: flex; gap: 12px; margin-top: 32px; }
.scaling__notes {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray-1);
  font-family: Arial, sans-serif;
}
.scaling__notes span { display: inline-flex; align-items: center; gap: 8px; }
.scaling__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 490px;
}
.scaling__feature {
  border-radius: var(--r-md);
  padding: 16px;
  background: var(--grad-card-soft);
  border: 2px solid var(--line);
}
.scaling__feature-t { color: var(--green); font-size: 13px; font-weight: 900; line-height: 1.2; }
.scaling__feature-d { color: var(--gray-1); font-size: 11px; font-weight: 900; margin-top: 4px; }

.scaling__quote {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
}
.scaling__quote-card {
  padding: 24px;
  max-width: 420px;
  background: var(--grad-card-soft);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}
.scaling__quote-mark {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: rgba(78, 180, 74, .5);
  line-height: .6;
}
.scaling__quote-text {
  color: var(--gray-1);
  font-size: 16px;
  margin-top: -16px;
  line-height: 1.3;
  font-weight: 900;
}
.scaling__quote-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.scaling__quote-name { color: var(--gray-1); font-size: 12px; font-weight: 900; }
.scaling__quote-role { color: var(--gray-1); font-size: 8px; letter-spacing: .15em; font-weight: 900; }


/* SECTION 09 — Why Growdrive */
.why { background: #fff; padding: 30px 0; }
.why__head { text-align: center; }
.why__head h2 { color: #0B2731; margin-top: 20px; }
.why__head p {
  color: var(--gray-soft);
  margin-top: 16px;
  max-width: 820px;
  margin-inline: auto;
  font-weight: 400;
  line-height: 1.5;
}
.why__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.why-card { padding: 28px; }
.why-card--bad { margin: 20px 8px; }
.why-card--good { margin: 0; }
.why-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.why-card__head .label {
  font-weight: 900;
  letter-spacing: .15em;
  font-size: 12px;
}
.why-card--bad .why-card__head .label { color: var(--red); }
.why-card--good .why-card__head .label { color: var(--green-bright); }
.why-card__intro {
  color: var(--gray-1);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.why-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-1);
}
.why-card--good .why-card__row {
  color: #fff;
  font-weight: 900;
}

.why__metrics {
  margin-top: 40px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.why__metric {
  padding: 0 24px;
  border-right: 1px solid #173E2B;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why__metric:last-child { border-right: 0; }
.why__metric-num {
  color: var(--green);
  font-weight: 900;
  font-family: Arial, sans-serif;
  font-size: 54px;
  line-height: 1;
}
.why__metric-lbl {
  color: var(--gray-1);
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}
.why__metric-cta {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}
.why__metric-cta .accent { color: var(--green); }


/* SECTION 10 — Final CTA + Footer */
.final {
  background: var(--grad-footer);
  padding: 96px 0 64px;
}
.final__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.final__form-wrap { color: #fff; }
.final__form-wrap h2 { color: #fff; margin-top: 20px; }
.final__form-lead {
  color: var(--gray-1);
  margin-top: 16px;
  max-width: 440px;
  line-height: 1.5;
  font-weight: 400;
}
.final__form { margin-top: 32px; max-width: 540px; display: grid; gap: 12px; }
.final__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.final__field { display: flex; flex-direction: column; gap: 4px; }
.final__form .btn { margin-top: 8px; font-size: 16px; }
.final__notes {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--gray-1);
  font-family: Arial, sans-serif;
  margin-top: 12px;
}
.final__notes span { display: inline-flex; align-items: center; gap: 8px; }

.final__benefits { color: #fff; padding-top: 16px; }
.final__benefits-h { color: var(--green-3); font-size: 22px; font-weight: 900; margin-bottom: 24px; }
.final__benefit { display: flex; gap: 16px; }
.final__benefit + .final__benefit { margin-top: 24px; }
.final__benefit-ic {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.final__benefit-t { color: #fff; font-size: 18px; font-weight: 900; }
.final__benefit-d { color: var(--gray-1); font-size: 14px; margin-top: 4px; line-height: 1.45; font-weight: 400; }

.final__logos { margin-top: 40px; text-align: center; }
.final__logos-lbl {
  color: var(--gray-1);
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 900;
  margin-bottom: 16px;
}
.final__logos-row { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.final__logo {
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--gray-1);
  font-size: 14px;
  font-weight: 900;
  background: rgba(216, 216, 216, .13);
}
.final__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.final__rating-text { color: var(--gray-1); font-size: 12px; margin-left: 8px; font-family: Arial, sans-serif; }

.final__footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-1);
  font-size: 12px;
  font-family: Arial, sans-serif;
}
.final__footer-brand { display: flex; align-items: center; gap: 12px; }
.final__footer-brand .logo-word { font-size: 14px; }
.final__footer-links { display: flex; gap: 20px; }
.final__footer-links a { transition: color .15s ease; }
.final__footer-links a:hover { color: #fff; }
