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

  :root {
    --green-50:  #F5F2E8;
    --green-100: #E2DFC8;
    --green-200: #C5C49A;
    --green-500: #4A5E3A;
    --green-700: #2E3D22;
    --green-800: #1E2A15;
    --green-900: #111A0C;
    --amber-25:  #FFFBF2;
    --amber-100: #FDE8B0;
    --amber-200: #F9CC6A;
    --amber-400: #E8A020;
    --amber-500: #C47F10;
    --amber-700: #7A4E05;
    --white: #FFFFFF;
    --text-primary: #1E2A15;
    --text-secondary: #4A5E3A;
    --text-muted: #7A8C6A;
    --border: rgba(46, 61, 34, 0.12);
    --border-strong: rgba(46, 61, 34, 0.22);
    --surface: #F8F6F0;
    --surface-2: #F0EDE3;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo img { height: 38px; }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green-700); }
  .nav-cta {
    background: var(--green-700) !important;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--green-800) !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5vw 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #F8F6F0 100%);
  }
  .hero::after {
    content: '';
    position: absolute; top: -100px; right: -60px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber-100);
    color: var(--amber-700);
    border: 1px solid rgba(232,160,32,0.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  .pulse-dot {
    width: 7px; height: 7px;
    background: var(--amber-400);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.13;
    color: var(--green-800);
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
  }
  .hero h1 em { color: var(--amber-400); font-style: normal; }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.4rem;
    line-height: 1.78;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green-700);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px; font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(46,61,34,0.22);
  }
  .btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,61,34,0.3); }
  .btn-secondary {
    border: 1.5px solid var(--border-strong);
    color: var(--green-700);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { background: var(--surface); border-color: var(--green-500); }
  .hero-stats {
    display: flex; gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-700); }
  .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.03em; margin-top: 2px; }

  /* HERO VISUAL */
  .hero-visual { position: relative; z-index: 1; }
  .dashboard-mock {
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(46,61,34,0.13);
  }
  .dash-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .dash-title { font-weight: 600; font-size: 14px; color: var(--green-800); }
  .live-badge {
    background: #E8F5EE; color: #1A6B3C;
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 50px;
    display: flex; align-items: center; gap: 5px;
  }
  .live-badge::before { content: ''; width: 6px; height: 6px; background: #22C55E; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
  .dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .metric-card { background: var(--surface); border-radius: 12px; padding: 12px; }
  .metric-val { font-size: 20px; font-weight: 700; color: var(--green-700); font-family: 'Playfair Display', serif; }
  .metric-label { font-size: 10px; color: var(--text-muted); font-weight: 500; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
  .metric-trend { font-size: 11px; color: #1A6B3C; font-weight: 600; margin-top: 4px; }
  .dash-messages { display: flex; flex-direction: column; gap: 8px; }
  .msg-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 10px;
    border-left: 3px solid transparent;
  }
  .msg-item.resolved { border-left-color: #22C55E; }
  .msg-item.upsell { border-left-color: var(--amber-400); }
  .msg-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0;
    color: #fff;
  }
  .msg-body { flex: 1; min-width: 0; }
  .msg-name { font-size: 12px; font-weight: 600; color: var(--green-800); }
  .msg-text { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .msg-tag {
    font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 50px;
    margin-top: 4px; display: inline-block;
  }
  .tag-green { background: #E8F5EE; color: #1A6B3C; }
  .tag-amber { background: var(--amber-100); color: var(--amber-700); }
  .tag-purple { background: #EEE8FF; color: #5533CC; }
  .float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(46,61,34,0.14);
    font-size: 12px; z-index: 2;
  }
  .float-val { font-size: 18px; font-weight: 700; color: var(--green-700); font-family: 'Playfair Display', serif; }
  .float-lbl { font-size: 10px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

  /* INTEGRATIONS */
  .logos-strip {
    padding: 2rem 5vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap;
  }
  .strip-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .int-pill {
    display: flex; align-items: center; gap: 7px;
    padding: 7px 16px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    font-size: 13px; font-weight: 500; color: var(--text-secondary);
  }
  .i-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

  /* PROBLEM */
  .problem {
    padding: 6rem 5vw;
    background: var(--green-800);
    color: #fff;
    position: relative; overflow: hidden;
  }
  .problem::before {
    content: '';
    position: absolute; top: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .problem-inner { max-width: 860px; margin: 0 auto; text-align: center; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 1rem;
    display: block;
  }
  .problem h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.2;
    color: #fff; margin-bottom: 1rem;
  }
  .problem-sub { font-size: 1.02rem; color: rgba(255,255,255,0.58); margin-bottom: 3rem; }
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .pain-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem; text-align: left;
  }
  .pain-icon {
    width: 40px; height: 40px;
    background: rgba(232,160,32,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 1rem;
  }
  .pain-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
  .pain-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

  /* FEATURES */
  .features { padding: 7rem 5vw; background: var(--white); }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--green-800);
    margin-bottom: 0.8rem; line-height: 1.2;
  }
  .section-header p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
  }
  .feature-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--amber-400);
    opacity: 0; transition: opacity 0.25s;
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(46,61,34,0.1); border-color: var(--border-strong); }
  .feature-card:hover::after { opacity: 1; }
  .feature-card.featured {
    background: var(--green-700);
    border-color: var(--green-700);
  }
  .feature-card.featured::after { opacity: 1; }
  .feature-icon {
    width: 46px; height: 46px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 1.2rem;
  }
  .feature-card.featured .feature-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
  .feature-card h3 { font-size: 17px; font-weight: 600; color: var(--green-800); margin-bottom: 0.55rem; }
  .feature-card.featured h3 { color: #fff; }
  .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
  .feature-card.featured p { color: rgba(255,255,255,0.68); }
  .feature-tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    padding: 4px 12px; border-radius: 50px;
    margin-top: 1rem;
    background: rgba(232,160,32,0.15); color: var(--amber-700);
  }
  .feature-card.featured .feature-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.88); }

  /* HOW IT WORKS */
  .how-it-works { padding: 7rem 5vw; background: var(--surface); }
  .steps-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; position: relative; margin-top: 4rem;
  }
  .steps-row::before {
    content: '';
    position: absolute; top: 36px;
    left: calc(16.66% + 36px); right: calc(16.66% + 36px);
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0, var(--border-strong) 8px, transparent 8px, transparent 16px);
  }
  .step { text-align: center; padding: 0 2rem; }
  .step-num {
    width: 72px; height: 72px;
    background: var(--white);
    border: 2px solid var(--green-200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--green-700);
    margin: 0 auto 1.5rem;
    position: relative; z-index: 1;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .step:hover .step-num { border-color: var(--amber-400); box-shadow: 0 0 0 4px rgba(232,160,32,0.12); }
  .step h3 { font-size: 17px; font-weight: 600; color: var(--green-800); margin-bottom: 0.6rem; }
  .step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

  /* ANALYTICS */
  .analytics-section {
    padding: 7rem 5vw;
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .analytics-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--green-800);
    line-height: 1.2; margin-bottom: 1rem;
  }
  .analytics-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }
  .analytics-list { display: flex; flex-direction: column; gap: 1rem; }
  .analytics-item { display: flex; align-items: flex-start; gap: 12px; }
  .check-circle {
    width: 22px; height: 22px; background: var(--green-700); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    font-size: 11px; color: #fff; font-weight: 700;
  }
  .analytics-item p { font-size: 14px; color: var(--text-secondary); }
  .analytics-visual {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 24px; padding: 2rem;
  }
  .av-header { font-size: 13px; font-weight: 600; color: var(--green-800); margin-bottom: 1.5rem; }
  .bar-chart { display: flex; flex-direction: column; gap: 12px; }
  .bar-row { display: flex; align-items: center; gap: 12px; }
  .bar-label { font-size: 12px; color: var(--text-muted); width: 84px; flex-shrink: 0; }
  .bar-track { flex: 1; background: var(--green-100); border-radius: 50px; height: 10px; overflow: hidden; }
  .bar-fill { height: 100%; border-radius: 50px; }
  .bar-fill.g { background: var(--green-700); }
  .bar-fill.a { background: var(--amber-400); }
  .bar-fill.l { background: var(--green-200); }
  .bar-val { font-size: 12px; font-weight: 600; color: var(--green-700); width: 36px; text-align: right; }
  .a-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.4rem; }
  .a-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1rem; }
  .a-card-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--green-700); }
  .a-card-lbl { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

  /* UPSELLING */
  .upselling {
    padding: 7rem 5vw;
    background: var(--amber-25);
    border-top: 1px solid rgba(232,160,32,0.2);
    border-bottom: 1px solid rgba(232,160,32,0.2);
  }
  .upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .upsell-cards { display: flex; flex-direction: column; gap: 1rem; }
  .upsell-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .upsell-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(46,61,34,0.08); }
  .upsell-emo {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--amber-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .upsell-card h4 { font-size: 14px; font-weight: 600; color: var(--green-800); }
  .upsell-card p { font-size: 12px; color: var(--text-muted); }
  .upsell-rev {
    margin-left: auto; flex-shrink: 0;
    background: #E8F5EE; color: #1A6B3C;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
  }
  .upsell-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--green-800);
    line-height: 1.2; margin-bottom: 1rem;
  }
  .upsell-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }

  /* CTA */
  .cta-section {
    padding: 7rem 5vw;
    background: var(--green-800);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; bottom: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,160,32,0.14) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff; font-weight: 700;
    line-height: 1.18; margin-bottom: 1rem;
  }
  .cta-section > p { font-size: 1rem; color: rgba(255,255,255,0.58); margin-bottom: 2.5rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-amber {
    background: var(--amber-400); color: var(--green-900);
    padding: 16px 36px; border-radius: 50px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(232,160,32,0.35);
  }
  .btn-amber:hover { background: var(--amber-200); transform: translateY(-2px); }
  .btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.82);
    padding: 15px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }
  .payment-note { margin-top: 2rem; font-size: 13px; color: rgba(255,255,255,0.35); }

  /* FOOTER */
  footer { background: var(--green-900); padding: 4rem 5vw 2.5rem; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 2.5rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 240px; }
  .footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.42); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.88); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; }
    .hero-visual { display: none; }
    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .analytics-section { grid-template-columns: 1fr; }
    .upsell-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .steps-row::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links li:not(:last-child) { display: none; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
  }