  :root {
    /* ── Ecclesix Brand Colors (from logo) ── */
    --gold: #D4A017;
    --gold-light: #F0C040;
    --gold-pale: #FDF3D0;
    --navy: #1A2744;
    --navy-deep: #0F1A35;
    --navy-mid: #243358;
    --light-bg: #EEF1F8;
    --light-bg2: #E4E9F4;
    --ink: #1A2744;
    --ink-soft: #243358;
    --parchment: #F4F6FB;
    --cream: #EEF1F8;
    --muted: #6B7A9E;
    --white: #FFFFFF;
    --accent-green: #1A5C2A;
    --border: rgba(212,160,23,0.3);
    --border-navy: rgba(26,39,68,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--parchment);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: rgba(244,246,251,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center;
  }
  .nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
  }

  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--gold-pale) 60%, rgba(212,160,23,0.15) 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
  }

  .hero-ornament {
    position: absolute;
    top: 15%; right: 5%;
    width: 420px; height: 420px;
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: spin-slow 60s linear infinite;
  }

  .hero-ornament::after {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
  }

  @keyframes spin-slow { to { transform: rotate(360deg); } }

  .hero-left {
    position: relative; z-index: 2;
    max-width: 560px;
    animation: fade-up 0.9s ease both;
  }

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

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
  }

  .hero-badge::before {
    content: '✦';
    font-size: 0.6rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 44px;
    max-width: 440px;
  }

  .hero-actions {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  }

  .btn-ghost {
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }

  .btn-ghost:hover { gap: 12px; }
  .btn-ghost::after { content: '→'; }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    animation: fade-up 0.9s 0.2s ease both;
  }

  /* ─── MOCK DASHBOARD ─── */
  .mock-dashboard {
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 1px var(--border);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
  }

  .mock-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }

  .mock-topbar {
    background: var(--navy-deep);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mock-dot { width: 10px; height: 10px; border-radius: 50%; }

  .mock-dash-content { padding: 20px; }

  .mock-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .mock-stat {
    background: var(--parchment);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
  }

  .mock-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
  }

  .mock-stat-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
  }

  .mock-chart {
    height: 80px;
    background: var(--parchment);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    gap: 6px;
    margin-bottom: 16px;
  }

  .mock-bar {
    flex: 1;
    background: var(--border);
    border-radius: 3px 3px 0 0;
    position: relative;
    overflow: hidden;
  }

  .mock-bar-fill {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    animation: bar-grow 1.5s ease both;
  }

  @keyframes bar-grow {
    from { height: 0; }
    to { height: var(--h); }
  }

  .mock-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream);
  }

  .mock-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
  }

  .mock-list-text { font-size: 0.75rem; color: var(--ink-soft); }
  .mock-list-sub { font-size: 0.65rem; color: var(--muted); }
  .mock-pill {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    background: #e8f5e1;
    color: var(--accent-green);
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--navy-deep);
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .stat-item {
    padding: 24px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    animation: fade-up 0.7s ease both;
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
  }

  .stat-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ─── TRUST / SOCIAL PROOF ─── */
  .trust-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  }

  .logo-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .logo-pill {
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
  }

  .proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .proof-metric {
    background: var(--white);
    padding: 24px;
  }

  .proof-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
  }

  .proof-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ─── APP SECTION ─── */
  .app-section {
    padding: 90px 60px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: start;
  }

  .platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .platform-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-navy);
    color: var(--ink-soft);
    background: var(--parchment);
  }

  .platform-badge.available {
    border-color: var(--gold);
    background: var(--gold-pale);
    color: var(--ink);
  }

  .app-cards {
    display: grid;
    gap: 14px;
  }

  .app-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fd 100%);
    padding: 20px;
    border-radius: 6px;
  }

  .app-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--ink);
  }

  .app-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--muted);
  }

  /* ─── FEATURES ─── */
  .section {
    padding: 100px 60px;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--ink);
    max-width: 520px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .feature-card {
    background: var(--parchment);
    padding: 40px 36px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
  }

  .feature-card:hover { background: var(--cream); }
  .feature-card:hover::before { height: 100%; }

  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
  }

  .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ─── ADVANTAGES ─── */
  .advantages-section {
    padding: 90px 60px;
    background: linear-gradient(180deg, #f8fafd 0%, var(--white) 100%);
  }

  .adv-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
  }

  .adv-compare-card {
    border-radius: 8px;
    padding: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(15, 26, 53, 0.06);
  }

  .adv-compare-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--ink);
  }

  .adv-compare-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 14px;
  }

  .adv-compare-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .adv-compare-card li {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .adv-compare-card.legacy li::before {
    content: '•';
    color: #ba4a4a;
    font-weight: 700;
  }

  .adv-compare-card.modern {
    border-color: rgba(212,160,23,0.5);
    background: linear-gradient(180deg, #fffdf5 0%, #fff9e6 100%);
  }

  .adv-compare-card.modern li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
  }

  .adv-focus-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .adv-focus-item {
    background: var(--navy-deep);
    border: 1px solid rgba(212,160,23,0.35);
    border-radius: 6px;
    padding: 18px;
  }

  .adv-focus-title {
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .adv-focus-item p {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    line-height: 1.6;
  }

  /* ─── PRICING ─── */
  .pricing-section {
    background: var(--navy-deep);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
  }

  .pricing-section::before {
    content: 'ECCLESIX';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .pricing-section .section-title { color: var(--parchment); }
  .pricing-section .section-sub { color: rgba(255,255,255,0.45); }
  .pricing-section .section-label { color: var(--gold); }

  .pricing-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 48px;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 4px;
    width: fit-content;
  }

  .pricing-min-note {
    margin: -26px 0 32px;
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(212,160,23,0.35);
    background: rgba(212,160,23,0.12);
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    border-radius: 3px;
  }

  .pricing-tab {
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }

  .pricing-tab.active {
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.05);
  }

  .pricing-card {
    background: rgba(255,255,255,0.03);
    padding: 36px 28px;
    position: relative;
    transition: background 0.25s;
    border: 1px solid rgba(255,255,255,0.04);
  }

  .pricing-card.featured {
    background: var(--gold-pale);
    border-color: var(--gold);
  }

  .pricing-card.featured .pricing-tier { color: var(--ink); }
  .pricing-card.featured .pricing-price { color: var(--ink); }
  .pricing-card.featured .pricing-desc { color: var(--muted); }
  .pricing-card.featured .pricing-feature { color: var(--ink-soft); border-color: var(--border); }

  .featured-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 4px 4px;
    white-space: nowrap;
  }

  .pricing-tier {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .pricing-members {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }

  .pricing-card.featured .pricing-members { color: var(--muted); }

  .pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .pricing-period {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
  }

  .pricing-card.featured .pricing-period { color: var(--muted); }

  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .pricing-feature::before { content: '✓'; color: var(--gold); flex-shrink: 0; }

  .pricing-btn {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .pricing-card:not(.featured) .pricing-btn {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .pricing-card:not(.featured) .pricing-btn:hover {
    background: rgba(255,255,255,0.1);
  }

  .pricing-card.featured .pricing-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  }

  .pricing-card.featured .pricing-btn:hover {
    background: var(--gold-light);
  }

  /* ─── LAUNCH OFFER ─── */
  .launch-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
  }

  .launch-section::after {
    content: '7';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .launch-inner {
    max-width: 680px;
    position: relative; z-index: 1;
  }

  .launch-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .lead-form-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,160,23,0.32);
    border-radius: 6px;
    padding: 24px;
    display: grid;
    gap: 14px;
  }

  .lead-form-card h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
  }

  .lead-form-card p,
  .lead-form-card small {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lead-form-card label {
    display: grid;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .lead-form-card input,
  .lead-form-card select,
  .lead-form-card textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(13, 21, 43, 0.45);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.84rem;
    font-family: 'DM Sans', sans-serif;
  }

  .lead-form-card textarea {
    resize: vertical;
    min-height: 80px;
  }

  .lead-form-card input:focus,
  .lead-form-card select:focus,
  .lead-form-card textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 2px rgba(212,160,23,0.2);
  }

  .launch-section .section-label { color: var(--gold-light); opacity: 1; }
  .launch-section .section-title { color: var(--white); }

  .launch-section .section-sub {
    color: rgba(255,255,255,0.65);
    opacity: 1;
  }

  .launch-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .launch-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(212,160,23,0.2);
    padding: 16px;
    border-radius: 4px;
  }

  .perk-icon {
    width: 32px; height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-deep);
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .perk-text { font-size: 0.875rem; font-weight: 500; color: var(--white); line-height: 1.4; }
  .perk-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); opacity: 1; margin-top: 2px; }

  .launch-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

  .btn-dark {
    background: var(--gold);
    color: var(--navy-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }

  .btn-dark:hover { background: var(--gold-light); transform: translateY(-2px); }

  .launch-note { font-size: 0.825rem; color: rgba(255,255,255,0.5); opacity: 1; }

  /* ─── HOW IT WORKS ─── */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    counter-reset: step;
    margin-top: 60px;
  }

  .how-step {
    position: relative;
    counter-increment: step;
  }

  .how-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
  }

  .how-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .how-step-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .how-connector {
    position: absolute;
    top: 1.8rem;
    right: -20px;
    width: 40px;
    height: 1px;
    background: var(--border);
  }

  .how-step:last-child .how-connector { display: none; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    background: var(--light-bg);
    padding: 100px 60px;
  }

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

  .testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold-pale);
    line-height: 1;
  }

  .testimonial-text {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
  }

  .testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--ink); }
  .testimonial-role { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }

  /* ─── FAQ ─── */
  .faq-section {
    padding: 90px 60px;
    background: var(--light-bg);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 18px;
  }

  .faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    list-style: none;
  }

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

  .faq-item p {
    margin-top: 10px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ─── LEGAL ─── */
  .legal-section {
    padding: 80px 60px;
    background: var(--white);
  }

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

  .legal-card {
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  }

  .legal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .legal-card p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }

  .footer-brand span { color: var(--gold); }

  .footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 280px;
  }

  .footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    background: var(--navy-deep);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
  }

  .footer-contact {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    display: flex; gap: 24px;
  }

  .footer-contact a { color: var(--gold); text-decoration: none; }

  /* ─── ENTERPRISE SECTION ─── */
  .enterprise-section {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .enterprise-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
  }

  .enterprise-table th {
    text-align: left;
    padding: 10px 16px;
    background: var(--ink);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .enterprise-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
  }

  .enterprise-table tr:last-child td { border-bottom: none; }

  .enterprise-table tr:hover td { background: var(--cream); }

  .price-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
  }

  /* ─── PAYMENT SECTION ─── */
  .payment-section {
    background: var(--light-bg2);
    padding: 60px;
    text-align: center;
  }

  .payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }

  .payment-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-icon {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .payment-icon .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
    .hero::before { display: none; }
    .hero-right { margin-top: 40px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
    .section { padding: 70px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .advantages-section { padding: 70px 24px; }
    .adv-compare-grid { grid-template-columns: 1fr; }
    .adv-focus-grid { grid-template-columns: 1fr; }
    .trust-section { padding: 60px 24px; }
    .proof-metrics { grid-template-columns: 1fr; }
    .app-section { grid-template-columns: 1fr; padding: 60px 24px; }
    .pricing-section { padding: 70px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-section { padding: 70px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .enterprise-section { grid-template-columns: 1fr; padding: 70px 24px; }
    .launch-layout { grid-template-columns: 1fr; }
    .lead-form-grid { grid-template-columns: 1fr; }
    .faq-section { padding: 70px 24px; }
    .faq-grid { grid-template-columns: 1fr; }
    .legal-section { padding: 60px 24px; }
    .legal-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 40px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
    .launch-section { padding: 60px 24px; }
    .launch-perks { grid-template-columns: 1fr; }
  }
