:root {
    --green-dark: #1a3a2a;
    --green-mid: #2d6a4f;
    --green-accent: #40916c;
    --green-light: #74c69d;
    --green-pale: #d8f3dc;
    --slate: #2c3e50;
    --slate-mid: #4a5568;
    --slate-light: #718096;
    --white: #ffffff;
    --off-white: #f8faf9;
    --text-dark: #1a2332;
    --text-body: #374151;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ───────────────────────────────────────────── */
.land-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 58, 42, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(116,198,157,0.15);
    padding: 0 2rem;
}
.land-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.5rem;
}
.land-brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.land-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: 0.04em;
}
.land-brand-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}
.land-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.land-nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.land-nav-links a:hover { color: var(--green-light); }
.land-nav-cta {
    background: var(--green-accent);
    color: var(--white) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s !important;
}
.land-nav-cta:hover { background: var(--green-mid) !important; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e4d35 50%, var(--slate) 100%);
    color: var(--white);
    padding: 100px 2rem 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2374c69d' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-badge {
    display: inline-block;
    background: rgba(116,198,157,0.18);
    border: 1px solid rgba(116,198,157,0.35);
    color: var(--green-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.hero h1 em {
    font-style: normal;
    color: var(--green-light);
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.btn-primary-land {
    background: var(--green-accent);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary-land:hover { background: var(--green-mid); transform: translateY(-1px); color: var(--white); }
.btn-ghost-land {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.9);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}
.btn-ghost-land:hover { border-color: var(--green-light); background: rgba(116,198,157,0.08); color: white; }

/* stats strip */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-light);
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── SECTION SHARED ────────────────────────────────── */
.section { padding: 80px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--slate-light);
    max-width: 560px;
    line-height: 1.8;
}
.alt-bg { background: var(--off-white); }

/* ── HOW IT WORKS ──────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: var(--shadow); }
.step-num {
    width: 40px;
    height: 40px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.92rem; color: var(--slate-light); line-height: 1.7; }

/* ── REPORT PREVIEW ────────────────────────────────── */
.report-preview {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}
.report-preview-header {
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f56; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.report-preview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.preview-panel {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.preview-panel:nth-child(odd) { border-right: 1px solid var(--border); }
.preview-panel-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
}
.preview-panel p {
    font-size: 0.88rem;
    color: var(--slate-mid);
    line-height: 1.65;
}
.preview-panel ul {
    list-style: none;
    font-size: 0.88rem;
    color: var(--slate-mid);
}
.preview-panel ul li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}
.preview-panel ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-accent);
}

/* ── FEATURES ──────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--green-light);
}
.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.7; }

/* ── PRICING ───────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
    border-color: var(--green-accent);
    box-shadow: var(--shadow);
}
.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-accent);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--slate-light); }
.plan-desc { font-size: 0.88rem; color: var(--slate-light); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.plan-features li::before {
    content: '✓';
    color: var(--green-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.plan-features li.no::before { content: '✕'; color: #cbd5e0; }
.plan-features li.no { color: var(--slate-light); }
.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1.5px solid var(--green-accent);
    color: var(--green-accent);
    background: transparent;
    cursor: pointer;
}
.btn-plan:hover { background: var(--green-accent); color: var(--white); }
.btn-plan.filled { background: var(--green-accent); color: var(--white); }
.btn-plan.filled:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-q .chevron { color: var(--green-accent); font-size: 1.1rem; transition: transform 0.2s; }
.faq-q.open .chevron { transform: rotate(180deg); }
.faq-a { display: none; font-size: 0.92rem; color: var(--slate-light); line-height: 1.8; margin-top: 0.75rem; }
.faq-a.open { display: block; }

/* ── EMAIL CAPTURE ─────────────────────────────────── */
.capture-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--slate) 100%);
    color: var(--white);
    padding: 80px 2rem;
    text-align: center;
}
.capture-inner { max-width: 540px; margin: 0 auto; }
.capture-inner h2 { font-size: 2rem; margin-bottom: 1rem; }
.capture-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.capture-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.capture-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.capture-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.capture-form input[type="email"]:focus { border-color: var(--green-light); }
.capture-form button {
    background: var(--green-accent);
    color: var(--white);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.capture-form button:hover { background: var(--green-mid); }
.capture-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}
.alert-success {
    background: rgba(116,198,157,0.2);
    border: 1px solid var(--green-light);
    color: var(--green-light);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}
.alert-error {
    background: rgba(255,100,100,0.1);
    border: 1px solid rgba(255,100,100,0.4);
    color: #fc8181;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ── FOOTER ────────────────────────────────────────── */
.land-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.55);
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.85rem;
}
.land-footer-brand {
    color: var(--green-light);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: block;
}
.land-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.land-footer-links a { color: rgba(255,255,255,0.55); transition: color 0.2s; font-size: 0.85rem; }
.land-footer-links a:hover { color: var(--green-light); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 640px) {
    .report-preview-body { grid-template-columns: 1fr; }
    .preview-panel:nth-child(odd) { border-right: none; }
    .hero-stats { gap: 1.5rem; }
    .land-brand-sub { display: none; }
}

/* ── VIDEO DEMO SECTION ────────────────────────────── */
.video-section { background: var(--green-dark); }
.video-section .section-tag { background: rgba(116,198,157,0.15); color: var(--green-light); }
.video-section .section-title { color: var(--white); }
.video-section .section-desc { color: rgba(255,255,255,0.75); }

.video-wrapper {
    max-width: 860px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(116,198,157,0.2);
}

.demo-video {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #000;
}

.video-caption {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 0;
}
.video-caption a {
    color: var(--green-light);
    text-decoration: none;
    font-weight: 600;
}
.video-caption a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .video-wrapper { border-radius: 10px; }
    .demo-video { border-radius: 10px; }
}
