:root {
    --bg: #FAFAF7;
    --bg-white: #FFFFFF;
    --bg-warm: #F5F3EE;
    --bg-tint: #EEF7F1;
    --bg-blue-tint: #EFF5FB;
    --bg-orange-tint: #FFF6EE;
    --bg-red-tint: #FFF0EE;
    --border: #E4E2DC;
    --border-light: #EDEBE6;
    --text: #1A1A1A;
    --text-body: #3D3D3D;
    --text-dim: #6B6B6B;
    --text-muted: #9B9B9B;
    --green: #1A8D52;
    --green-light: #22C55E;
    --green-bg: #DCFCE7;
    --blue: #2563EB;
    --blue-bg: #DBEAFE;
    --orange: #D97706;
    --orange-bg: #FEF3C7;
    --red: #DC2626;
    --red-bg: #FEE2E2;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'General Sans', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow: 0 4px 20px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection {
    background: var(--green-bg);
    color: var(--green);
  }

  /* ── Progress Bar ── */
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    z-index: 1000;
    width: 0%;
    border-radius: 0 4px 4px 0;
  }

  /* ── Nav ── */
  .topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0 2rem;
  }

  .topnav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
  }

  .topnav-brand {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
  }

  .topnav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .topnav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }

  .topnav-links a:hover { color: var(--green); }

  /* ── Reveal Animations ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }

  /* ── Container ── */
  .container { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
  .container-wide { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

  /* ══════════════ HERO ══════════════ */
  .hero {
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(26, 141, 82, 0.07) 0%, rgba(37, 99, 235, 0.04) 40%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeUp 0.8s 0.1s both;
  }

  .hero-badge .pulse {
    width: 7px; height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    position: relative;
  }

  .hero-badge .pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  @keyframes ping {
    75%, 100% { transform: scale(2.2); opacity: 0; }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    line-height: 1.1;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    animation: fadeUp 0.8s 0.2s both;
  }

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

  .hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 580px;
    margin: 1.5rem auto 0;
    animation: fadeUp 0.8s 0.35s both;
  }

  .hero-ctas {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s both;
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(26, 141, 82, 0.2);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 141, 82, 0.25);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    color: var(--text);
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
  }
  .btn-outline:hover { border-color: var(--text-dim); background: var(--bg-warm); }

  /* ── Trust strip ── */
  .trust-strip {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 2rem 0;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.55s both;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
  }

  .trust-icon {
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
  }

  /* ══════════════ INTRO / PROBLEM ══════════════ */
  .intro-section {
    padding: 4rem 0;
  }

  .prose { color: var(--text-body); }
  .prose p { margin-bottom: 1.25rem; }
  .prose h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    color: var(--text);
    margin: 3rem 0 1.25rem;
    line-height: 1.2;
  }
  .prose h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--text);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
  }
  .prose strong { color: var(--text); font-weight: 600; }

  .callout {
    background: var(--bg-tint);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-weight: 500;
    color: var(--text);
    font-size: 1.05rem;
  }

  .callout.blue {
    background: var(--bg-blue-tint);
    border-left-color: var(--blue);
  }

  /* ── Stats ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
  }

  .stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }

  .stat-value {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--green);
    line-height: 1.1;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
  }

  /* ══════════════ PROVIDER CARDS ══════════════ */
  .provider-section { padding: 2rem 0 4rem; }

  .provider-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .provider-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
  }

  .provider-card .ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
  }

  .provider-card .ribbon.orange {
    background: var(--orange);
  }

  .provider-number {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }

  .provider-title {
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .provider-subtitle {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .provider-body { color: var(--text-body); margin-bottom: 2rem; }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1rem 1.15rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
  }

  .feature-item:hover { background: var(--bg-tint); }

  .feature-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
  }

  .feature-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
  }

  .feature-content span {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
  }

  .pricing-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
  }

  .price-tag {
    background: var(--bg-tint);
    border: 1px solid rgba(26, 141, 82, 0.15);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .price-tag .amount {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
  }

  .price-tag .period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
  }

  .price-context {
    font-size: 14px;
    color: var(--text-dim);
    flex: 1;
    min-width: 200px;
  }

  .provider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }

  .payment-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .payment-badge {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
  }

  /* ══════════════ COMPARISON ══════════════ */
  .comparison-section { padding: 3rem 0 4rem; }

  .comparison-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }

  .comparison-table thead th {
    background: var(--bg-warm);
    padding: 1.15rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table thead th:not(:first-child) { text-align: center; }

  .comparison-table tbody td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
  }

  .comparison-table tbody td:not(:first-child) { text-align: center; }

  .comparison-table tbody tr:last-child td { border-bottom: none; }
  .comparison-table tbody tr:hover { background: var(--bg); }

  .comparison-table td:first-child {
    color: var(--text-dim);
    font-weight: 500;
  }

  .tbl-check { color: var(--green); font-weight: 700; font-size: 18px; }
  .tbl-text { font-weight: 500; color: var(--text-body); font-size: 14px; }

  /* ── Verdict ── */
  .verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2.5rem 0;
  }

  .verdict-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.25s;
  }

  .verdict-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }

  .verdict-card h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .verdict-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
  }

  .verdict-note {
    text-align: center;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 15px;
    margin-top: 1rem;
  }

  /* ── Warning ── */
  .warning-card {
    background: var(--bg-red-tint);
    border: 1.5px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--radius);
    padding: 2.25rem;
    margin: 3rem 0;
  }

  .warning-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
  }

  .warning-card p {
    color: var(--text-body);
    font-size: 15px;
  }

  /* ══════════════ HOW TO SETUP ══════════════ */
  .setup-section { padding: 2rem 0 3rem; }

  .steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }

  .step-item {
    counter-increment: step;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s;
  }

  .step-item:hover { border-color: var(--green); }

  .step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
  }

  .step-num::before { content: counter(step); }

  .step-text strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
  }

  .step-text span {
    color: var(--text-dim);
    font-size: 15px;
  }

  /* ══════════════ FAQ ══════════════ */
  .faq-section { padding: 2rem 0 4rem; }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item:hover { border-color: var(--green); }

  .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 1rem;
  }

  .faq-q .arrow {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.2s;
    color: var(--text-dim);
    font-size: 14px;
  }

  .faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
    background: var(--green-bg);
    color: var(--green);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 400px;
  }

  .faq-a-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
  }

  /* ══════════════ BOTTOM LINE ══════════════ */
  .bottomline {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-warm);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .bottomline h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .bottomline h2 .accent { color: var(--green); }

  .bottomline p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
  }

  .bottomline-ctas {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  /* ── Footer ── */
  footer {
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
  }

  /* ══════════════ RESPONSIVE ══════════════ */
  @media (max-width: 768px) {
    .stats-row { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }
    .verdict-grid { grid-template-columns: 1fr; }
    .provider-card { padding: 1.75rem; }
    .provider-card .ribbon { display: none; }
    .topnav-links { display: none; }
    .pricing-row { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .container, .container-wide { padding: 0 1.25rem; }
    .hero { padding: 3.5rem 1.25rem 3rem; }
    .trust-strip { gap: 1.25rem; }
  }
