
    /* ============ DESIGN TOKENS ============ */
    :root {
      /* Color */
      --cream-100: #FAF7F2;
      --cream-200: #F2EBE0;
      --cream-300: #E8DFCE;
      --cream-400: #DACFB8;
      --ink-900: #0E1B2C;
      --ink-800: #14243A;
      --ink-700: #1F2E47;
      --ink-500: #4A5468;
      --ink-400: #6B7585;
      --ink-300: #8B96A8;
      --gold-700: #7A551A;
      --gold-600: #9C6F25;
      --gold-500: #B8852E;
      --gold-400: #D6A350;
      --gold-100: #F5E8C8;
      --gold-50:  #FBF4DE;
      --burgundy: #6B2737;
      --leaf-500: #4A6741;
      --paper: #FFFFFF;
      --star: #E8A91C;

      /* Typography */
      --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
      --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

      /* Spacing scale */
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.5rem;
      --space-6: 2rem;
      --space-7: 3rem;
      --space-8: 4rem;
      --space-9: 6rem;
      --space-10: 8rem;

      /* Layout */
      --max-w: 1200px;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 18px;
      --radius-pill: 999px;

      /* Shadows */
      --shadow-sm: 0 1px 2px rgba(14, 27, 44, 0.06), 0 1px 3px rgba(14, 27, 44, 0.04);
      --shadow-md: 0 4px 14px rgba(14, 27, 44, 0.08), 0 2px 4px rgba(14, 27, 44, 0.05);
      --shadow-lg: 0 12px 32px rgba(14, 27, 44, 0.12), 0 6px 12px rgba(14, 27, 44, 0.06);
      --shadow-gold: 0 8px 24px rgba(184, 133, 46, 0.28);
    }

    /* ============ RESET / BASE ============ */
    *, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-700);
      background-color: var(--cream-100);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* Subtle paper texture background */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(184, 133, 46, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 27, 44, 0.02) 0%, transparent 50%);
    }

    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    a { color: inherit; text-decoration: none; }
    input, select, textarea, button { font-family: inherit; font-size: inherit; }

    h1, h2, h3, h4, h5 {
      font-family: var(--font-display);
      color: var(--ink-900);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.02em;
      font-variation-settings: "opsz" 80;
    }

    h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 450; }
    h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 450; }
    h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
    h4 { font-size: 1.25rem; font-weight: 500; }

    p { color: var(--ink-500); }

    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-5);
      position: relative;
      z-index: 1;
    }

    /* ============ UTILITY BAR ============ */
    .utility-bar {
      background: var(--ink-900);
      color: var(--cream-200);
      padding: var(--space-2) 0;
      font-size: 13.5px;
      letter-spacing: 0.01em;
    }

    .utility-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      flex-wrap: wrap;
    }

    .utility-bar .trust-mini {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      opacity: 0.92;
    }

    .stars-tiny {
      display: inline-flex;
      gap: 1px;
      color: var(--star);
    }

    .utility-bar a {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      color: var(--gold-400);
      font-weight: 600;
      transition: color 0.2s;
    }

    .utility-bar a:hover { color: var(--gold-100); }

    @media (max-width: 600px) {
      .utility-bar .trust-mini { display: none; }
      .utility-bar .container { justify-content: center; }
    }

    /* ============ NAV ============ */
    .nav {
      background: var(--cream-100);
      padding: var(--space-4) 0;
      border-bottom: 1px solid var(--cream-300);
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(8px);
      background: rgba(250, 247, 242, 0.92);
    }

    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      text-decoration: none;
    }

    .logo img {
      height: 44px;
      width: auto;
      /* Reserve space for the wordmark while it loads, eliminating CLS.
         The Crexton wordmark with icon renders at ~3.5:1 aspect ratio. */
      aspect-ratio: 3.5 / 1;
    }

    .logo-text {
      display: none;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      background: var(--gold-500);
      color: var(--paper);
      padding: 12px 22px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 4px 12px rgba(184, 133, 46, 0.25);
    }

    .nav-cta:hover {
      background: var(--gold-600);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(184, 133, 46, 0.32);
    }

    /* ============ HERO ============ */
    .hero {
      padding: var(--space-7) 0 var(--space-8);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60%;
      height: 140%;
      background: radial-gradient(ellipse at center, rgba(184, 133, 46, 0.06) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: var(--space-8);
      align-items: start;
    }

    .hero-content { position: relative; }

    .pre-headline {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      background: var(--gold-50);
      color: var(--gold-700);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: var(--space-5);
      border: 1px solid var(--gold-100);
    }

    .pre-headline .dot {
      width: 6px; height: 6px;
      background: var(--gold-500);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }

    .hero h1 {
      margin-bottom: var(--space-5);
      text-wrap: balance;
      text-wrap: pretty; /* fallback for browsers that ship pretty before balance */
    }
    /* Modern browsers (Chrome 114+, Safari 17.5+, FF 121+) honor balance and
       prefer it when both are declared via the later value above. */
    @supports (text-wrap: balance) {
      .hero h1 { text-wrap: balance; }
    }

    .hero h1 .accent {
      font-style: italic;
      color: var(--gold-600);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--ink-500);
      margin-bottom: var(--space-6);
      max-width: 540px;
      line-height: 1.55;
    }

    .hero-pain {
      font-size: 1.05rem;
      color: var(--ink-700);
      margin-bottom: var(--space-5);
      max-width: 560px;
      line-height: 1.6;
      padding: 16px 18px;
      background: rgba(255,255,255,0.55);
      border-left: 3px solid var(--gold-500);
      border-radius: 4px;
    }
    .hero-pain strong { color: var(--ink-900); }

    @media (max-width: 768px) {
      .hero-pain {
        font-size: 0.98rem;
        padding: 12px 14px;
        line-height: 1.55;
      }
    }

    .benefit-list {
      list-style: none;
      display: grid;
      gap: var(--space-3);
      margin-bottom: var(--space-6);
    }

    .benefit-list li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      color: var(--ink-700);
      font-weight: 500;
      font-size: 16px;
    }

    .check-ico {
      flex-shrink: 0;
      width: 22px; height: 22px;
      background: var(--gold-100);
      color: var(--gold-700);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: var(--space-5);
      padding-top: var(--space-5);
      border-top: 1px solid var(--cream-300);
      flex-wrap: wrap;
    }

    .review-block {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }

    .stars {
      display: inline-flex;
      gap: 2px;
      color: var(--star);
      font-size: 18px;
    }

    .review-text {
      font-size: 14px;
      color: var(--ink-500);
      line-height: 1.4;
    }

    .review-text strong { color: var(--ink-900); font-weight: 700; }

    /* ============ HERO FORM ============ */
    .hero-form-wrap {
      background: var(--paper);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--cream-300);
      overflow: hidden;
      position: relative;
      z-index: 2;
    }

    .form-header {
      background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
      color: var(--cream-100);
      padding: var(--space-5) var(--space-6);
      position: relative;
    }

    .form-header::after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0; right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 100%);
    }

    .form-header .tag {
      display: inline-block;
      background: var(--gold-500);
      color: var(--ink-900);
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--space-3);
    }

    .form-header h3 {
      color: var(--paper);
      font-size: 1.6rem;
      margin-bottom: var(--space-2);
      font-weight: 500;
      letter-spacing: -0.015em;
    }

    .form-header p {
      color: var(--cream-200);
      font-size: 14.5px;
      opacity: 0.85;
    }

    .form-body {
      padding: var(--space-6);
    }

    .form-progress {
      display: flex;
      gap: var(--space-2);
      margin-bottom: var(--space-5);
    }

    .form-progress span {
      flex: 1;
      height: 4px;
      background: var(--cream-300);
      border-radius: var(--radius-pill);
      transition: background 0.3s;
    }

    .form-progress span.active { background: var(--gold-500); }
    .form-progress span.done { background: var(--leaf-500); }

    .form-step { display: none; }
    .form-step.active { display: block; animation: fadeIn 0.3s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .form-step-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--ink-900);
      margin-bottom: var(--space-2);
      font-weight: 500;
    }

    .form-step-sub {
      font-size: 14px;
      color: var(--ink-400);
      margin-bottom: var(--space-5);
    }

    .field {
      margin-bottom: var(--space-4);
    }

    .field label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink-700);
      margin-bottom: 6px;
    }

    .field label .opt {
      font-weight: 400;
      color: var(--ink-300);
      font-size: 12.5px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--cream-400);
      border-radius: var(--radius-sm);
      background: var(--cream-100);
      color: var(--ink-900);
      font-size: 15px;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--gold-500);
      background: var(--paper);
      box-shadow: 0 0 0 4px rgba(184, 133, 46, 0.12);
    }

    .field .error-msg {
      color: var(--burgundy);
      font-size: 13px;
      margin-top: 4px;
      display: none;
    }

    .field.has-error input,
    .field.has-error select { border-color: var(--burgundy); }

    .field.has-error .error-msg { display: block; }

    .radio-cards {
      display: grid;
      gap: var(--space-2);
    }

    .radio-card {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: 14px 16px;
      border: 1.5px solid var(--cream-400);
      border-radius: var(--radius-md);
      background: var(--cream-100);
      cursor: pointer;
      transition: all 0.2s;
    }

    .radio-card:hover {
      border-color: var(--gold-400);
      background: var(--cream-100);
    }

    .radio-card input { display: none; }

    .radio-card .indicator {
      width: 20px; height: 20px;
      border: 2px solid var(--cream-400);
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      transition: border-color 0.2s;
    }

    .radio-card input:checked + .indicator {
      border-color: var(--gold-500);
    }

    .radio-card input:checked + .indicator::after {
      content: "";
      position: absolute;
      inset: 3px;
      background: var(--gold-500);
      border-radius: 50%;
    }

    .radio-card:has(input:checked) {
      border-color: var(--gold-500);
      background: var(--gold-50);
    }

    .radio-card .label-text {
      font-weight: 500;
      color: var(--ink-700);
      font-size: 15px;
    }

    .form-actions {
      display: flex;
      gap: var(--space-3);
      margin-top: var(--space-5);
    }

    /* On narrow screens, allow in-form buttons to wrap text and shrink so the
       primary button (which has the longest label) doesn't overflow the form. */
    @media (max-width: 480px) {
      .form-actions { gap: var(--space-2); }
      .form-actions .btn { white-space: normal; padding: 13px 16px; font-size: 14px; line-height: 1.25; min-width: 0; }
      .form-actions .btn-ghost { flex: 0 0 auto; padding: 13px 18px; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      padding: 14px 26px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 15.5px;
      letter-spacing: 0.005em;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--gold-500);
      color: var(--paper);
      box-shadow: var(--shadow-gold);
      flex: 1;
    }

    .btn-primary:hover {
      background: var(--gold-600);
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(184, 133, 46, 0.34);
    }

    .btn-primary:active { transform: translateY(0); }

    .btn-ghost {
      background: transparent;
      color: var(--ink-500);
      border: 1.5px solid var(--cream-400);
    }

    .btn-ghost:hover { border-color: var(--ink-500); color: var(--ink-900); }

    /* GDPR / CASL consent checkbox */
    .consent-field { margin-top: var(--space-2); }
    .consent-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
      font-size: 13px;
      line-height: 1.5;
      color: var(--ink-500);
      font-weight: 400 !important;
      letter-spacing: 0 !important;
      text-transform: none !important;
    }
    .consent-label input[type="checkbox"] {
      flex-shrink: 0;
      margin-top: 2px;
      width: 16px; height: 16px;
      accent-color: var(--gold-600);
      cursor: pointer;
    }
    .consent-label a { color: var(--ink-700); text-decoration: underline; }
    .consent-label a:hover { color: var(--gold-700); }

    /* Risk-reversal block under the submit button */
    .risk-reversal {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: var(--space-4);
      padding: 14px 14px;
      background: linear-gradient(180deg, rgba(20, 89, 65, 0.06), rgba(20, 89, 65, 0.02));
      border: 1px solid rgba(20, 89, 65, 0.18);
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.5;
      color: var(--ink-700);
    }
    .risk-reversal svg {
      flex-shrink: 0;
      color: var(--leaf-500);
      margin-top: 1px;
    }
    .risk-reversal strong {
      display: block;
      color: var(--ink-900);
      font-size: 13.5px;
      margin-bottom: 2px;
      font-weight: 700;
    }

    .form-footer-trust {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      margin-top: var(--space-5);
      padding-top: var(--space-4);
      border-top: 1px solid var(--cream-300);
      font-size: 12.5px;
      color: var(--ink-400);
    }

    .form-footer-trust svg {
      flex-shrink: 0;
      color: var(--leaf-500);
    }

    /* Success state */
    .form-success {
      text-align: center;
      padding: var(--space-6) var(--space-4);
      display: none;
    }

    .form-success.show { display: block; animation: fadeIn 0.4s ease; }

    .success-ico {
      width: 64px; height: 64px;
      background: var(--leaf-500);
      color: var(--paper);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-4);
    }

    .form-success h4 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--ink-900);
      margin-bottom: var(--space-3);
    }

    .form-success p {
      color: var(--ink-500);
      max-width: 320px;
      margin: 0 auto;
    }

    /* ============ TRUST STRIP ============ */
    .trust-strip {
      background: var(--cream-200);
      padding: var(--space-6) 0;
      border-top: 1px solid var(--cream-300);
      border-bottom: 1px solid var(--cream-300);
    }

    .trust-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      flex-wrap: wrap;
    }

    .trust-strip-label {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--ink-700);
      flex-shrink: 0;
    }

    .trust-badges {
      display: flex;
      align-items: center;
      gap: var(--space-7);
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      color: var(--ink-500);
      font-weight: 600;
      font-size: 14.5px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .trust-badge svg { color: var(--gold-500); flex-shrink: 0; }

    /* ============ SECTION BASE ============ */
    section { padding: var(--space-9) 0; position: relative; }

    .section-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      color: var(--gold-600);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: var(--space-3);
    }

    .section-title {
      margin-bottom: var(--space-4);
      max-width: 760px;
    }

    .section-title em {
      color: var(--gold-600);
      font-style: italic;
      font-weight: 400;
    }

    .section-intro {
      max-width: 660px;
      font-size: 1.1rem;
      color: var(--ink-500);
      margin-bottom: var(--space-7);
    }

    .section-header { text-align: center; }
    .section-header .section-title,
    .section-header .section-intro { margin-left: auto; margin-right: auto; }

    /* ============ TRANSFORMATION (PROCESS) ============ */
    .process {
      background: var(--cream-100);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-7);
    }

    .process-card {
      background: var(--paper);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: var(--space-6) var(--space-5);
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .process-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .step-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold-400);
      line-height: 1;
      font-variation-settings: "opsz" 144;
      font-style: italic;
      margin-bottom: var(--space-3);
    }

    .step-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-600);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: var(--space-2);
    }

    .process-card h4 {
      color: var(--ink-900);
      margin-bottom: var(--space-3);
      font-weight: 500;
    }

    .process-card p {
      font-size: 14.5px;
      color: var(--ink-500);
      line-height: 1.55;
    }

    .process-icon {
      width: 48px; height: 48px;
      background: var(--gold-50);
      color: var(--gold-600);
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-4);
    }

    /* ============ SERVICES / PACKAGES ============ */
    .services {
      background: var(--cream-200);
      position: relative;
    }

    .services::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: var(--cream-300);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-7);
    }

    /* At intermediate widths the 3-col pricing makes each card narrow enough
       to wrap the unified "Get My Free Marketing Plan" CTA. Tighten padding
       so it stays single-line until the cards stack on mobile. */
    @media (max-width: 1100px) and (min-width: 768px) {
      .services-grid { gap: var(--space-4); }
      .service-cta { padding: 11px 14px; font-size: 13.5px; white-space: nowrap; }
    }

    .service-card {
      background: var(--paper);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      border: 1px solid var(--cream-300);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--gold-400);
    }

    .service-card.featured {
      border: 2px solid var(--gold-500);
      box-shadow: var(--shadow-md);
      position: relative;
    }

    .featured-tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold-500);
      color: var(--paper);
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .service-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--gold-50) 0%, var(--gold-100) 100%);
      color: var(--gold-700);
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-4);
    }

    .service-card h4 {
      color: var(--ink-900);
      margin-bottom: 6px;
      font-size: 1.35rem;
    }

    .service-card .best-for {
      font-size: 13.5px;
      color: var(--ink-500);
      line-height: 1.45;
      margin-bottom: var(--space-3);
      min-height: 38px;
    }

    .service-card .price {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--gold-700);
      font-weight: 500;
      margin-bottom: var(--space-4);
      font-style: italic;
    }

    .service-card ul {
      list-style: none;
      margin-bottom: var(--space-5);
      flex-grow: 1;
    }

    .service-card ul li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      padding: 6px 0;
      font-size: 14.5px;
      color: var(--ink-500);
      line-height: 1.5;
    }

    .service-card ul li::before {
      content: "";
      flex-shrink: 0;
      width: 6px; height: 6px;
      background: var(--gold-500);
      border-radius: 50%;
      margin-top: 9px;
    }

    .service-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      padding: 12px 20px;
      border-radius: var(--radius-pill);
      background: var(--ink-900);
      color: var(--paper);
      font-weight: 600;
      font-size: 14.5px;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
    }

    .service-cta:hover { background: var(--gold-500); }

    .service-card.featured .service-cta { background: var(--gold-500); }
    .service-card.featured .service-cta:hover { background: var(--gold-600); }

    /* ============ BENEFITS / WHY US ============ */
    .why-us {
      background: var(--cream-100);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-8);
      align-items: stretch;
    }

    .why-content h2 { margin-bottom: var(--space-5); }

    .why-features {
      display: grid;
      gap: var(--space-5);
      margin-top: var(--space-6);
    }

    .why-feature {
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
    }

    .why-feature-ico {
      flex-shrink: 0;
      width: 48px; height: 48px;
      background: var(--gold-50);
      color: var(--gold-700);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-feature h4 {
      color: var(--ink-900);
      margin-bottom: 6px;
      font-size: 1.15rem;
    }

    .why-feature p {
      font-size: 15px;
      color: var(--ink-500);
      line-height: 1.55;
    }

    /* Stat panel (right side of why-us) */
    .stat-panel {
      background: linear-gradient(160deg, var(--ink-900) 0%, var(--ink-700) 100%);
      border-radius: var(--radius-lg);
      padding: var(--space-7);
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stat-panel::before {
      content: "";
      position: absolute;
      top: -50%; right: -30%;
      width: 80%; height: 200%;
      background: radial-gradient(circle, rgba(184, 133, 46, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .stat-panel-eyebrow {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold-400);
      font-size: 1.1rem;
      margin-bottom: var(--space-3);
      position: relative;
      z-index: 1;
    }

    .stat-panel h3 {
      color: var(--paper);
      font-size: 1.6rem;
      margin-bottom: var(--space-6);
      font-weight: 400;
      position: relative;
      z-index: 1;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-5) var(--space-6);
      position: relative;
      z-index: 1;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 400;
      color: var(--gold-400);
      line-height: 1;
      margin-bottom: 6px;
      font-variation-settings: "opsz" 144;
    }

    /* Text-style stat (no fabricated number — uses an icon + label instead) */
    .stat-grid-text { gap: var(--space-5) var(--space-5); }
    .stat-num-text {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-sans);
      font-size: 17px;
      font-weight: 700;
      color: var(--gold-400);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .stat-num-text svg {
      flex-shrink: 0;
      color: var(--gold-500);
    }
    .stat-panel-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: var(--space-5);
      padding: 10px 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 999px;
      color: var(--paper);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 600;
      transition: all .2s ease;
      position: relative;
      z-index: 1;
    }
    .stat-panel-cta:hover {
      background: var(--gold-500);
      border-color: var(--gold-500);
      color: var(--ink-900);
    }

    .stat-label {
      font-size: 13.5px;
      color: var(--cream-200);
      opacity: 0.85;
      line-height: 1.4;
    }

    /* ============ TESTIMONIALS (Trustpilot widget container) ============ */
    .testimonials {
      background: var(--cream-200);
    }

    .trustpilot-widget {
      margin-top: var(--space-7);
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto;
    }
    /* When the live widget is configured, reserve space so its iframe doesn't
       cause CLS as it streams in. The .tp-active class is added by the
       activation IIFE in <head> only when a business unit ID is set. */
    .trustpilot-widget.tp-active { min-height: 240px; }

    /* Fallback shown when the Trustpilot widget hasn't loaded yet
       (no business unit ID set, script blocked, or still loading).
       Once Trustpilot renders the real widget into the container, this
       fallback is replaced by Trustpilot's own iframe. */
    .tp-fallback {
      display: flex;
      align-items: center;
      gap: var(--space-5);
      background: var(--paper);
      border-radius: var(--radius-xl);
      padding: var(--space-6) var(--space-7);
      border: 1px solid var(--cream-300);
      box-shadow: 0 4px 24px -10px rgba(15,23,42,0.08);
      text-decoration: none;
      transition: all .2s ease;
      max-width: 720px;
      margin: 0 auto;
    }
    .tp-fallback:hover {
      border-color: var(--gold-500);
      box-shadow: 0 8px 28px -10px rgba(160, 110, 30, 0.18);
      transform: translateY(-2px);
    }
    .tp-fallback-stars {
      display: inline-flex;
      gap: 3px;
      color: #00b67a;
      flex-shrink: 0;
    }
    .tp-fallback-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
    }
    .tp-fallback-text strong {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--ink-900);
      font-weight: 400;
      line-height: 1.2;
    }
    .tp-fallback-text span {
      font-size: 13.5px;
      color: var(--ink-500);
    }
    .tp-fallback-arrow {
      color: var(--gold-700);
      flex-shrink: 0;
    }

    .tp-disclaimer {
      text-align: center;
      margin-top: var(--space-5);
      font-size: 12.5px;
      color: var(--ink-400);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .tp-disclaimer a {
      color: var(--ink-500);
      text-decoration: underline;
    }
    .tp-disclaimer a:hover { color: var(--gold-700); }

    /* ============ STRATEGY CALL DETAILS (replaces case studies) ============ */
    .cases {
      background: var(--paper);
    }
    .call-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-7);
    }
    .call-card {
      padding: var(--space-5);
      background: var(--cream-100);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      transition: all .2s ease;
    }
    .call-card:hover {
      border-color: var(--gold-500);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px -10px rgba(160, 110, 30, 0.18);
    }
    .call-card-icon {
      width: 44px;
      height: 44px;
      background: var(--gold-100);
      color: var(--gold-700);
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-3);
    }
    .call-card h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--ink-900);
      margin-bottom: 8px;
      line-height: 1.25;
    }
    .call-card p {
      color: var(--ink-500);
      font-size: 14.5px;
      line-height: 1.55;
    }

    @media (max-width: 900px) {
      .call-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .call-grid { grid-template-columns: 1fr; }
      .tp-fallback {
        flex-direction: column;
        text-align: center;
        padding: var(--space-5);
        gap: var(--space-3);
      }
      .tp-fallback-arrow { display: none; }
    }

    /* ============ LEGACY (unused — kept commented for reference) ============ */
    /*
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
    .testimonial-card { background: var(--paper); border-radius: var(--radius-lg); }
    */

    .testimonial-card {
      background: var(--paper);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      border: 1px solid var(--cream-300);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .review-source {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      margin-bottom: var(--space-3);
      padding-bottom: var(--space-3);
      border-bottom: 1px solid var(--cream-300);
    }

    .google-logo {
      width: 22px; height: 22px;
      background: var(--paper);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-source-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-500);
    }

    .review-stars-row {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      margin-bottom: var(--space-4);
    }

    .review-stars-row .stars { font-size: 17px; }

    .review-date {
      font-size: 12.5px;
      color: var(--ink-300);
    }

    .testimonial-quote {
      font-family: var(--font-display);
      font-size: 1.05rem;
      line-height: 1.55;
      color: var(--ink-700);
      margin-bottom: var(--space-5);
      flex-grow: 1;
      font-weight: 400;
    }

    .testimonial-quote strong {
      background: linear-gradient(180deg, transparent 65%, var(--gold-100) 65%);
      font-weight: 500;
      padding: 0 2px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding-top: var(--space-4);
      border-top: 1px solid var(--cream-300);
    }

    .author-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--gold-100);
      color: var(--gold-700);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      color: var(--ink-900);
      font-size: 14.5px;
      margin-bottom: 1px;
    }

    .author-meta {
      font-size: 12.5px;
      color: var(--ink-400);
    }

    /* ============ CASE STUDIES ============ */
    .cases {
      background: var(--cream-100);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-7);
    }

    .case-card {
      background: var(--paper);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--cream-300);
      display: grid;
      grid-template-columns: 180px 1fr;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .case-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .case-cover {
      background: linear-gradient(135deg, var(--ink-800), var(--ink-900));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-5);
      position: relative;
      overflow: hidden;
    }

    .case-cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(184, 133, 46, 0.15), transparent 60%);
    }

    .book-mockup {
      width: 100px;
      height: 145px;
      background: var(--gold-100);
      border-radius: 3px 6px 6px 3px;
      box-shadow: -2px 0 0 rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      position: relative;
      z-index: 1;
    }

    .book-mockup::before {
      content: "";
      position: absolute;
      left: 4px; top: 0; bottom: 0;
      width: 1px;
      background: rgba(0,0,0,0.1);
    }

    .book-mockup-title {
      font-family: var(--font-display);
      font-size: 13px;
      color: var(--ink-900);
      text-align: center;
      line-height: 1.2;
      font-weight: 500;
    }

    .book-mockup.style-2 { background: var(--burgundy); }
    .book-mockup.style-2 .book-mockup-title { color: var(--cream-100); }

    .book-mockup.style-3 { background: var(--leaf-500); }
    .book-mockup.style-3 .book-mockup-title { color: var(--cream-100); }

    .book-mockup.style-4 { background: var(--gold-400); }
    .book-mockup.style-4 .book-mockup-title { color: var(--ink-900); }

    .case-content {
      padding: var(--space-5);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .case-genre {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-600);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .case-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--ink-900);
      margin-bottom: var(--space-3);
      font-weight: 500;
      line-height: 1.25;
    }

    .case-result {
      display: flex;
      gap: var(--space-4);
      padding-top: var(--space-3);
      border-top: 1px solid var(--cream-300);
    }

    .case-stat {
      flex: 1;
    }

    .case-stat-num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--gold-700);
      font-weight: 500;
      line-height: 1;
      margin-bottom: 2px;
      font-style: italic;
    }

    .case-stat-label {
      font-size: 11.5px;
      color: var(--ink-400);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* ============ FAQ ============ */
    .faq {
      background: var(--cream-200);
    }

    .faq-wrap {
      max-width: 820px;
      margin: var(--space-7) auto 0;
    }

    .faq-item {
      background: var(--paper);
      border-radius: var(--radius-md);
      margin-bottom: var(--space-3);
      border: 1px solid var(--cream-300);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }

    .faq-item.open {
      box-shadow: var(--shadow-md);
      border-color: var(--gold-400);
    }

    .faq-question {
      width: 100%;
      padding: var(--space-5);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      cursor: pointer;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--ink-900);
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--gold-700); }

    .faq-toggle {
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: var(--cream-200);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-700);
      transition: transform 0.3s ease, background 0.2s;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: var(--gold-500);
      color: var(--paper);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    .faq-answer-inner {
      padding: 0 var(--space-5) var(--space-5);
      color: var(--ink-500);
      font-size: 15.5px;
      line-height: 1.65;
    }

    /* ============ FINAL PITCH ============ */
    .final-pitch {
      background: linear-gradient(160deg, var(--ink-900) 0%, var(--ink-800) 50%, var(--ink-700) 100%);
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }

    .final-pitch::before {
      content: "";
      position: absolute;
      top: -30%; right: -10%;
      width: 70%; height: 160%;
      background: radial-gradient(ellipse at center, rgba(184, 133, 46, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-pitch .container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--space-8);
      align-items: center;
    }

    .final-pitch h2 {
      color: var(--paper);
      margin-bottom: var(--space-5);
      font-weight: 400;
    }

    .final-pitch h2 em {
      color: var(--gold-400);
      font-style: italic;
    }

    .final-pitch-sub {
      font-size: 1.15rem;
      color: var(--cream-200);
      opacity: 0.92;
      margin-bottom: var(--space-6);
      max-width: 520px;
    }

    .final-recap {
      display: grid;
      gap: var(--space-3);
      margin-bottom: var(--space-6);
    }

    .final-recap li {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      color: var(--cream-100);
      font-size: 16px;
      list-style: none;
    }

    .final-recap .check-ico {
      background: var(--gold-500);
      color: var(--ink-900);
    }

    .final-pitch-cta {
      display: flex;
      gap: var(--space-3);
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-light {
      background: var(--gold-500);
      color: var(--ink-900);
      padding: 16px 32px;
      font-size: 16px;
    }

    .btn-light:hover { background: var(--gold-400); transform: translateY(-1px); }

    .btn-outline-light {
      border: 1.5px solid var(--cream-300);
      color: var(--cream-100);
      padding: 16px 28px;
      font-size: 16px;
      background: transparent;
    }

    .btn-outline-light:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--gold-400);
    }

    .urgency-tag {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      background: rgba(184, 133, 46, 0.18);
      color: var(--gold-400);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: var(--space-5);
      border: 1px solid rgba(184, 133, 46, 0.3);
    }

    /* Final pitch right side - quick form card */
    .quick-form {
      background: var(--paper);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      box-shadow: var(--shadow-lg);
    }

    .quick-form h3 {
      color: var(--ink-900);
      margin-bottom: var(--space-2);
      font-size: 1.4rem;
    }

    .quick-form-sub {
      color: var(--ink-500);
      font-size: 14.5px;
      margin-bottom: var(--space-5);
    }

    /* ============ FOOTER ============ */
    .footer {
      background: var(--ink-900);
      color: var(--cream-200);
      padding: var(--space-8) 0 var(--space-5);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: var(--space-7);
      margin-bottom: var(--space-7);
    }

    /* Lean footer for paid landing pages — no outbound nav, just brand + contact */
    .footer-grid-lean {
      grid-template-columns: 1.7fr 1fr;
      max-width: 900px;
    }

    .footer-tagline {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold-400) !important;
      opacity: 1 !important;
      margin-top: var(--space-3) !important;
      font-size: 15px !important;
    }

    .footer-brand p {
      color: var(--cream-300);
      opacity: 0.7;
      font-size: 14.5px;
      max-width: 320px;
      margin-top: var(--space-4);
      line-height: 1.6;
    }

    .footer-col h5 {
      font-family: var(--font-body);
      color: var(--paper);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: var(--space-4);
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: var(--space-3); }
    .footer-col a {
      color: var(--cream-300);
      opacity: 0.75;
      font-size: 14.5px;
      transition: opacity 0.2s, color 0.2s;
    }

    .footer-col a:hover { opacity: 1; color: var(--gold-400); }

    .footer-contact {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      color: var(--cream-300);
      opacity: 0.85;
      font-size: 14.5px;
      margin-bottom: var(--space-3);
    }

    .footer-contact svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }

    .footer-trust-strip {
      display: flex;
      gap: var(--space-5);
      flex-wrap: wrap;
      padding: var(--space-5) 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: var(--space-5);
      justify-content: center;
    }

    .footer-trust-strip .trust-badge {
      color: var(--cream-300);
      opacity: 0.7;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--cream-300);
      opacity: 0.6;
    }

    .footer-bottom-links {
      display: flex;
      gap: var(--space-5);
      flex-wrap: wrap;
    }

    .secondary-cta-footer {
      color: var(--gold-400) !important;
      opacity: 1 !important;
      font-weight: 600;
    }

    /* ============ STICKY MOBILE CTA ============ */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--ink-900);
      padding: var(--space-3) var(--space-4);
      display: none;
      gap: var(--space-3);
      z-index: 100;
      box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
      align-items: center;
    }

    .sticky-cta a {
      flex: 1;
      text-align: center;
      padding: 12px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 14.5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
    }

    .sticky-cta-call {
      background: transparent;
      color: var(--gold-400);
      border: 1.5px solid var(--gold-400);
    }

    .sticky-cta-form {
      background: var(--gold-500);
      color: var(--ink-900);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 960px) {
      .hero .container { grid-template-columns: 1fr; gap: var(--space-7); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
      .services-grid .service-card.featured { order: -1; }
      .why-grid { grid-template-columns: 1fr; }
      .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
      .case-grid { grid-template-columns: 1fr; }
      .final-pitch .container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .stat-grid { gap: var(--space-4); }
    }

    @media (max-width: 600px) {
      :root { font-size: 16px; }
      section { padding: var(--space-7) 0; }
      .container { padding: 0 var(--space-4); }
      .form-body, .form-header { padding: var(--space-5); }
      .case-card { grid-template-columns: 1fr; }
      .case-cover { padding: var(--space-6); }
      .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
      .footer-bottom { flex-direction: column; text-align: center; }
      .sticky-cta { display: flex; }
      body { padding-bottom: 80px; }
      .nav-cta span { display: none; }
      .nav-cta::after { content: "Free Plan"; }
      .trust-strip-label { width: 100%; text-align: center; }
      .trust-badges { justify-content: center; width: 100%; gap: var(--space-5); }
      .why-features { grid-template-columns: 1fr; }
      .stat-grid { grid-template-columns: 1fr 1fr; }
      .final-pitch-cta { flex-direction: column; align-items: stretch; }
      .final-pitch-cta .btn { width: 100%; }
    }

    /* Smallest screens: collapse cramped 2-column grids to single column
       so labels don't wrap awkwardly inside narrow columns. */
    @media (max-width: 480px) {
      .process-grid { grid-template-columns: 1fr; gap: var(--space-4); }
      .stat-grid-text { grid-template-columns: 1fr; gap: var(--space-4); }
    }

    /* ============ A11y ============ */
    *:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
    .visually-hidden {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
