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

  :root {
    --green-950: oklch(18% 0.06 148);
    --green-800: oklch(28% 0.10 148);
    --green-700: oklch(36% 0.13 148);
    --green-600: oklch(44% 0.16 148);
    --green-500: oklch(54% 0.18 148);
    --green-400: oklch(64% 0.16 148);
    --green-200: oklch(88% 0.07 148);
    --green-100: oklch(94% 0.04 148);
    --green-50:  oklch(97% 0.02 148);
    --cream:     oklch(98% 0.012 85);
    --sand:      oklch(93% 0.022 85);
    --text:      oklch(18% 0.04 148);
    --text-mid:  oklch(42% 0.05 148);
    --text-soft: oklch(62% 0.04 148);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(249,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid oklch(90% 0.03 148);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--green-800);
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 32px; height: 32px;
    background: var(--green-700);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px; font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green-700); }
  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .btn-ghost {
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--green-700);
    background: transparent; border: none; cursor: pointer;
    padding: 8px 16px; border-radius: var(--radius-sm);
    transition: background 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { background: var(--green-100); }
  .btn-primary {
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    color: #fff;
    background: var(--green-700);
    border: none; cursor: pointer;
    padding: 10px 22px; border-radius: 100px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-primary:hover { background: var(--green-800); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: calc(100vh - 68px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 80px;
    gap: 64px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-100);
    border: 1px solid var(--green-200);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px; font-weight: 500;
    color: var(--green-700);
    margin-bottom: 24px;
  }
  .hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--green-500);
    border-radius: 50%;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.1;
    color: var(--green-950);
    margin-bottom: 20px;
    text-wrap: pretty;
  }
  .hero-title em {
    font-style: italic;
    color: var(--green-600);
  }
  .hero-desc {
    font-size: 17px; font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
    text-wrap: pretty;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .btn-hero {
    font-family: var(--sans); font-size: 16px; font-weight: 600;
    color: #fff;
    background: var(--green-700);
    border: none; cursor: pointer;
    padding: 14px 30px; border-radius: 100px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px oklch(40% 0.16 148 / 0.3);
    text-decoration: none;
  }
  .btn-hero:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 32px oklch(40% 0.16 148 / 0.35); }
  .btn-outline {
    font-family: var(--sans); font-size: 16px; font-weight: 500;
    color: var(--green-700);
    background: transparent;
    border: 1.5px solid var(--green-300, oklch(75% 0.12 148));
    cursor: pointer;
    padding: 13px 28px; border-radius: 100px;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
  }
  .btn-outline:hover { background: var(--green-100); }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid oklch(88% 0.04 148);
  }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--green-800);
  }
  .hero-stat-label {
    font-size: 13px; color: var(--text-soft); margin-top: 2px;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
  }
  .hero-dashboard {
    background: var(--green-950);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 32px 80px oklch(18% 0.06 148 / 0.3), 0 4px 20px oklch(18% 0.06 148 / 0.15);
    position: relative;
    z-index: 2;
  }
  .dash-topbar {
    display: flex; align-items: center; gap: 6px; margin-bottom: 20px;
  }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-title {
    font-size: 12px; color: oklch(70% 0.06 148);
    margin-left: 8px; font-weight: 500;
  }
  .dash-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px;
  }
  .dash-card {
    background: oklch(24% 0.06 148);
    border-radius: 12px;
    padding: 14px 16px;
  }
  .dash-card-label { font-size: 11px; color: oklch(55% 0.07 148); }
  .dash-card-value { font-size: 22px; font-weight: 600; color: #fff; margin-top: 4px; }
  .dash-card-sub { font-size: 11px; color: var(--green-400); margin-top: 2px; }
  .dash-chart {
    background: oklch(24% 0.06 148);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
  }
  .dash-chart-label { font-size: 11px; color: oklch(55% 0.07 148); margin-bottom: 12px; }
  .chart-bars {
    display: flex; align-items: flex-end; gap: 6px; height: 60px;
  }
  .chart-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: oklch(44% 0.14 148);
    transition: height 0.3s;
  }
  .chart-bar.active { background: var(--green-400); }
  .dash-list {
    background: oklch(24% 0.06 148);
    border-radius: 12px;
    padding: 14px 16px;
  }
  .dash-list-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid oklch(30% 0.06 148);
    font-size: 12px; color: oklch(75% 0.06 148);
  }
  .dash-list-item:last-child { border-bottom: none; }
  .dash-list-dot {
    width: 8px; height: 8px; border-radius: 50%;
    display: inline-block; margin-right: 8px;
  }
  .dash-list-val { color: var(--green-400); font-weight: 600; }

  .hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px oklch(18% 0.06 148 / 0.15);
    font-size: 13px;
    z-index: 3;
  }
  .hero-float-card.card-1 { bottom: -20px; left: -30px; min-width: 160px; }
  .hero-float-card.card-2 { top: -16px; right: -20px; min-width: 140px; }
  .float-label { font-size: 11px; color: var(--text-soft); }
  .float-value { font-weight: 600; color: var(--green-800); font-size: 16px; margin-top: 2px; }
  .float-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 11px; font-weight: 500;
    border-radius: 100px;
    padding: 2px 10px;
    margin-top: 6px;
  }

  /* ── BG BLOB ── */
  .hero-bg-blob {
    position: absolute;
    right: -120px; top: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse at 60% 40%, oklch(88% 0.07 148 / 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── SECTION COMMONS ── */
  section { position: relative; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .section-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 100px; padding: 5px 14px;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--green-950);
    text-wrap: pretty;
  }
  .section-title em { font-style: italic; color: var(--green-600); }
  .section-sub {
    font-size: 16px; font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 520px;
    text-wrap: pretty;
  }

  /* ── LOGOS ── */
  .logos-bar {
    background: var(--green-50);
    padding: 28px 0;
    border-top: 1px solid oklch(90% 0.03 148);
    border-bottom: 1px solid oklch(90% 0.03 148);
  }
  .logos-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; gap: 12px;
  }
  .logos-label {
    font-size: 12px; color: var(--text-soft); white-space: nowrap; margin-right: 12px;
    font-weight: 500;
  }
  .logos-list {
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  }
  .logo-item {
    font-family: var(--serif); font-size: 15px;
    color: oklch(70% 0.06 148);
    opacity: 0.7;
  }

  /* ── FEATURES ── */
  .features { padding: 100px 0; background: var(--cream); }
  .features-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: end;
    margin-bottom: 56px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: #fff;
    border: 1px solid oklch(92% 0.03 148);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  }
  .feature-card:hover {
    box-shadow: 0 12px 40px oklch(44% 0.16 148 / 0.1);
    transform: translateY(-3px);
    border-color: var(--green-200);
  }
  .feature-icon {
    width: 44px; height: 44px;
    background: var(--green-100);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-title { font-size: 16px; font-weight: 600; color: var(--green-900, var(--green-800)); margin-bottom: 8px; }
  .feature-desc { font-size: 14px; font-weight: 300; color: var(--text-soft); line-height: 1.6; }
  .feature-card.featured {
    background: var(--green-800);
    border-color: var(--green-800);
    color: #fff;
  }
  .feature-card.featured .feature-icon { background: oklch(36% 0.13 148); }
  .feature-card.featured .feature-title { color: #fff; }
  .feature-card.featured .feature-desc { color: oklch(75% 0.06 148); }

  /* ── STEPS ── */
  .steps { padding: 100px 0; background: var(--green-950); overflow: hidden; }
  .steps .section-tag { background: oklch(28% 0.10 148); color: var(--green-400); }
  .steps .section-title { color: #fff; }
  .steps .section-sub { color: oklch(65% 0.06 148); }
  .steps-header { margin-bottom: 64px; }
  .steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, oklch(36% 0.13 148), var(--green-500), oklch(36% 0.13 148));
    z-index: 0;
  }
  .step-item {
    text-align: center; padding: 0 20px;
    position: relative; z-index: 1;
  }
  .step-num {
    width: 80px; height: 80px;
    background: oklch(24% 0.08 148);
    border: 2px solid oklch(36% 0.13 148);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--green-400);
    transition: background 0.3s, border-color 0.3s;
  }
  .step-item:hover .step-num {
    background: var(--green-700);
    border-color: var(--green-500);
  }
  .step-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
  .step-desc { font-size: 14px; font-weight: 300; color: oklch(55% 0.06 148); line-height: 1.6; }

  /* ── PRICING / FEATURES INCLUDED ── */
  .included { padding: 100px 0; background: var(--cream); }
  .included-header { text-align: center; margin-bottom: 64px; }
  .included-header .section-sub { margin: 0 auto; }
  .included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .included-card {
    background: #fff;
    border: 1px solid oklch(92% 0.03 148);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .included-card:hover {
    box-shadow: 0 8px 32px oklch(44% 0.16 148 / 0.08);
    transform: translateY(-2px);
  }
  .inc-icon {
    width: 40px; height: 40px;
    background: var(--green-100);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .inc-title { font-size: 15px; font-weight: 600; color: var(--green-800); margin-bottom: 6px; }
  .inc-desc { font-size: 13px; font-weight: 300; color: var(--text-soft); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 100px 0; background: var(--green-50); }
  .testimonials-header { margin-bottom: 56px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testi-card {
    background: #fff;
    border: 1px solid oklch(92% 0.03 148);
    border-radius: var(--radius);
    padding: 28px;
  }
  .testi-stars { color: oklch(72% 0.14 75); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-quote {
    font-size: 15px; font-weight: 300; color: var(--text-mid);
    line-height: 1.75; margin-bottom: 24px;
    font-style: italic;
    text-wrap: pretty;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-200);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; color: var(--green-700);
  }
  .testi-name { font-size: 14px; font-weight: 600; color: var(--green-800); }
  .testi-role { font-size: 12px; color: var(--text-soft); }

  /* ── CTA ── */
  .cta-section {
    padding: 100px 0;
    background: var(--green-800);
    position: relative; overflow: hidden;
  }
  .cta-blob {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, oklch(44% 0.16 148 / 0.4) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-blob-2 {
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, oklch(28% 0.10 148 / 0.5) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-inner { text-align: center; position: relative; z-index: 1; }
  .cta-section .section-tag { background: oklch(36% 0.13 148); color: var(--green-200); }
  .cta-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4.5vw, 56px);
    color: #fff; line-height: 1.15; margin-bottom: 20px;
    text-wrap: pretty;
  }
  .cta-title em { font-style: italic; color: var(--green-300, oklch(75% 0.14 148)); }
  .cta-sub { font-size: 17px; font-weight: 300; color: oklch(75% 0.07 148); margin-bottom: 40px; text-wrap: pretty; }
  .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .btn-cta-primary {
    font-family: var(--sans); font-size: 16px; font-weight: 600;
    color: var(--green-950);
    background: var(--green-200);
    border: none; cursor: pointer;
    padding: 16px 36px; border-radius: 100px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-cta-primary:hover { background: var(--green-100); transform: translateY(-2px); }
  .btn-cta-ghost {
    font-family: var(--sans); font-size: 16px; font-weight: 500;
    color: var(--green-200);
    background: transparent;
    border: 1.5px solid oklch(44% 0.14 148);
    cursor: pointer;
    padding: 15px 34px; border-radius: 100px;
    transition: background 0.2s;
    text-decoration: none;
  }
  .btn-cta-ghost:hover { background: oklch(28% 0.10 148); }

  /* ── FOOTER ── */
  footer {
    background: var(--green-950);
    padding: 64px 48px 32px;
    color: oklch(60% 0.06 148);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px; margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid oklch(28% 0.08 148);
  }
  .footer-brand .nav-logo { color: oklch(80% 0.07 148); margin-bottom: 16px; }
  .footer-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: oklch(52% 0.06 148); }
  .footer-col h4 { font-size: 13px; font-weight: 600; color: oklch(80% 0.07 148); margin-bottom: 16px; letter-spacing: 0.05em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 14px; color: oklch(52% 0.06 148); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--green-400); }
  .footer-bottom {
    max-width: 1200px; margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: oklch(40% 0.05 148);
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up {
    opacity: 0;
    animation: fadeUp 0.65s ease forwards;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }
  .delay-4 { animation-delay: 0.5s; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
    .features-header { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
    .included-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .container { padding: 0 24px; }
    footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
