/* ========================================
       NEW PROFESSIONAL COLOR SCHEME
       ======================================== */
    :root {
      /* Primary Colors - Professional & Trustworthy */
      --navy: #1B2B4F;              /* Primary brand - authority, trust */
      --navy-dark: #12203A;         /* Hover states */
      --navy-light: #2A3E64;        /* Lighter accents */
      --navy-tint: #E8EBF2;         /* Light backgrounds */

      /* Accent Colors - Warmth & Expertise */
      --burgundy: #8B2635;          /* Secondary brand - expertise, seriousness */
      --burgundy-dark: #6B1D28;     /* Hover states */
      --burgundy-tint: #F5E9EB;     /* Light backgrounds */

      /* Neutrals - Sophistication */
      --charcoal: #2D2A27;          /* Headings */
      --gray-dark: #5A5552;         /* Body text */
      --gray-mid: #8B8784;          /* Secondary text */
      --gray-light: #C4C1BE;        /* Borders */
      --gray-ultra-light: #E8E6E3;  /* Light borders */

      /* Backgrounds */
      --white: #FFFFFF;             /* Pure white */
      --off-white: #F8F6F3;         /* Warm off-white */
      --cream: #F3EFE9;             /* Cream background */

      /* Semantic Colors */
      --success: #2D5C3F;           /* Success green */
      --success-tint: #E8F2EC;
      --warning: #C85A3C;           /* Warning */
      --warning-tint: #FCF2EF;

      /* Legacy mappings (for compatibility) */
      --ink: var(--charcoal);
      --ink-soft: var(--gray-dark);
      --ink-muted: var(--gray-mid);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      background: var(--white);
      color: var(--gray-dark);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .container-narrow {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid var(--gray-ultra-light);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

    .wm {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 24px;
      font-variation-settings: "SOFT" 80, "opsz" 32, "wght" 520;
      font-weight: 520;
      letter-spacing: -0.02em;
      color: var(--navy);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .wm:hover {
      color: var(--navy-dark);
    }

    .wm .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

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

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

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* More Dropdown */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-dark);
      transition: color 0.2s ease;
    }

    .nav-dropdown-trigger:hover {
      color: var(--navy);
    }

    .nav-dropdown-trigger svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s ease;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      right: -40px;
      background: var(--white);
      border: 1px solid var(--gray-ultra-light);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(27, 43, 79, 0.12);
      padding: 24px;
      min-width: 520px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      z-index: 1000;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .nav-dropdown-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .nav-dropdown-col + .nav-dropdown-col {
      border-left: 1px solid var(--gray-ultra-light);
      padding-left: 32px;
    }

    .nav-dropdown-col h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--burgundy);
      margin-bottom: 4px;
    }

    .nav-dropdown-col a {
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-dark);
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 6px;
      transition: all 0.15s ease;
    }

    .nav-dropdown-col a:hover {
      color: var(--navy);
      background: var(--off-white);
      transform: translateX(2px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(27, 43, 79, 0.95);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s;
      overflow-y: auto;
      padding: 80px 20px 40px;
    }

    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-content {
      max-width: 500px;
      margin: 0 auto;
    }

    .mobile-menu-section {
      margin-bottom: 32px;
    }

    .mobile-menu-section h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--burgundy);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-section a {
      display: block;
      font-size: 17px;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 8px;
      transition: all 0.2s ease;
      margin-bottom: 4px;
    }

    .mobile-menu-section a:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .nav-cta {
      background: var(--navy) !important;
      color: var(--white) !important;
      padding: 11px 24px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .nav-cta:hover {
      background: var(--navy-dark) !important;
      transform: translateY(-1px);
    }

    /* ========================================
       FEATURED STRIP
       ======================================== */
    .featured-strip {
      background: var(--off-white);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 16px 0;
    }

    .featured-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .featured-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-mid);
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .featured-badge:hover {
      opacity: 0.8;
    }

    .lbc-logo {
      height: 28px;
      width: auto;
    }

    .featured-badge span {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 500;
      font-size: 20px;
      color: var(--charcoal);
    }

    .featured-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .featured-link:hover {
      border-bottom-color: var(--navy);
    }

    .featured-separator {
      color: var(--gray-light);
      font-size: 16px;
    }

    .recovery-stat {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .recovery-amount {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 560;
      font-size: 18px;
      line-height: 1;
      color: var(--burgundy);
      font-weight: 560;
    }

    .recovery-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-mid);
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
      padding: 80px 0 72px;
      border-bottom: 1px solid var(--gray-ultra-light);
    }

    .hero-inner {
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--burgundy);
      margin-bottom: 20px;
    }

    .hero h1 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 440;
      font-weight: 440;
      font-size: clamp(42px, 5.5vw, 68px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--charcoal);
      margin-bottom: 28px;
    }

    .hero h1 .accent {
      color: var(--navy);
    }

    .hero-subtitle {
      font-size: clamp(19px, 2vw, 23px);
      line-height: 1.6;
      color: var(--gray-dark);
      max-width: 720px;
      margin: 0 auto 40px;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: var(--white);
      padding: 18px 36px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(27, 43, 79, 0.25);
      transition: all 0.2s ease;
    }

    .cta-primary:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(27, 43, 79, 0.35);
    }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--navy);
      padding: 18px 36px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid var(--navy);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .cta-secondary:hover {
      background: var(--navy);
      color: var(--white);
    }

    .hero-micro {
      margin-top: 16px;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--burgundy);
      letter-spacing: 0.005em;
    }

    .hero-micro b {
      font-weight: 600;
    }

    .hero-trust-line {
      margin-top: 32px;
      font-size: 15px;
      color: var(--gray-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
      color: var(--gray-dark);
    }

    .trust-badge svg {
      width: 18px;
      height: 18px;
      color: var(--success);
    }

    /* ========================================
       PARTNER/CONTENT PAGES - SHARED HERO
       ======================================== */
    .partner-hero {
      background: var(--white);
      padding: 100px 0 90px;
      border-bottom: 1px solid var(--gray-ultra-light);
    }

    .partner-hero h1 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(42px, 6vw, 68px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 405;
      font-weight: 405;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--charcoal);
      margin-bottom: 24px;
    }

    .partner-hero h1 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .partner-hero .subtitle {
      max-width: 620px;
    }

    .partner-hero .cta-primary {
      margin-top: 34px;
    }

    /* ========================================
       CLOSER SECTION - SHARED "CLAIM SMARTER"
       ======================================== */
    .closer {
      padding: 110px 0;
      text-align: center;
      background: var(--off-white);
      border-top: 1px solid var(--gray-ultra-light);
    }

    .closer h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(42px, 6vw, 68px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 405;
      font-weight: 405;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--charcoal);
      margin-bottom: 32px;
    }

    .closer h2 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .closer p {
      font-family: 'Fraunces', serif;
      font-size: clamp(19px, 1.9vw, 24px);
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 380;
      font-weight: 380;
      color: var(--gray-dark);
      line-height: 1.5;
      margin: 0 auto 44px;
      max-width: 600px;
      letter-spacing: -0.005em;
    }

    .closer .cta-primary {
      margin-bottom: 44px;
    }

    /* ========================================
       WHAT WE DO - CLEAR EXPLANATION
       ======================================== */
    .what-we-do {
      padding: 88px 0;
      background: var(--white);
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 64px;
    }

    .section-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--burgundy);
      margin-bottom: 16px;
    }

    /* Light style for dark backgrounds (navy/dark sections) - no pill, just light burgundy text */
    .section-eyebrow-light {
      font-family: 'Inter', sans-serif !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.1em !important;
      color: #F5E9EB !important;
      background: none !important;
      padding: 0 !important;
      border-radius: 0 !important;
      margin-bottom: 16px !important;
    }

    .section-header h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 420;
      font-weight: 420;
      font-size: clamp(36px, 4.5vw, 52px);
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .section-header .subtitle {
      font-size: 19px;
      line-height: 1.65;
      color: var(--gray-dark);
    }

    .service-explanation {
      background: var(--off-white);
      border: 1px solid var(--gray-ultra-light);
      border-radius: 16px;
      padding: 48px;
      margin-bottom: 56px;
      position: relative;
      overflow: visible;
    }

    .service-explanation::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--navy) 0%, var(--burgundy) 100%);
      border-radius: 16px 0 0 16px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 48px;
      position: relative;
    }

    .service-number {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 4px;
      width: 120px;
      opacity: 0.15;
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
      height: fit-content;
    }

    .stat-percent {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
      font-size: 72px;
      line-height: 1;
      color: var(--navy);
      font-weight: 500;
      width: 100%;
      text-align: left;
    }

    .stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.32em;
      color: var(--navy);
      width: 100%;
      text-align: left;
    }

    .service-content h3 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 480;
      font-size: 28px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .service-content p {
      font-size: 17px;
      line-height: 1.7;
      color: var(--gray-dark);
    }

    .service-content p strong {
      color: var(--charcoal);
      font-weight: 600;
    }

    .service-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .step-card {
      background: var(--white);
      border: 1px solid var(--gray-ultra-light);
      border-radius: 12px;
      padding: 32px 28px;
      position: relative;
    }

    .step-card:first-child {
      grid-column: 1 / -1;
      background: var(--navy-tint);
      border: 2px solid var(--navy);
    }

    .step-card:first-child h4 {
      color: var(--navy);
    }

    .step-badge {
      position: absolute;
      top: -16px;
      right: 28px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--navy);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      transition: background 0.2s ease;
      border: none;
    }

    .step-badge:hover {
      background: var(--navy-dark);
    }

    .step-badge .arrow {
      font-size: 14px;
      transition: transform 0.2s ease;
    }

    .step-badge:hover .arrow {
      transform: translateX(4px);
    }

    /* Show full text on desktop, hide short text */
    .badge-text-short {
      display: none;
    }

    .badge-text-full {
      display: inline;
    }

    /* On mobile: hide full text, show short text */
    @media (max-width: 760px) {
      .badge-text-full {
        display: none;
      }

      .badge-text-short {
        display: inline;
      }
    }

    .step-number {
      position: absolute;
      top: -16px;
      left: 28px;
      background: var(--navy);
      color: var(--white);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
    }

    .step-card h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 480;
      font-size: 21px;
      line-height: 1.3;
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .step-card p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--gray-dark);
    }

    /* ========================================
       TRUST SIGNALS (Top 3)
       ======================================== */
    .trust-signals {
      padding: 88px 0;
      background: var(--navy);
      color: var(--white);
    }

    .trust-signals .section-header h2,
    .trust-signals .section-header .subtitle {
      color: var(--white);
    }

    .trust-signals .section-eyebrow {
      color: var(--burgundy-tint);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .trust-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 40px 32px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .trust-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-4px);
    }

    .trust-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-icon svg {
      width: 32px;
      height: 32px;
      color: var(--white);
    }

    .trust-card h3 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 500;
      font-size: 24px;
      line-height: 1.3;
      color: var(--white);
      margin-bottom: 16px;
    }

    .trust-card p {
      font-size: 16px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.85);
    }

    .trust-card .trust-detail {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .trust-card .trust-detail strong {
      color: var(--white);
      font-weight: 600;
    }

    /* Steve section within trust card */
    .steve-mini {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      text-align: left;
    }

    .steve-mini img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.3);
      object-fit: cover;
    }

    .steve-mini .info {
      flex: 1;
    }

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

    .steve-mini .title {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.4;
    }

    /* ========================================
       PRICING
       ======================================== */
    .pricing {
      padding: 88px 0;
      background: var(--off-white);
    }

    .price-card {
      max-width: 700px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 24px;
      padding: clamp(32px, 5vw, 52px);
      box-shadow: 0 20px 50px rgba(27, 43, 79, 0.06);
    }

    .price-headline {
      font-family: 'Fraunces', serif;
      font-variation-settings: "SOFT" 100, "opsz" 72, "wght" 420;
      font-weight: 420;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.025em;
      text-align: center;
      color: var(--charcoal);
      margin-bottom: 34px;
    }

    .price-headline .amt {
      color: var(--navy);
    }

    .price-list {
      list-style: none;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .price-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 16.5px;
      color: var(--gray-dark);
      line-height: 1.55;
    }

    .price-list .tick {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--navy-tint);
      color: var(--navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .price-list .tick svg {
      width: 15px;
      height: 15px;
    }

    .price-list b {
      color: var(--charcoal);
      font-weight: 600;
    }

    .price-list .was {
      color: var(--gray-mid);
      text-decoration: line-through;
    }

    .price-note {
      text-align: center;
      margin-top: 30px;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-variation-settings: "SOFT" 100, "opsz" 28, "wght" 420;
      font-size: 18px;
      color: var(--navy);
    }

    .price-cta {
      text-align: center;
      margin-top: 30px;
    }

    /* ========================================
       TESTIMONIALS - CAROUSEL
       ======================================== */
    .testimonials {
      padding: 88px 0;
      background: var(--off-white);
    }

    .reviews-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 8px 4px;
    }

    .reviews-track::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      flex: 0 0 calc((100% - 48px) / 3);
      scroll-snap-align: start;
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: box-shadow 0.3s ease;
    }

    .review-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .oc-chip {
      align-self: flex-start;
      font-size: 13px;
      color: var(--burgundy);
      background: var(--burgundy-tint);
      padding: 6px 14px;
      border-radius: 100px;
      font-weight: 700;
      border: 1px solid rgba(139, 38, 53, 0.2);
    }

    .oc-chip b {
      color: var(--charcoal);
      font-weight: 700;
    }

    .review-card .quote {
      font-size: 16px;
      line-height: 1.65;
      color: var(--gray-dark);
      flex: 1;
    }

    .review-card .who {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--gray-ultra-light);
    }

    .review-card .av {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--navy-tint);
      color: var(--navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .review-card .av img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-card .nm {
      font-weight: 600;
      font-size: 15px;
      color: var(--charcoal);
    }

    .review-card .tag {
      font-size: 13px;
      color: var(--gray-mid);
    }

    .reviews-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
    }

    .rev-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--gray-light);
      background: var(--white);
      color: var(--gray-dark);
      font-size: 18px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rev-arrow:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .rev-hint {
      font-size: 13px;
      color: var(--gray-mid);
      letter-spacing: 0.02em;
    }

    .outcome-badge {
      display: inline-block;
      background: var(--success-tint);
      border: 1px solid var(--success);
      color: var(--success);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    /* ========================================
       FAQ
       ======================================== */
    .faq {
      padding: 88px 0;
      background: var(--off-white);
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-ultra-light);
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .faq-item summary {
      padding: 24px 28px;
      cursor: pointer;
      list-style: none;
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 480;
      font-size: 19px;
      line-height: 1.4;
      color: var(--charcoal);
      transition: color 0.2s ease;
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary:hover {
      color: var(--navy);
    }

    .faq-item[open] summary {
      border-bottom: 1px solid var(--gray-ultra-light);
      color: var(--navy);
    }

    .faq-item .toggle {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .faq-item .toggle::before,
    .faq-item .toggle::after {
      content: '';
      position: absolute;
      background: var(--navy);
      border-radius: 1px;
      transition: transform 0.25s ease;
    }

    .faq-item .toggle::before {
      width: 14px;
      height: 2px;
    }

    .faq-item .toggle::after {
      width: 2px;
      height: 14px;
    }

    .faq-item[open] .toggle::after {
      transform: rotate(90deg);
    }

    .faq-answer {
      padding: 24px 28px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--gray-dark);
    }

    .faq-answer p + p {
      margin-top: 16px;
    }

    /* ========================================
       FINAL CTA
       ======================================== */
    .final-cta {
      padding: 96px 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      text-align: center;
    }

    .final-cta h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 460;
      font-size: clamp(38px, 5vw, 58px);
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .final-cta p {
      font-size: 20px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      max-width: 640px;
      margin: 0 auto 40px;
    }

    .final-cta .cta-primary {
      background: var(--white);
      color: var(--navy);
    }

    .final-cta .cta-primary:hover {
      background: var(--off-white);
      transform: translateY(-2px);
    }

    /* ========================================
       POLICY CHECK SECTION
       ======================================== */
    .policy-check {
      padding: 110px 0;
    }

    .tools-block {
      background: var(--navy);
      color: var(--off-white);
      border-radius: 22px;
      padding: 64px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .tools-head {
      margin-bottom: 0;
    }

    .tools-head .section-eyebrow {
      color: var(--burgundy);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 600;
      font-style: normal;
      background: #628FC7;
      padding: 4px 12px;
      border-radius: 6px;
      display: inline-block;
    }

    .tools-head h2 {
      color: var(--off-white);
      font-family: 'Fraunces', serif;
      font-size: clamp(34px, 4.4vw, 56px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 380;
      font-weight: 380;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }

    .tools-head h2 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .tools-head p {
      color: rgba(248, 246, 243, 0.78);
      font-size: 17.5px;
      line-height: 1.6;
      margin: 0;
      max-width: 600px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .tool {
      position: relative;
      background: rgba(248, 246, 243, 0.06);
      border: 1px solid rgba(248, 246, 243, 0.14);
      border-radius: 16px;
      padding: 30px 28px 32px;
      display: flex;
      flex-direction: column;
    }

    .tool .free-pill {
      position: absolute;
      top: 24px;
      right: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      color: #cfe0c6;
      background: rgba(130, 163, 115, 0.18);
      border: 1px solid rgba(130, 163, 115, 0.42);
      padding: 4px 11px;
      border-radius: 100px;
    }

    .tool h3 {
      font-family: 'Fraunces', serif;
      font-size: 24px;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 440;
      font-weight: 440;
      color: var(--off-white);
      letter-spacing: -0.015em;
    }

    .tool .tool-sum {
      color: rgba(248, 246, 243, 0.82);
      font-size: 15.5px;
      line-height: 1.5;
      margin: 9px 0 18px;
      max-width: 90%;
    }

    .tool ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 0 0 26px;
      padding: 0;
    }

    .tool li {
      display: flex;
      gap: 11px;
      font-size: 14.5px;
      line-height: 1.5;
      color: rgba(248, 246, 243, 0.76);
    }

    .tool li .tk {
      color: #82a373;
      flex-shrink: 0;
      font-weight: 700;
    }

    .tool .tool-cta {
      margin-top: auto;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--navy);
      padding: 13px 26px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .tool .tool-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    }

    .tool .tool-cta .arrow {
      transition: transform 0.2s ease;
    }

    .tool .tool-cta:hover .arrow {
      transform: translateX(3px);
    }

    @media (max-width: 760px) {
      .policy-check {
        padding: 60px 0;
      }

      .tools-block {
        display: flex !important;
        flex-direction: column;
        gap: 32px;
        padding: 36px 20px 40px;
      }

      .tools-head {
        order: 1;
      }

      .tools-head h2 {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 14px;
      }

      .tools-head p {
        font-size: 15.5px;
        line-height: 1.55;
      }

      .tools-grid {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .tool {
        padding: 24px 20px 26px;
      }

      .tool .free-pill {
        top: 18px;
        right: 18px;
        font-size: 10px;
        padding: 5px 10px;
      }

      .tool h3 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .tool .tool-sum {
        font-size: 15px;
        margin-bottom: 14px;
      }

      .tool ul {
        margin-bottom: 18px;
      }

      .tool ul li {
        font-size: 14.5px;
        margin-bottom: 8px;
      }
    }

    /* ========================================
       FOOTER
       ======================================== */
    footer {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: saturate(180%) blur(20px);
      border-top: 1px solid var(--gray-ultra-light);
      padding: 72px 0 48px;
      color: var(--gray-dark);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 56px;
    }

    .footer-brand .wm {
      font-size: 22px;
      font-variation-settings: "SOFT" 100, "opsz" 24, "wght" 460;
      margin-bottom: 18px;
      display: inline-block;
      color: var(--navy);
    }

    .footer-brand .wm:hover {
      color: var(--navy-dark);
    }

    .footer-brand p {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--gray-dark);
      max-width: 340px;
    }

    .powered-by {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      margin-top: 18px;
    }

    .powered-by .pb-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--gray-mid);
    }

    .powered-by .pb-lex {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--charcoal);
      transition: color 0.2s ease;
    }

    .powered-by .pb-mark {
      width: 15px;
      height: 16px;
      flex-shrink: 0;
    }

    .powered-by .pb-name {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -0.02em;
    }

    .powered-by:hover .pb-lex {
      color: var(--navy);
    }

    .footer-lbc {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 16px;
    }

    .footer-lbc .fl-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--gray-mid);
    }

    .footer-lbc img {
      height: 26px;
      width: auto;
      display: block;
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--gray-mid);
      margin-bottom: 22px;
      font-weight: 600;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      color: var(--gray-dark);
      text-decoration: none;
      font-size: 14.5px;
      transition: color 0.18s ease;
    }

    .footer-col a:hover {
      color: var(--navy);
    }

    .footer-bottom {
      border-top: 1px solid var(--gray-ultra-light);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      font-size: 13px;
      color: var(--gray-mid);
      flex-wrap: wrap;
      gap: 24px;
      letter-spacing: 0.01em;
      line-height: 1.5;
    }

    .footer-bottom .regulatory {
      max-width: 580px;
    }

    .footer-bottom .regulatory strong {
      color: var(--charcoal);
      font-weight: 500;
      display: block;
      margin-bottom: 4px;
    }

    .footer-bottom .company {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-mid);
      text-align: right;
    }

    /* ========================================
       INDEX2-SPECIFIC COMPONENTS
       ======================================== */

    /* Legacy color mappings for index2 compatibility */
    :root {
      --cream-soft: var(--white);
      --cream-card: var(--white);
      --cream-deep: var(--cream);
      --line: var(--gray-light);
      --line-soft: var(--gray-ultra-light);
      --sage: var(--navy);
      --sage-hover: var(--navy-dark);
      --sage-tint: var(--navy-tint);
      --gold: var(--burgundy);
      --gold-tint: var(--burgundy-tint);
    }

    /* Hero Grid Layout (index2 specific) */
    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: stretch;
      min-height: 80vh;
    }

    .hero-copy {
      align-self: center;
      padding: 64px 60px 64px max(32px, calc((100vw - 1180px) / 2 + 32px));
    }

    .hero-leadin {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 400;
      font-weight: 400;
      font-size: clamp(21px, 2.4vw, 30px);
      color: var(--sage);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .hero .claim-secondary {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 72, "wght" 430;
      font-weight: 430;
      font-size: clamp(28px, 3.4vw, 46px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: -6px 0 28px;
    }

    .hero .claim-secondary .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .hero-figure {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;
      padding-right: max(16px, calc((100vw - 1180px) / 2 + 16px));
    }

    .hero-figure img {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 24px;
      transform: scale(1.2);
      transform-origin: center right;
      filter: hue-rotate(80deg) saturate(1.1) brightness(0.95);
    }

    /* Anchor Stat Section - Navy background with burgundy highlights */
    .anchor-stat {
      padding: 92px 0 84px;
      text-align: center;
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      background: var(--navy);
    }

    .anchor-stat .eyebrow-m {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--burgundy);
      font-weight: 600;
      margin-bottom: 22px;
      background: #628FC7;
      padding: 6px 12px;
      border-radius: 6px;
      display: inline-block;
    }

    .anchor-stat .big {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 330;
      font-weight: 330;
      font-size: clamp(88px, 16vw, 200px);
      line-height: 0.88;
      letter-spacing: -0.04em;
      color: var(--white);
    }

    .anchor-stat .claim {
      font-family: 'Fraunces', Georgia, serif;
      font-variation-settings: "SOFT" 100, "opsz" 72, "wght" 400;
      font-weight: 400;
      font-size: clamp(23px, 3.2vw, 38px);
      line-height: 1.28;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 740px;
      margin: 14px auto 0;
    }

    .anchor-stat .claim .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .anchor-stat .bridge-line {
      font-size: clamp(16px, 1.6vw, 18.5px);
      color: rgba(248, 246, 243, 0.82);
      max-width: 600px;
      margin: 28px auto 0;
      line-height: 1.6;
    }

    .anchor-stat .bridge-line strong {
      color: var(--white);
      font-weight: 600;
    }

    .anchor-stat .closer-line {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 430;
      font-size: clamp(20px, 2.5vw, 29px);
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: var(--burgundy);
      max-width: 600px;
      margin: 26px auto 0;
      background: #628FC7;
      padding: 8px 16px;
      border-radius: 8px;
      display: inline-block;
    }

    .anchor-stat .src {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(248, 246, 243, 0.6);
      margin-top: 32px;
    }

    .anchor-stat .src a {
      color: rgba(248, 246, 243, 0.8);
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.18s ease;
    }

    .anchor-stat .src a:hover {
      color: var(--white);
    }

    /* Options Comparison Grid */
    .options-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
      margin-top: 4px;
    }

    .opt {
      background: rgba(248, 246, 243, 0.08);
      border: 1px solid rgba(248, 246, 243, 0.15);
      border-radius: 18px;
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
    }

    .opt.rec {
      background: #fff;
      border-color: var(--white);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .opt .rec-tag {
      position: absolute;
      top: -12px;
      left: 26px;
      background: var(--burgundy);
      color: var(--white);
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
    }

    .opt h3 {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 460;
      font-weight: 460;
      letter-spacing: -0.015em;
      color: var(--white);
      line-height: 1.1;
    }

    .opt h3 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .opt .sum {
      font-size: 14.5px;
      color: rgba(248, 246, 243, 0.78);
      line-height: 1.5;
      margin: 9px 0 18px;
    }

    .opt ul {
      list-style: none;
      display: grid;
      gap: 11px;
      margin: 0 0 22px;
      padding: 0;
    }

    .opt li {
      display: flex;
      gap: 10px;
      font-size: 14.5px;
      line-height: 1.5;
      color: rgba(248, 246, 243, 0.88);
    }

    .opt li .mk {
      flex-shrink: 0;
      font-weight: 700;
    }

    .opt:not(.rec) li .mk {
      color: rgba(248, 246, 243, 0.5);
    }

    .opt.rec li .mk {
      color: var(--navy);
    }

    .opt .cost {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(248, 246, 243, 0.2);
    }

    .opt .cost .lbl {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(248, 246, 243, 0.6);
      display: block;
      margin-bottom: 7px;
    }

    .opt .cost .val {
      font-family: 'Fraunces', serif;
      font-size: 21px;
      font-variation-settings: "SOFT" 100, "opsz" 28, "wght" 460;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .opt .cost .note {
      font-size: 13px;
      color: rgba(248, 246, 243, 0.65);
      margin-top: 5px;
      line-height: 1.45;
    }

    .opt.rec .cost {
      border-top-color: var(--gray-light);
    }

    .opt.rec h3 {
      color: var(--ink);
    }

    .opt.rec h3 .dot {
      color: var(--burgundy);
    }

    .opt.rec .sum {
      color: var(--ink-soft);
    }

    .opt.rec li {
      color: var(--ink);
    }

    .opt.rec .cost .lbl {
      color: var(--ink-muted);
    }

    .opt.rec .cost .val {
      color: var(--ink);
    }

    .opt.rec .cost .note {
      color: var(--ink-muted);
    }

    .options-note {
      font-size: 12.5px;
      color: rgba(248, 246, 243, 0.7);
      margin: 24px auto 0;
      text-align: center;
      max-width: 700px;
      line-height: 1.55;
    }

    /* Standard Sections with Navy Background Option */
    section.std {
      padding: 110px 0;
      background: var(--white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
    }

    /* Navy background sections - like anchor-stat styling */
    section.std.options {
      background: var(--navy);
    }

    section.std.options .section-eyebrow {
      color: var(--burgundy) !important;
      background: #628FC7 !important;
      padding: 4px 12px !important;
      border-radius: 6px !important;
      display: inline-block !important;
      font-family: 'JetBrains Mono', monospace !important;
      font-size: 11px !important;
      text-transform: uppercase !important;
      letter-spacing: 0.18em !important;
      font-weight: 600 !important;
      font-style: normal !important;
    }

    section.std.options .section-head h2 {
      color: var(--white) !important;
    }

    section.std.options .section-head h2 .dot {
      color: var(--burgundy) !important;
    }

    section.std.options .section-head .lede {
      color: rgba(248, 246, 243, 0.82) !important;
    }

    /* Section with Image Grid Layout */
    .section-with-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      margin-bottom: 72px;
      position: relative;
    }

    .section-with-image-grid .section-head {
      margin-bottom: 0;
      max-width: 100%;
    }

    .section-image-wrapper {
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      z-index: 1;
    }

    .section-image-wrapper img {
      width: 100%;
      max-width: 460px;
      height: auto;
      object-fit: contain;
      filter: hue-rotate(80deg) saturate(1.1) brightness(0.95);
    }

    .section-text-content {
      position: relative;
      z-index: 2;
    }

    /* Section Headers - index2 variant (overrides earlier .section-header styles) */
    .section-head {
      margin-bottom: 72px;
      max-width: 760px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* Index2 h2 styling - larger than landing (only for index2 pages) */
    .index2-page .section-head h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(36px, 5vw, 64px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 405;
      font-weight: 405;
      line-height: 1.06;
      letter-spacing: -0.025em;
      color: var(--charcoal);
    }

    .section-head h2 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    /* Index2 eyebrow style - italic Fraunces (only for index2 pages on light backgrounds) */
    .index2-page .section-eyebrow {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 400;
      font-weight: 400;
      font-size: clamp(18px, 1.8vw, 22px);
      letter-spacing: -0.01em;
      color: var(--sage);
      margin-bottom: 18px;
    }

    /* OVERRIDE: All navy background sections get light blue pill eyebrows */
    .anchor-stat .eyebrow-m,
    section.std.options .section-eyebrow,
    .policy-block .section-eyebrow,
    .policy-block .policy-text .section-eyebrow,
    .tools-head .section-eyebrow,
    .tools-block .section-eyebrow,
    .ai-block .section-eyebrow,
    .ai-section .ai-block .section-eyebrow {
      font-family: 'JetBrains Mono', monospace !important;
      font-size: 11px !important;
      text-transform: uppercase !important;
      letter-spacing: 0.18em !important;
      color: var(--burgundy) !important;
      font-weight: 600 !important;
      font-style: normal !important;
      background: #628FC7 !important;
      padding: 6px 12px !important;
      border-radius: 6px !important;
      display: inline-block !important;
      margin-bottom: 22px !important;
    }

    .section-head .lede {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(19px, 1.6vw, 22px);
      font-variation-settings: "SOFT" 100, "opsz" 32, "wght" 380;
      font-weight: 380;
      margin-top: 24px;
      color: var(--ink-soft);
      line-height: 1.55;
      max-width: 620px;
      letter-spacing: -0.005em;
    }

    .section-head.center .lede {
      margin-left: auto;
      margin-right: auto;
    }

    /* Steps Grid */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 56px;
    }

    .step {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .step .num {
      font-family: 'Fraunces', serif;
      font-size: 16px;
      color: var(--sage);
      font-weight: 500;
      font-variation-settings: "SOFT" 80, "opsz" 18, "wght" 500;
      letter-spacing: 0.04em;
    }

    .step h3 {
      font-family: 'Fraunces', serif;
      font-size: 28px;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 440;
      font-weight: 440;
      line-height: 1.18;
      letter-spacing: -0.015em;
      color: var(--ink);
    }

    .step p {
      font-size: 16.5px;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* Categories Section */
    .cat-section {
      background: var(--white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
    }

    .categories {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      border-top: 1px solid var(--line);
    }

    .category {
      padding: 36px 0;
      border-bottom: 1px solid var(--line);
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 32px;
      align-items: baseline;
      transition: padding-left 0.2s ease;
    }

    .category:hover {
      padding-left: 8px;
    }

    .category h3 {
      font-family: 'Fraunces', serif;
      font-size: 26px;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 440;
      font-weight: 440;
      line-height: 1.15;
      color: var(--ink);
      letter-spacing: -0.015em;
    }

    .category p {
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 700px;
    }

    .cat-footer {
      margin-top: 40px;
      text-align: center;
      font-family: 'Fraunces', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--ink-soft);
      font-variation-settings: "SOFT" 100, "opsz" 24, "wght" 400;
    }

    /* Policy Block */
    .policy-block {
      background: var(--navy);
      color: var(--cream-soft);
      border-radius: 22px;
      padding: 80px 64px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .policy-block .policy-text .section-eyebrow {
      color: var(--burgundy);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 600;
      font-style: normal;
      background: #628FC7;
      padding: 4px 12px;
      border-radius: 6px;
      display: inline-block;
    }

    .policy-block h2 {
      color: var(--cream-soft);
      font-family: 'Fraunces', serif;
      font-size: clamp(34px, 4.4vw, 56px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 380;
      font-weight: 380;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }

    .policy-block h2 .dot {
      color: var(--gold);
      font-style: italic;
    }

    .policy-block p {
      color: rgba(248, 246, 243, 0.78);
      font-size: 17.5px;
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 480px;
    }

    .policy-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--white);
      color: var(--navy);
      padding: 17px 32px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .policy-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .policy-cta .arrow {
      transition: transform 0.2s ease;
    }

    .policy-cta:hover .arrow {
      transform: translateX(3px);
    }

    .policy-visual {
      background: rgba(248, 246, 243, 0.06);
      border: 1px solid rgba(248, 246, 243, 0.12);
      border-radius: 10px;
      padding: 32px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12.5px;
      line-height: 1.85;
      color: rgba(248, 246, 243, 0.6);
    }

    .policy-visual .check-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 8px 0;
    }

    .policy-visual .check-row .mark {
      flex-shrink: 0;
      width: 16px;
      display: inline-block;
    }

    .policy-visual .check-row.ok .mark {
      color: #82a373;
    }

    .policy-visual .check-row.warn .mark {
      color: var(--gold);
    }

    .policy-visual .check-row.bad .mark {
      color: #c47867;
    }

    .policy-visual .check-row .label {
      color: var(--cream-soft);
    }

    .policy-visual .header {
      color: rgba(248, 246, 243, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(248, 246, 243, 0.1);
      margin-bottom: 14px;
    }

    /* Steve Section */
    .steve {
      background: var(--white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 110px 0;
    }

    .steve-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 72px;
      align-items: start;
    }

    .steve-photo {
      position: sticky;
      top: 110px;
      display: block;
      aspect-ratio: 4/5;
      background: var(--cream-card);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(80, 60, 30, 0.10);
      text-decoration: none;
      transition: box-shadow 0.3s ease;
    }

    .steve-photo:hover {
      box-shadow: 0 22px 54px rgba(80, 60, 30, 0.18);
    }

    .steve-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.5s ease;
    }

    .steve-photo:hover img {
      transform: scale(1.03);
    }

    .steve-photo .steve-photo-cap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 32px 20px 16px;
      background: linear-gradient(to top, rgba(42, 37, 32, 0.74), rgba(42, 37, 32, 0));
      color: var(--cream-soft);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
    }

    .steve-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 26px;
      font-weight: 600;
      color: var(--sage);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      padding-bottom: 2px;
      transition: color 0.18s ease, border-color 0.18s ease;
    }

    .steve-more:hover {
      color: var(--sage-hover);
      border-color: var(--sage);
    }

    .steve-content h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 380;
      font-weight: 380;
      line-height: 1.06;
      letter-spacing: -0.025em;
      margin-bottom: 40px;
    }

    .steve-content h2 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .steve-bio {
      font-size: 17.5px;
      line-height: 1.7;
      color: var(--ink);
      margin-bottom: 36px;
      max-width: 600px;
    }

    .steve-stat {
      margin-bottom: 36px;
      padding: 26px 28px;
      background: var(--sage-tint);
      border-radius: 14px;
      max-width: 600px;
    }

    .steve-stat .figure {
      font-family: 'Fraunces', serif;
      font-size: clamp(38px, 5.5vw, 52px);
      font-variation-settings: "SOFT" 100, "opsz" 72, "wght" 500;
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--sage);
    }

    .steve-stat .label {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.5;
      color: var(--ink);
    }

    .steve-creds {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin: 36px 0;
      padding: 32px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .steve-cred {
      padding: 12px 0;
      padding-right: 24px;
    }

    .steve-cred .label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-muted);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .steve-cred .value {
      font-family: 'Fraunces', serif;
      font-size: 18px;
      color: var(--ink);
      font-variation-settings: "SOFT" 100, "opsz" 24, "wght" 460;
      font-weight: 460;
      letter-spacing: -0.012em;
      line-height: 1.3;
    }

    .steve-quote {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-style: italic;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 380;
      font-weight: 380;
      line-height: 1.5;
      color: var(--ink);
      letter-spacing: -0.01em;
      padding-left: 24px;
      border-left: 2px solid var(--sage);
      max-width: 620px;
    }

    .steve-quote .attribution {
      display: block;
      margin-top: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11.5px;
      font-style: normal;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-muted);
      font-weight: 500;
    }

    .steve-quote .attribution .pending {
      color: var(--gold);
      margin-left: 8px;
    }

    /* AI Section */
    .ai-section {
      padding: 110px 0;
      background: var(--off-white);
    }

    .ai-block {
      background: var(--navy);
      color: var(--cream-soft);
      border-radius: 22px;
      padding: 88px 64px;
    }

    .ai-block .ai-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 64px;
      align-items: start;
    }

    .ai-block .section-eyebrow {
      color: var(--burgundy);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 600;
      font-style: normal;
      background: #628FC7;
      padding: 4px 12px;
      border-radius: 6px;
      display: inline-block;
      margin-bottom: 24px;
    }

    .ai-block h2 {
      color: var(--cream-soft);
      font-family: 'Fraunces', serif;
      font-size: clamp(36px, 4.4vw, 52px);
      font-variation-settings: "SOFT" 100, "opsz" 96, "wght" 380;
      font-weight: 380;
      line-height: 1.05;
      letter-spacing: -0.025em;
    }

    .ai-block h2 .dot {
      color: var(--gold);
      font-style: italic;
    }

    .ai-content {
      color: rgba(248, 246, 243, 0.82);
      font-size: 18px;
      line-height: 1.65;
    }

    .ai-content p + p {
      margin-top: 22px;
    }

    .ai-content strong {
      color: var(--cream-soft);
      font-weight: 500;
    }

    .ai-content .final-line {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(248, 246, 243, 0.12);
      color: rgba(248, 246, 243, 0.6);
      font-size: 16.5px;
    }

    .ai-block .ai-trust {
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid rgba(248, 246, 243, 0.14);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px 44px;
    }

    .ai-block .ai-trust .ai-ts {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 15px;
      font-weight: 600;
      color: var(--cream-soft);
      letter-spacing: -0.005em;
    }

    .ai-block .ai-trust .ai-ts svg {
      color: #82a373;
      flex-shrink: 0;
    }

    /* What You Get Section */
    .wyg {
      background: var(--off-white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 110px 0;
    }

    .wyg-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .wyg-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin: 8px 0 26px;
    }

    .wyg-list li {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      font-size: 16.5px;
      color: var(--ink);
      line-height: 1.5;
    }

    .wyg-list li .tk {
      color: var(--sage);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .wyg-price {
      margin-bottom: 14px;
    }

    .wyg-price .promo .was {
      font-size: 21px;
    }

    .wyg-price .promo .now {
      font-size: 32px;
      font-family: 'Fraunces', serif;
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 460;
    }

    .wyg .lnk-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--sage);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      padding-bottom: 2px;
    }

    .wyg .lnk-arrow:hover {
      color: var(--sage-hover);
      border-color: var(--sage);
    }

    .wyg-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(80, 60, 30, 0.10);
      overflow: hidden;
    }

    .wyg-card .top {
      background: var(--sage);
      color: var(--cream-soft);
      padding: 13px 20px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      display: flex;
      justify-content: space-between;
    }

    .wyg-card .body {
      padding: 24px 26px 28px;
    }

    .wyg-card .body h5 {
      font-family: 'Fraunces', serif;
      font-size: 15px;
      font-weight: 500;
      font-variation-settings: "SOFT" 100, "opsz" 20, "wght" 500;
      margin: 16px 0 11px;
      color: var(--ink);
    }

    .wyg-card .body h5:first-child {
      margin-top: 0;
    }

    .wyg-card .body .ln {
      height: 9px;
      border-radius: 5px;
      background: var(--cream-deep);
      margin-bottom: 10px;
    }

    .wyg-card .body .ln.s {
      width: 55%;
    }

    .wyg-card .body .ln.m {
      width: 82%;
    }

    .wyg-card .body .ln.cite {
      background: var(--sage-tint);
      width: 42%;
    }

    /* Trust Strips & Badges */
    .lbc-strip {
      background: var(--white);
      border-bottom: 1px solid var(--gray-ultra-light);
    }

    .lbc-in {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 18px 0;
      flex-wrap: wrap;
      text-align: center;
    }

    .lbc-in .lbl {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--ink-muted);
      font-weight: 600;
    }

    .lbc-in .lbc-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: 'Fraunces', serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 500;
      font-weight: 500;
      font-size: 21px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .lbc-in .lbc-badge svg {
      color: var(--sage);
    }

    .lbc-in .lbc-badge .lbc-mark {
      height: 30px;
      width: auto;
      display: inline-block;
    }

    .lbc-in .pending {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 600;
    }

    .lbc-in .lbc-link {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sage);
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.18s ease;
    }

    .lbc-in .lbc-link:hover {
      color: var(--sage-hover);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .trust-strip {
      background: var(--sage-tint);
      border-top: 1px solid #cfe0c6;
      border-bottom: 1px solid #cfe0c6;
    }

    .trust-strip .in {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px 40px;
      padding: 16px 0;
      flex-wrap: wrap;
    }

    .trust-strip .ts {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--sage-hover);
      letter-spacing: -0.005em;
    }

    .trust-strip .ts svg {
      color: var(--sage);
      flex-shrink: 0;
    }

    /* Partners Section */
    .partners {
      background: var(--off-white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 110px 0;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 8px;
    }

    .partner-card {
      background: var(--cream-card);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 44px;
    }

    .partner-card h3 {
      font-family: 'Fraunces', serif;
      font-size: clamp(26px, 3vw, 34px);
      font-variation-settings: "SOFT" 100, "opsz" 48, "wght" 420;
      font-weight: 420;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .partner-card h3 .dot {
      color: var(--burgundy);
      font-style: italic;
    }

    .partner-card .intro {
      font-size: 16.5px;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-bottom: 28px;
      max-width: 460px;
    }

    .partner-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .partner-card li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 16px;
      color: var(--ink);
      line-height: 1.45;
    }

    .partner-card li .tick {
      color: var(--sage);
      flex-shrink: 0;
      font-weight: 700;
      margin-top: 2px;
    }

    /* Promo & Microcopy */
    .promo {
      display: inline-flex;
      align-items: baseline;
      gap: 9px;
      flex-wrap: wrap;
    }

    .promo .was {
      text-decoration: line-through;
      color: var(--ink-muted);
      font-weight: 500;
    }

    .promo .now {
      color: var(--ink);
      font-weight: 700;
    }

    .promo .save {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      background: var(--gold-tint);
      color: #7a5f38;
      font-weight: 700;
      padding: 4px 9px;
      border-radius: 100px;
    }

    .microcopy {
      margin-top: 22px;
      font-size: 14.5px;
      color: var(--ink-muted);
      letter-spacing: 0.005em;
      max-width: 540px;
      line-height: 1.5;
    }

    .microcopy .pl-lead,
    .microcopy .pl-prices,
    .microcopy .pl-feats {
      display: block;
    }

    .microcopy .pl-prices {
      margin-top: 5px;
    }

    .microcopy .pl-prices .was {
      text-decoration: line-through;
      color: var(--ink-muted);
      font-weight: 500;
      margin-right: 8px;
    }

    .microcopy .pl-prices .now {
      color: var(--ink);
      font-weight: 700;
    }

    .microcopy .pl-badge {
      display: inline-block;
      margin-top: 9px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      background: var(--gold-tint);
      color: #7a5f38;
      font-weight: 700;
      padding: 4px 9px;
      border-radius: 100px;
    }

    .microcopy .pl-feats {
      margin-top: 11px;
    }

    /* Utility Classes */
    .mbg {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--sage);
    }

    .mbg svg {
      flex-shrink: 0;
      color: var(--sage);
    }

    .trust-sec {
      margin-top: 44px;
      padding-top: 34px;
      border-top: 1px solid var(--line);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px 44px;
    }

    .trust-sec .ts {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 15.5px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.005em;
    }

    .trust-sec .ts svg {
      color: var(--sage);
      flex-shrink: 0;
    }

    .trust-sec .ts .pending {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 700;
      margin-left: 2px;
    }

    .mbg-band {
      background: var(--sage-tint);
      border-top: 1px solid #cfe0c6;
      border-bottom: 1px solid #cfe0c6;
    }

    .mbg-band .in {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 24px 0;
      text-align: center;
      flex-wrap: wrap;
    }

    .mbg-band .in .t {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: 'Fraunces', serif;
      font-variation-settings: "SOFT" 100, "opsz" 36, "wght" 460;
      font-weight: 460;
      font-size: clamp(19px, 2.2vw, 26px);
      color: var(--sage-hover);
      letter-spacing: -0.01em;
    }

    .mbg-band .in .t svg {
      color: var(--sage);
      flex-shrink: 0;
    }

    .mbg-band .in .s {
      font-size: 15px;
      color: var(--ink-soft);
    }

    .outcomes {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
      align-items: center;
    }

    .outcomes .oc {
      background: var(--sage-tint);
      border: 1px solid #cfe0c6;
      border-radius: 100px;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 600;
      color: var(--sage-hover);
    }

    .outcomes .oc b {
      color: var(--ink);
    }

    .outcomes .cap {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 600;
      width: 100%;
      text-align: center;
      margin-top: 6px;
    }

    /* Typewriter & Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.5s ease-out forwards;
    }

    @keyframes blink {
      0%,
      100% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    }

    .caret {
      display: inline-block;
      width: 0.6em;
      height: 1.2em;
      background-color: var(--sage);
      vertical-align: bottom;
      animation: blink 0.8s step-end infinite;
      margin-left: 4px;
    }

    .typing-container {
      min-height: 80px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-align: left;
    }

    .step-container {
      display: none;
    }

    .step-container.active {
      display: block;
    }

    .paywall-state {
      display: none;
    }

    .paywall-state.active {
      display: block;
    }

    #view-landing {
      background: var(--cream);
    }

    /* Landing Nav (index2 variant) */
    .landing-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid var(--line-soft);
    }

    .landing-nav .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

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

    .landing-nav .nav-links a,
    .landing-nav .nav-links button {
      font-size: 14.5px;
      color: var(--ink-soft);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.18s ease;
      background: none;
      border: none;
      cursor: pointer;
    }

    .landing-nav .nav-links a:hover,
    .landing-nav .nav-links button:hover {
      color: var(--ink);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
    }

    /* Trustpilot widget styling */
    .tp-collector {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 22px 34px;
      box-shadow: 0 6px 20px rgba(80, 60, 30, 0.06);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .tp-collector:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(80, 60, 30, 0.11);
    }

    .tp-collector .tp-logo {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .tp-collector .tp-logo-star {
      width: 22px;
      height: 22px;
      fill: #00B67A;
    }

    .tp-collector .tp-logo-name {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #191919;
      letter-spacing: -0.012em;
    }

    .tp-collector .tp-stars {
      display: inline-flex;
      gap: 4px;
    }

    .tp-collector .tp-sq {
      width: 30px;
      height: 30px;
      border-radius: 6px;
      background: #00B67A;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .tp-collector .tp-sq svg {
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    .tp-collector .tp-collect {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      color: var(--ink-soft);
    }

    /* Reviews Section Extensions */
    .reviews {
      background: var(--white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 110px 0;
    }

    .reviews .agg {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 38px;
      flex-wrap: wrap;
    }

    .reviews .agg.tp-live {
      display: block;
      text-align: center;
      max-width: 560px;
      margin: 0 auto 36px;
    }

    .reviews .agg .stars {
      color: var(--gold);
      font-size: 21px;
      letter-spacing: 2px;
    }

    .reviews .agg .txt {
      font-size: 15px;
      color: var(--ink-soft);
    }

    .reviews .agg .g {
      font-weight: 700;
      color: var(--ink);
    }

    .reviews .agg .tp-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .reviews .agg .tp-badge svg {
      flex-shrink: 0;
    }

    .reviews .agg .tp-pending {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      font-weight: 600;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card .stars {
      color: var(--gold);
      font-size: 15px;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .review-card .pending-flag {
      margin-top: 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 600;
    }

    .review-card .who .loc-tba {
      color: var(--gold);
      font-weight: 600;
    }

    .reviews-carousel {
      position: relative;
    }

    .reviews-carousel::before,
    .reviews-carousel::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 56px;
      pointer-events: none;
      z-index: 2;
    }

    .reviews-carousel::before {
      left: 0;
      background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
    }

    .reviews-carousel::after {
      right: 0;
      background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
    }

    /* FAQ Section Extension - index2 style (override landing FAQ) */
    .faq-section {
      background: var(--white);
      border-top: 1px solid var(--gray-ultra-light);
      border-bottom: 1px solid var(--gray-ultra-light);
      padding: 110px 0;
    }

    .faq-section .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }

    /* Index2 FAQ - simpler, no backgrounds, just border lines */
    .faq-section details.faq-item,
    .faq-section .faq-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      padding: 0;
      margin-bottom: 0;
    }

    .faq-section details.faq-item:first-of-type,
    .faq-section .faq-item:first-of-type {
      border-top: 1px solid var(--line);
    }

    .faq-section details.faq-item summary,
    .faq-section .faq-item summary {
      padding: 28px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      list-style: none;
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-variation-settings: "SOFT" 100, "opsz" 32, "wght" 440;
      font-weight: 440;
      letter-spacing: -0.015em;
      line-height: 1.3;
      color: var(--ink);
      transition: color 0.2s ease;
    }

    .faq-section details.faq-item summary:hover,
    .faq-section .faq-item summary:hover {
      color: var(--sage);
    }

    .faq-section details.faq-item summary::-webkit-details-marker,
    .faq-section .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-section details.faq-item[open] summary,
    .faq-section .faq-item[open] summary {
      border-bottom: none;
      color: var(--ink);
    }

    .faq-section details.faq-item[open] summary .toggle::after,
    .faq-section .faq-item[open] summary .toggle::after {
      transform: rotate(90deg);
    }

    .faq-section details.faq-item .answer,
    .faq-section .faq-item .faq-answer {
      padding: 0 0 28px 0;
      font-size: 16.5px;
      color: var(--ink-soft);
      line-height: 1.65;
      max-width: 760px;
    }

    .faq-section details.faq-item .answer p + p,
    .faq-section .faq-item .faq-answer p + p {
      margin-top: 14px;
    }

    /* Skip Link */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: var(--sage);
      color: var(--cream-soft);
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      z-index: 200;
    }

    .skip-link:focus {
      top: 16px;
    }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--sage);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .wm-large {
      font-variation-settings: "SOFT" 100, "opsz" 60, "wght" 440;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 980px) {
      .container, .container-narrow {
        padding: 0 24px;
      }

      /* NAVIGATION - Show hamburger, hide desktop nav */
      .nav-links a:not(.nav-cta) {
        display: none;
      }

      .nav-dropdown {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .mobile-menu-overlay {
        display: block;
      }

      .nav-links {
        gap: 16px;
      }

      .nav-inner {
        padding: 12px 20px;
      }

      .nav-cta {
        padding: 8px 18px;
        font-size: 14px;
        margin: 4px 0;
      }

      .nav-cta .nav-arrow {
        display: none;
      }

      .hero {
        padding: 56px 0 48px;
      }

      .hero h1 {
        font-size: clamp(36px, 8vw, 52px);
      }

      .trust-grid,
      .service-steps {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .review-card {
        flex: 0 0 calc(100% - 8px);
      }

      /* FOOTER - 2 columns on tablet */
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
      }

      .footer-brand {
        grid-column: span 2;
        margin-bottom: 16px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 20px;
      }

      .footer-bottom .company {
        text-align: left;
      }
    }

    @media (max-width: 640px) {
      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }

      .cta-primary,
      .cta-secondary {
        width: 100%;
        justify-content: center;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .service-number {
        display: none;
      }

      /* What You Get Section - Stack on mobile */
      .wyg-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .wyg {
        padding: 70px 0;
      }

      .wyg-card {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
      }

      /* FOOTER - Single column on mobile */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-brand {
        grid-column: span 1;
        margin-bottom: 8px;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .footer-col {
        padding-bottom: 8px;
        border-bottom: 1px solid var(--gray-ultra-light);
      }

      .footer-col:last-child {
        border-bottom: none;
      }

      .footer-bottom {
        padding-top: 24px;
        text-align: left;
      }

      .footer-bottom .regulatory {
        max-width: 100%;
      }

      .featured-separator {
        display: none;
      }

      .featured-content {
        gap: 12px;
      }

      .recovery-stat {
        width: 100%;
        justify-content: center;
        padding-top: 8px;
        border-top: 1px solid var(--gray-ultra-light);
      }
    }
