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

    :root {
      /* Primary */
      --primary-blue: #0068a0;
      --trust-blue: #3B82F6;
      --deep-blue: #1E40AF;
      /* Secondary */
      --success-green: #10B981;
      --learning-green: #34D399;
      --sage-green: #84CC93;
      /* Accent */
      --warm-orange: #F97316;
      --friendly-orange: #FB923C;
      --coral: #FF6B6B;
      /* Neutrals */
      --dark-gray: #1F2937;
      --mid-gray: #6B7280;
      --light-gray: #F3F4F6;
      --warm-beige: #F5F5F0;
      --taupe: #E5E1DA;
      --white: #FFFFFF;
      /* Logo gold */
      --logo-gold: #F5B731;
      /* Shadows */
      --shadow-card: 0 4px 6px rgba(0,0,0,0.1);
      --shadow-hover: 0 8px 16px rgba(0,0,0,0.15);
      --shadow-modal: 0 20px 40px rgba(0,0,0,0.2);
      /* Spacing */
      --space-xs: 8px;
      --space-sm: 16px;
      --space-md: 24px;
      --space-lg: 48px;
      --space-xl: 96px;
      /* Radius */
      --radius-btn: 8px;
      --radius-card: 12px;
      --radius-modal: 16px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cardo', Georgia, serif;
      font-size: 18px;
      line-height: 1.6;
      color: var(--dark-gray);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Rubik', -apple-system, sans-serif;
      line-height: 1.2;
      color: var(--deep-blue);
    }

    h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
    h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; }
    h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 500; }

    a { color: var(--primary-blue); text-decoration: none; transition: color 200ms ease-in-out; }
    a:hover { color: var(--deep-blue); }

    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    /* ===== BUTTONS ===== */
    .btn {
      font-family: 'Rubik', sans-serif;
      font-size: 17px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-btn);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 200ms ease-in-out;
      text-decoration: none;
      min-height: 48px;
      min-width: 44px;
    }

    .btn-primary {
      background: var(--warm-orange);
      color: var(--white);
      border-color: var(--warm-orange);
    }
    .btn-primary:hover {
      background: #EA6C0B;
      border-color: #EA6C0B;
      color: var(--white);
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--success-green);
      color: var(--white);
      border-color: var(--success-green);
    }
    .btn-secondary:hover {
      background: #0EA472;
      border-color: #0EA472;
      color: var(--white);
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--trust-blue);
      border-color: var(--trust-blue);
    }
    .btn-ghost:hover {
      background: var(--trust-blue);
      color: var(--white);
    }

    .btn-white {
      background: var(--white);
      color: var(--primary-blue);
      border-color: var(--white);
      font-weight: 600;
    }
    .btn-white:hover {
      background: var(--light-gray);
      border-color: var(--light-gray);
      color: var(--primary-blue);
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }

    .btn-lg {
      padding: 16px 40px;
      font-size: 18px;
      font-weight: 600;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--taupe);
      transition: box-shadow 200ms ease-in-out;
    }
    .nav.scrolled { box-shadow: var(--shadow-card); }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo img { height: 44px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--dark-gray);
      transition: color 200ms ease-in-out;
    }
    .nav-links a:hover { color: var(--primary-blue); }

    .nav-cta { display: flex; gap: 12px; align-items: center; }
    .nav-cta .btn { padding: 10px 24px; font-size: 15px; }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark-gray);
      margin: 6px 0;
      transition: all 200ms ease-in-out;
    }

    /* ===== HERO ===== */
    .hero {
      padding: 140px 0 80px;
      background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
      position: relative;
      overflow: hidden;
      color: var(--white);
    }
    .hero::after {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::before {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16,185,129,0.15);
      color: var(--learning-green);
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: var(--space-md);
      border: 1px solid rgba(16,185,129,0.25);
    }
    .hero-badge svg { flex-shrink: 0; }

    .hero h1 { margin-bottom: var(--space-md); color: var(--white); }
    .hero h1 span { color: var(--friendly-orange); }

    .hero-sub {
      font-size: 20px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 36px;
      max-width: 520px;
    }

    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
    }
    .hero-proof-avatars {
      display: flex;
    }
    .hero-proof-avatars span {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--white);
      margin-left: -10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--white);
      font-weight: 600;
    }
    .hero-proof-avatars span:first-child { margin-left: 0; }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-mockup {
      background: var(--white);
      border-radius: var(--radius-modal);
      box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 80px rgba(59,130,246,0.1);
      padding: 24px;
      width: 100%;
      max-width: 480px;
      position: relative;
    }

    .mockup-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--light-gray);
      margin-bottom: 16px;
    }
    .mockup-dots {
      display: flex;
      gap: 6px;
    }
    .mockup-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .mockup-dots span:nth-child(1) { background: #FF6B6B; }
    .mockup-dots span:nth-child(2) { background: var(--logo-gold); }
    .mockup-dots span:nth-child(3) { background: var(--success-green); }
    .mockup-url {
      background: var(--light-gray);
      border-radius: 6px;
      padding: 4px 12px;
      font-family: 'Rubik', sans-serif;
      font-size: 12px;
      color: var(--mid-gray);
      flex: 1;
    }

    .mockup-search {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--light-gray);
      border-radius: var(--radius-btn);
      padding: 12px 16px;
      margin-bottom: 20px;
    }
    .mockup-search span {
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      color: var(--mid-gray);
    }

    .mockup-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .mockup-card {
      border-radius: var(--radius-btn);
      padding: 14px;
      background: var(--warm-beige);
      border: 1px solid var(--taupe);
    }
    .mockup-card-color {
      width: 100%;
      height: 60px;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .mockup-card h4 {
      font-family: 'Rubik', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--dark-gray);
      margin-bottom: 4px;
    }
    .mockup-card p {
      font-size: 11px;
      color: var(--mid-gray);
      line-height: 1.3;
    }
    .mockup-card-tag {
      display: inline-block;
      font-family: 'Rubik', sans-serif;
      font-size: 10px;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 100px;
      margin-top: 6px;
    }

    .float-badge {
      position: absolute;
      background: var(--white);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 12px 16px;
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 3s ease-in-out infinite;
    }
    .float-badge.top-left { top: -20px; left: -30px; animation-delay: 0s; }
    .float-badge.bottom-right { bottom: -10px; right: -30px; animation-delay: 1.5s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--white);
      padding: 56px 0;
      border-bottom: 1px solid var(--taupe);
    }
    .stats-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 64px;
      flex-wrap: wrap;
    }
    .stat-item {
      text-align: center;
    }
    .stat-item .stat-number {
      font-family: 'Rubik', sans-serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--deep-blue);
      line-height: 1;
      display: block;
    }
    .stat-item .stat-label {
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--mid-gray);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 8px;
      display: block;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--warm-beige);
      border-bottom: 1px solid var(--taupe);
      padding: 36px 0;
    }

    .trust-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--dark-gray);
    }
    .trust-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ===== PROBLEM SECTION ===== */
    .problem {
      padding: var(--space-xl) 0;
      background: var(--warm-beige);
    }

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

    .problem h2 { margin-bottom: var(--space-md); }
    .problem h2 span { color: var(--coral); }

    .problem-text {
      font-size: 19px;
      margin-bottom: var(--space-md);
    }

    .pain-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pain-points li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 17px;
    }
    .pain-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,107,107,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .solution-card {
      background: var(--white);
      border-radius: var(--radius-modal);
      padding: 40px;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--success-green);
    }
    .solution-card h3 {
      color: var(--success-green);
      margin-bottom: var(--space-sm);
    }
    .solution-card p {
      font-size: 17px;
      margin-bottom: var(--space-md);
    }

    .solution-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-sm);
    }
    .stat {
      text-align: center;
      padding: 16px;
      background: var(--light-gray);
      border-radius: var(--radius-btn);
    }
    .stat-number {
      font-family: 'Rubik', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--primary-blue);
      display: block;
    }
    .stat-label {
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      color: var(--mid-gray);
    }

    /* ===== FEATURES ===== */
    .features {
      padding: var(--space-xl) 0;
      background: var(--warm-beige);
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto var(--space-lg);
    }
    .section-header p {
      font-size: 19px;
      color: var(--mid-gray);
      margin-top: 12px;
    }
    .section-label {
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--warm-orange);
      margin-bottom: 8px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }

    .feature-card {
      background: var(--white);
      border: 1px solid var(--taupe);
      border-radius: var(--radius-card);
      padding: 32px 28px;
      transition: all 200ms ease-in-out;
      border-top: 3px solid var(--taupe);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .feature-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
      border-color: transparent;
    }
    .feature-card:nth-child(1) { border-top-color: var(--trust-blue); }
    .feature-card:nth-child(2) { border-top-color: var(--success-green); }
    .feature-card:nth-child(3) { border-top-color: var(--warm-orange); }
    .feature-card:nth-child(4) { border-top-color: var(--coral); }
    .feature-card:nth-child(5) { border-top-color: var(--sage-green); }
    .feature-card:nth-child(6) { border-top-color: var(--deep-blue); }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-card);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-sm);
    }

    .feature-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }
    .feature-card p {
      font-size: 16px;
      color: var(--mid-gray);
      line-height: 1.5;
    }

    /* ===== CLICKSENSE ===== */
    .clicksense {
      padding: var(--space-xl) 0;
      background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
      position: relative;
      overflow: hidden;
    }
    .clicksense::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .clicksense .section-header h2 { color: var(--white); }
    .clicksense .section-header p { color: rgba(255,255,255,0.7); }
    .clicksense .section-label {
      color: var(--friendly-orange);
      border-color: rgba(249,115,22,0.3);
    }
    .clicksense-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: var(--space-lg);
    }
    .clicksense-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 32px 24px;
      transition: all 200ms ease-in-out;
    }
    .clicksense-card:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-4px);
    }
    .clicksense-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .clicksense-card h3 {
      font-family: 'Rubik', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .clicksense-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }
    .clicksense-tagline {
      text-align: center;
      margin-top: var(--space-lg);
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      color: rgba(255,255,255,0.5);
    }
    .clicksense-tagline strong {
      color: var(--friendly-orange);
    }

    /* ===== HOW IT WORKS ===== */
    .how-it-works {
      padding: var(--space-xl) 0;
      background: linear-gradient(180deg, var(--warm-beige) 0%, var(--white) 100%);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, var(--trust-blue), var(--success-green), var(--warm-orange));
      border-radius: 2px;
    }

    .step {
      text-align: center;
      position: relative;
    }
    .step-number {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-md);
      font-family: 'Rubik', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
      position: relative;
      z-index: 1;
    }
    .step h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .step p {
      font-size: 16px;
      color: var(--mid-gray);
      max-width: 280px;
      margin: 0 auto;
    }

    /* ===== RESOURCES PREVIEW ===== */
    .resources-preview {
      padding: var(--space-xl) 0;
      background: var(--white);
    }

    .resource-categories {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
    }

    .resource-cat {
      border-radius: var(--radius-card);
      padding: 32px 24px;
      text-align: center;
      transition: all 200ms ease-in-out;
      cursor: pointer;
      border: 2px solid transparent;
    }
    .resource-cat:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .resource-cat-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-sm);
      font-size: 28px;
    }
    .resource-cat h3 { font-size: 18px; margin-bottom: 6px; }
    .resource-cat p { font-size: 14px; color: var(--mid-gray); }

    /* ===== PRICING ===== */
    .pricing {
      padding: var(--space-xl) 0;
      background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
      color: var(--white);
    }
    .pricing .section-header h2 { color: var(--white); }
    .pricing .section-header p { color: rgba(255,255,255,0.7); }
    .pricing .section-label { color: var(--friendly-orange); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      align-items: stretch;
    }

    .pricing-card {
      background: var(--white);
      border-radius: var(--radius-modal);
      padding: 36px 28px;
      color: var(--dark-gray);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 200ms ease-in-out;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-modal);
    }
    .pricing-card.featured {
      border: 3px solid var(--warm-orange);
      transform: scale(1.04);
    }
    .pricing-card.featured:hover {
      transform: scale(1.04) translateY(-4px);
    }

    .pricing-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--warm-orange);
      color: var(--white);
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 4px 20px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .pricing-desc {
      font-size: 15px;
      color: var(--mid-gray);
      margin-bottom: var(--space-md);
    }

    .pricing-amount {
      font-family: 'Rubik', sans-serif;
      margin-bottom: var(--space-md);
    }
    .pricing-amount .currency {
      font-size: 24px;
      font-weight: 600;
      color: var(--dark-gray);
      vertical-align: super;
    }
    .pricing-amount .price {
      font-size: 52px;
      font-weight: 700;
      color: var(--deep-blue);
      line-height: 1;
    }
    .pricing-amount .period {
      font-size: 16px;
      color: var(--mid-gray);
      font-weight: 400;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
    }
    .pricing-features li svg { flex-shrink: 0; margin-top: 3px; }

    .pricing-card .btn { width: 100%; text-align: center; }

    /* ===== FOUNDER ===== */
    .founder {
      padding: var(--space-xl) 0;
      background: var(--warm-beige);
    }

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

    .founder-inner h2 { margin-bottom: var(--space-md); }
    .founder-inner h2 span { color: var(--warm-orange); }

    .founder-quote {
      font-size: 26px;
      font-style: italic;
      color: var(--primary-blue);
      line-height: 1.5;
      margin: var(--space-md) 0 var(--space-lg);
      position: relative;
      padding: 0 24px;
    }
    .founder-quote::before {
      content: '\201C';
      font-family: 'Cardo', serif;
      font-size: 80px;
      color: var(--warm-orange);
      opacity: 0.3;
      position: absolute;
      top: -20px;
      left: -10px;
      line-height: 1;
    }

    .founder-bio {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
      text-align: left;
      margin-bottom: var(--space-md);
    }
    .founder-bio p {
      font-size: 17px;
    }

    .founder-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: var(--space-md) 0;
    }
    .credential {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      padding: 10px 18px;
      border-radius: 100px;
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
      box-shadow: var(--shadow-card);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      padding: var(--space-xl) 0;
      background: var(--white);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }

    .testimonial-card {
      background: var(--warm-beige);
      border-radius: var(--radius-card);
      padding: 32px;
      position: relative;
      border-left: 3px solid var(--trust-blue);
    }
    .testimonial-card:nth-child(2) { border-left-color: var(--success-green); }
    .testimonial-card:nth-child(3) { border-left-color: var(--warm-orange); }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Cardo', serif;
      font-size: 72px;
      color: var(--trust-blue);
      opacity: 0.2;
      position: absolute;
      top: 10px;
      left: 20px;
      line-height: 1;
    }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 12px;
    }

    .testimonial-card p {
      font-size: 16px;
      margin-bottom: var(--space-sm);
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-gray);
    }
    .testimonial-role {
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      color: var(--mid-gray);
    }

    /* ===== FINAL CTA ===== */
    .final-cta {
      padding: var(--space-xl) 0;
      background: linear-gradient(135deg, var(--deep-blue) 0%, #2563EB 50%, var(--primary-blue) 100%);
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }
    .final-cta::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }

    .final-cta h2 {
      color: var(--white);
      margin-bottom: var(--space-sm);
    }
    .final-cta p {
      font-size: 20px;
      color: rgba(255,255,255,0.8);
      max-width: 560px;
      margin: 0 auto var(--space-lg);
    }
    .final-cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark-gray);
      color: rgba(255,255,255,0.7);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand img { height: 36px; margin-bottom: var(--space-sm); }
    .footer-brand p {
      font-size: 15px;
      line-height: 1.6;
      max-width: 300px;
    }

    .footer h4 {
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: var(--space-sm);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      transition: color 200ms ease-in-out;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: var(--space-md);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: var(--white); }
    .footer-socials {
      display: flex;
      gap: 16px;
    }
    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 200ms ease-in-out;
    }
    .footer-socials a:hover { background: rgba(255,255,255,0.2); }

    /* ===== WAITLIST FORMS ===== */
    .waitlist-form {
      display: flex;
      gap: 12px;
      max-width: 480px;
      flex-wrap: wrap;
    }
    .waitlist-form input[type="email"] {
      flex: 1;
      min-width: 220px;
      padding: 14px 20px;
      border: 2px solid rgba(255,255,255,0.25);
      border-radius: var(--radius-btn);
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      outline: none;
      transition: border-color 200ms ease-in-out;
    }
    .waitlist-form input[type="email"]::placeholder {
      color: rgba(255,255,255,0.5);
    }
    .waitlist-form input[type="email"]:focus {
      border-color: var(--friendly-orange);
      background: rgba(255,255,255,0.15);
    }
    .waitlist-form .btn { white-space: nowrap; }
    .waitlist-hint {
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      margin-top: 8px;
      width: 100%;
    }
    .waitlist-success {
      display: none;
      padding: 16px 20px;
      background: rgba(16,185,129,0.15);
      border: 1px solid rgba(16,185,129,0.3);
      border-radius: var(--radius-btn);
      color: var(--learning-green);
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      max-width: 480px;
    }

    /* Final CTA waitlist - white-on-blue variant */
    .final-cta .waitlist-form {
      margin: 0 auto;
      justify-content: center;
    }
    .final-cta .waitlist-form input[type="email"] {
      border-color: rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.1);
    }
    .final-cta .waitlist-hint {
      text-align: center;
    }

    /* Sticky waitlist bar */
    .sticky-waitlist {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--deep-blue);
      padding: 12px 0;
      transform: translateY(100%);
      transition: transform 300ms ease-in-out;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }
    .sticky-waitlist.visible { transform: translateY(0); }
    .sticky-waitlist-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .sticky-waitlist-text {
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
    }
    .sticky-waitlist form {
      display: flex;
      gap: 8px;
    }
    .sticky-waitlist input[type="email"] {
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: var(--radius-btn);
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      outline: none;
      min-width: 220px;
    }
    .sticky-waitlist input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
    .sticky-waitlist .btn { padding: 10px 20px; font-size: 14px; }
    .sticky-waitlist-close {
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      padding: 4px;
      font-size: 18px;
      line-height: 1;
    }
    .sticky-waitlist-close:hover { color: var(--white); }

    @media (max-width: 768px) {
      .sticky-waitlist-inner { flex-direction: column; text-align: center; gap: 8px; }
      .sticky-waitlist form { flex-direction: column; width: 100%; }
      .sticky-waitlist input[type="email"] { min-width: unset; width: 100%; }
    }

    /* ===== EARLY ADOPTER POPUP ===== */
    .popup-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: var(--space-md);
    }
    .popup-overlay.active { display: flex; }
    .popup-modal {
      background: var(--white);
      border-radius: var(--radius-modal);
      max-width: 500px;
      width: 100%;
      padding: 40px 36px;
      position: relative;
      box-shadow: var(--shadow-modal);
      text-align: center;
      animation: popIn 300ms ease-out;
    }
    @keyframes popIn {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: none;
      border: none;
      color: var(--mid-gray);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      padding: 4px;
      transition: color 200ms;
    }
    .popup-close:hover { color: var(--dark-gray); }
    .popup-badge {
      display: inline-block;
      background: rgba(249,115,22,0.1);
      color: var(--warm-orange);
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: var(--space-sm);
    }
    .popup-modal h3 {
      font-size: 26px;
      margin-bottom: 8px;
    }
    .popup-modal > p {
      font-size: 16px;
      color: var(--mid-gray);
      margin-bottom: var(--space-md);
    }
    .popup-perks {
      list-style: none;
      text-align: left;
      margin-bottom: var(--space-md);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .popup-perks li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      color: var(--dark-gray);
    }
    .popup-form {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }
    .popup-form input[type="email"] {
      flex: 1;
      padding: 14px 18px;
      border: 2px solid var(--taupe);
      border-radius: var(--radius-btn);
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      outline: none;
      transition: border-color 200ms;
    }
    .popup-form input[type="email"]:focus { border-color: var(--warm-orange); }
    .popup-hint {
      font-family: 'Rubik', sans-serif;
      font-size: 12px;
      color: var(--mid-gray);
    }
    @media (max-width: 768px) {
      .popup-modal { padding: 32px 24px; }
      .popup-form { flex-direction: column; }
    }

    /* ===== RESPONSIVE ===== */
    /* ===== MOBILE MENU ===== */
    .nav-links.mobile-open {
      display: flex !important;
      flex-direction: column;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(10px);
      padding: 24px;
      box-shadow: var(--shadow-card);
      gap: 16px;
      border-top: 1px solid var(--taupe);
    }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { margin: 0 auto var(--space-md); }
      .hero-ctas { justify-content: center; }
      .hero-proof { justify-content: center; }
      .hero-visual { margin-top: var(--space-lg); }
      .float-badge { display: none; }

      .problem-grid { grid-template-columns: 1fr; }
      .founder-bio { grid-template-columns: 1fr; }

      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .clicksense-grid { grid-template-columns: repeat(2, 1fr); }
      .resource-categories { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-card.featured { grid-column: span 2; max-width: 400px; margin: 0 auto; }
      .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta .btn-ghost { display: none; }
      .mobile-toggle { display: block; }
      .stats-grid { gap: 32px; }
      .stat-item .stat-number { font-size: 36px; }

      .hero { padding: 110px 0 60px; }
      h1 { font-size: 32px; }
      h2 { font-size: 28px; }

      .feature-grid { grid-template-columns: 1fr; }
      .clicksense-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; gap: var(--space-lg); }
      .steps::before { display: none; }
      .resource-categories { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card.featured { grid-column: auto; max-width: none; transform: none; }
      .pricing-card.featured:hover { transform: translateY(-4px); }
      .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
      .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
    }

    /* ===== PREMIUM DESIGN UPLIFT ===== */

    /* --- Keyframe Animations --- */
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* --- Hero Entrance Animation --- */
    .hero-content {
      animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .hero-visual {
      animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    }

    /* --- Hero Badge: Shimmer --- */
    .hero-badge {
      background: linear-gradient(
        110deg,
        rgba(16,185,129,0.15) 0%,
        rgba(16,185,129,0.15) 40%,
        rgba(52,211,153,0.4) 50%,
        rgba(16,185,129,0.15) 60%,
        rgba(16,185,129,0.15) 100%
      );
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }

    /* --- Float Badges: Glassmorphism --- */
    .float-badge {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.4);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
    }

    /* --- Hero Mockup: Enhanced Glow --- */
    .hero-mockup {
      box-shadow:
        0 25px 60px rgba(0,0,0,0.4),
        0 0 80px rgba(59,130,246,0.15),
        0 0 160px rgba(59,130,246,0.05);
    }

    /* --- Gradient Text on Hero Highlight --- */
    .hero h1 span {
      background: linear-gradient(135deg, var(--friendly-orange), #FBBF24, var(--friendly-orange));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* --- Scroll Reveal: Slide-up (non-interactive elements) --- */
    .reveal-element {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-element.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Scroll Reveal: Stagger (card grids — opacity only to avoid hover conflicts) --- */
    .reveal-stagger > * {
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-stagger.revealed > * {
      opacity: 1;
    }
    .reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
    .reveal-stagger.revealed > *:nth-child(2) { transition-delay: 80ms; }
    .reveal-stagger.revealed > *:nth-child(3) { transition-delay: 160ms; }
    .reveal-stagger.revealed > *:nth-child(4) { transition-delay: 240ms; }
    .reveal-stagger.revealed > *:nth-child(5) { transition-delay: 320ms; }
    .reveal-stagger.revealed > *:nth-child(6) { transition-delay: 400ms; }

    /* --- Stats: Count-up Reveal --- */
    .stats-grid .stat-item {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .stats-grid.count-active .stat-item {
      opacity: 1;
      transform: translateY(0);
    }
    .stats-grid.count-active .stat-item:nth-child(2) { transition-delay: 100ms; }
    .stats-grid.count-active .stat-item:nth-child(3) { transition-delay: 200ms; }
    .stats-grid.count-active .stat-item:nth-child(4) { transition-delay: 300ms; }

    /* --- Interactive Element Transitions --- */
    .feature-card,
    .clicksense-card,
    .pricing-card,
    .resource-cat,
    .testimonial-card,
    .credential,
    .btn {
      transition: all 300ms ease;
    }

    /* --- Feature Cards: Enhanced Hover --- */
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 4px 6px rgba(0,0,0,0.03), 0 12px 40px rgba(0,0,0,0.08);
    }

    /* --- ClickSense Cards: Glow on Hover --- */
    .clicksense-card:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-6px);
      box-shadow: 0 8px 32px rgba(59,130,246,0.12);
    }

    /* --- Featured Pricing: Glassmorphism & Glow --- */
    .pricing-card.featured {
      background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(255,255,255,0.88));
      border: 2px solid rgba(249,115,22,0.25);
      box-shadow:
        0 8px 32px rgba(249,115,22,0.12),
        0 0 60px rgba(249,115,22,0.04);
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-modal);
    }
    .pricing-card.featured:hover {
      transform: scale(1.04) translateY(-4px);
      box-shadow:
        0 16px 48px rgba(249,115,22,0.18),
        0 0 80px rgba(249,115,22,0.06);
    }

    /* --- Testimonial Cards: Gradient BG & Hover --- */
    .testimonial-card {
      background: linear-gradient(160deg, var(--warm-beige) 0%, rgba(255,255,255,0.85) 100%);
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    /* --- Resource Category Hover --- */
    .resource-cat:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    /* --- Section Labels: Premium Spacing --- */
    .section-label {
      letter-spacing: 2.5px;
      font-size: 13px;
    }

    /* --- Button Refinements --- */
    .btn-primary {
      background: linear-gradient(135deg, var(--warm-orange), #EA6C0B);
      border-color: transparent;
      box-shadow: 0 2px 8px rgba(249,115,22,0.3);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #EA6C0B, #C2410C);
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(249,115,22,0.4);
      transform: translateY(-2px);
    }
    .btn-primary:active {
      transform: translateY(0) scale(0.98);
      box-shadow: 0 2px 6px rgba(249,115,22,0.2);
    }

    .btn-secondary {
      background: linear-gradient(135deg, var(--success-green), #059669);
      border-color: transparent;
      box-shadow: 0 2px 8px rgba(16,185,129,0.3);
    }
    .btn-secondary:hover {
      background: linear-gradient(135deg, #059669, #047857);
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(16,185,129,0.35);
      transform: translateY(-2px);
    }
    .btn-secondary:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-ghost:active, .btn-white:active {
      transform: scale(0.98);
    }

    /* --- Nav: Enhanced Blur on Scroll --- */
    .nav.scrolled {
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    /* --- Form Focus Glow --- */
    .popup-form input[type="email"]:focus {
      border-color: var(--warm-orange);
      box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
    }
    .waitlist-form input[type="email"]:focus {
      box-shadow: 0 0 0 3px rgba(251,146,60,0.15);
    }
    .sticky-waitlist input[type="email"]:focus {
      box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    }

    /* --- Layered Shadows --- */
    .solution-card {
      box-shadow:
        0 1px 2px rgba(0,0,0,0.03),
        0 4px 8px rgba(0,0,0,0.04),
        0 12px 32px rgba(0,0,0,0.06);
    }

    /* --- Gradient Dividers --- */
    .stats-bar {
      border-bottom: none;
      position: relative;
    }
    .stats-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--taupe), transparent);
    }
    .trust-bar {
      border-bottom: none;
      position: relative;
    }
    .trust-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--taupe), transparent);
    }

    /* --- Subtle Dot Grid Background --- */
    .features {
      background-image: radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
      background-size: 24px 24px;
      background-color: var(--warm-beige);
    }

    /* --- Popup: Refined --- */
    .popup-overlay {
      background: rgba(15,23,42,0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .popup-modal {
      box-shadow:
        0 25px 50px rgba(0,0,0,0.15),
        0 0 80px rgba(59,130,246,0.04);
      animation: popIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* --- Sticky Bar: Glassmorphism --- */
    .sticky-waitlist {
      background: rgba(30,64,175,0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* --- Credential Badges Hover --- */
    .credential:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    /* --- Step Numbers: Shadow --- */
    .step-number {
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    }

    /* --- Mobile: Preserve existing layout --- */
    @media (max-width: 768px) {
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-4px); }
    }

    /* --- Nav Dropdown Menu --- */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
      padding: 28px 32px;
      min-width: 520px;
      z-index: 1000;
      gap: 32px;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      display: flex;
    }
    .nav-dropdown-col {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }
    .nav-dropdown-heading {
      font-family: 'Rubik', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #9CA3AF;
      margin-bottom: 6px;
      display: block;
    }
    .nav-dropdown-menu a {
      font-family: 'Rubik', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #1F2937;
      padding: 4px 0;
      text-decoration: none;
      transition: color 200ms;
    }
    .nav-dropdown-menu a:hover {
      color: #F97316;
    }

    /* --- Footer 5-col responsive --- */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
    }
    @media (max-width: 500px) {
      .footer-grid {
        grid-template-columns: 1fr !important;
      }
      .nav-dropdown-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        transform: none;
        min-width: auto;
        flex-wrap: wrap;
      }
    }

    /* --- Accessibility: Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
      .hero-content, .hero-visual { animation: none !important; }
      .hero-badge { animation: none !important; }
      .reveal-element,
      .reveal-stagger > *,
      .stats-grid .stat-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* --- Brevo Form Overrides (side-by-side on dark backgrounds) --- */
    .hero-signup .sib_signup_box_inside_2,
    .final-cta .sib_signup_box_inside_2 {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: flex-end;
    }
    .hero-signup .sib-email-area,
    .final-cta .sib-email-area {
      flex: 1;
      min-width: 180px;
      margin: 0 !important;
    }
    .hero-signup .sib-FIRSTNAME-area,
    .final-cta .sib-FIRSTNAME-area {
      flex: 1;
      min-width: 140px;
      margin: 0 !important;
    }
    .hero-signup .sib_signup_box_inside_2 > p:has(.sib-default-btn) {
      flex: 0 0 auto;
      margin: 0 !important;
    }
    .hero-signup .sib_signup_box_inside_2 input[type=text],
    .hero-signup .sib_signup_box_inside_2 input[type=email],
    .final-cta .sib_signup_box_inside_2 input[type=text],
    .final-cta .sib_signup_box_inside_2 input[type=email] {
      padding: 12px 16px;
      border: 2px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.08);
      color: #fff;
      border-radius: 8px;
      font-family: 'Cardo', Georgia, serif;
      font-size: 16px;
      width: 100%;
      margin: 4px 0 0 0;
    }
    .hero-signup .sib_signup_box_inside_2 input::placeholder,
    .final-cta .sib_signup_box_inside_2 input::placeholder {
      color: rgba(255,255,255,0.4);
    }
    .hero-signup .sib_signup_box_inside_2 input:focus,
    .final-cta .sib_signup_box_inside_2 input:focus {
      border-color: var(--warm-orange);
      outline: none;
      box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
    }
    .hero-signup .sib-default-btn,
    .final-cta .sib-default-btn {
      padding: 14px 32px !important;
      background: var(--warm-orange) !important;
      color: #fff !important;
      border: none !important;
      border-radius: 8px !important;
      font-family: 'Rubik', sans-serif !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      cursor: pointer;
      width: 100%;
      margin: 4px 0 0 0 !important;
      transition: all 200ms;
    }
    .hero-signup .sib-default-btn:hover,
    .final-cta .sib-default-btn:hover {
      background: #EA580C !important;
      transform: translateY(-1px);
    }
    .hero-signup .sib_signup_box_inside_2 p,
    .final-cta .sib_signup_box_inside_2 p {
      font-family: 'Rubik', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }
    /* Compliance text spans full width below the inline fields */
    .hero-signup .sib_signup_box_inside_2 > p:last-child,
    .final-cta .sib_signup_box_inside_2 > p:last-child {
      flex: 0 0 100%;
    }
    /* Hide Brevo field labels on dark bg (placeholders are enough) */
    .hero-signup .sib_signup_box_inside_2 > p > br,
    .final-cta .sib_signup_box_inside_2 > p > br {
      display: none;
    }
    @media (max-width: 600px) {
      .hero-signup .sib_signup_box_inside_2,
      .final-cta .sib_signup_box_inside_2 {
        flex-direction: column;
      }
    }
