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

:root {
    --green:        #009966;
    --green-light:  #f4fcf9;
    --green-dark:   #007a52;
    --green-darker: #005c3d;
    --white:        #ffffff;
    --off-white:    #f9fafb;
    --black:        #040404;
    --text:         #111827;
    --text-mid:     #374151;
    --text-light:   #6b7280;
    --border:       #e5e7eb;

    --font-display: 'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    --max:       1200px;
    --pad-x:     clamp(1.5rem, 5vw, 3rem);
    --section-y: clamp(64px, 8vw, 104px);

    --radius:    10px;
    --radius-lg: 20px;
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── UTILITIES ─────────────────────────────── */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.green { color: var(--green); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 6px 14px;
    border-radius: 100px;
}
.tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,153,102,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

/* scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--black);
    letter-spacing: -0.01em;
}
.logo-dot { color: var(--green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--pad-x) 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0;
}
.mobile-nav a:last-child { margin-top: 0.5rem; text-align: center; }

/* ─── HERO ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,153,102,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,153,102,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0,153,102,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: var(--section-y) 0;
    margin: 0 auto;
    text-align: center;
}
.hero-tag { margin-bottom: 2rem; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 1.5rem;
}
.hero-title .label {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.75;
}
.hero-statement {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.hero-statement em {
    font-style: normal;
    color: var(--green);
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ─── TICKER ─────────────────────────────────── */
.ticker {
    background: var(--green);
    padding: 14px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 35s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
}
.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    flex-shrink: 0;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION HEADERS ────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { margin-bottom: 1rem; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 0.97rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─── PAIN SECTION ───────────────────────────── */
.section-pain {
    padding: var(--section-y) 0;
    background: var(--off-white);
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.25rem;
}
.pain-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    transition: box-shadow 0.25s, transform 0.25s var(--ease);
}
.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,153,102,0.12);
}
.pain-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}
.pain-num-badge {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}
.pain-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.pain-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── STATEMENT ──────────────────────────────── */
.section-statement {
    padding: var(--section-y) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.statement-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--black);
    max-width: 860px;
    margin: 0 auto 2rem;
    text-align: center;
}
.statement-title .highlight {
    color: var(--green);
    font-size: 0.72em;
    font-style: italic;
    display: block;
    line-height: 1.15;
    margin-top: 0.6rem;
}
.statement-title .highlight::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: 0 auto 0.6rem;
}
.statement-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 580px;
    line-height: 1.8;
    margin: 0 auto;
    text-align: center;
}

/* ─── SERVICES ───────────────────────────────── */
.section-services {
    padding: var(--section-y) 0;
    background: var(--green-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.09); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── DIFFERENTIATOR ─────────────────────────── */
.section-diff { padding: var(--section-y) 0; background: var(--white); }
.diff-inner {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.diff-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    text-align: left;
}
.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.25s, background 0.25s;
}
.diff-item:hover { border-color: var(--green); background: var(--green-light); }
.diff-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.diff-item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.diff-item-text p { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; }

.diff-visual {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
}
.diff-visual-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.diff-col-label {
    flex: 1;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
}
.diff-col-label.bad  { background: #fef2f2; color: #dc2626; }
.diff-col-label.good { background: var(--green-light); color: var(--green-dark); }

.compare-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}
.compare-bad, .compare-good {
    flex: 1;
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
}
.compare-bad  { color: #b91c1c; background: #fef2f2; }
.compare-good { color: var(--green-darker); background: var(--green-light); font-weight: 500; }
.compare-vs {
    display: flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
}

/* ─── HOW IT WORKS ───────────────────────────── */
.section-how { padding: var(--section-y) 0; background: var(--off-white); }

.steps-timeline {
    max-width: 680px;
    margin: 3.5rem auto 0;
    display: flex;
    flex-direction: column;
}
.step-row {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
}
.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.step-line {
    width: 2px;
    flex: 1;
    background: var(--green);
    opacity: 0.2;
    margin: 4px 0;
}
.step-line-short {
    width: 2px;
    height: 24px;
    background: var(--green);
    opacity: 0.2;
    margin-top: 4px;
}
.step-card {
    padding: 0 0 2rem 0;
    flex: 1;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    padding-top: 0.6rem;
}
.step-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── FAQ ────────────────────────────────────── */
.section-faq { padding: var(--section-y) 0; background: var(--white); }
.faq-list {
    max-width: 700px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--green); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: var(--white);
    transition: background 0.2s;
    gap: 1rem;
}
.faq-item.open .faq-question { background: var(--green-light); }
.faq-question h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}
.faq-item.open .faq-icon {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ─── FINAL CTA ──────────────────────────────── */
.section-cta {
    padding: var(--section-y) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,153,102,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-inner .tag {
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.2);
}
.cta-inner .tag::before { background: rgba(255,255,255,0.45); }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--white);
    margin: 1.5rem 0 1rem;
}
.cta-title .green { color: var(--green); }
.cta-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.cta-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.01em;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
}
.footer-logo span { color: var(--green); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

/* ─── FORMS ──────────────────────────────────── */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    text-align: left;
}
.hero-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.hero-form input,
.cta-form input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.hero-form input { background: var(--white); }
.hero-form input:focus { border-color: var(--green); }
.hero-form input::placeholder { color: var(--text-light); }

.hero-form-btn { width: 100%; justify-content: center; }

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.cta-form input {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus {
    border-color: var(--green);
    background: rgba(255,255,255,0.12);
}
.cta-form .btn { width: 100%; justify-content: center; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .diff-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .nav-links { display: none; }
    .nav-cta .btn { display: none; }
    .hamburger { display: flex; }
}
@media (max-width: 640px) {
    .hero-content { text-align: left; }
    .hero-actions { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-form { margin-left: 0; margin-right: 0; }
    .hero-trust { flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; justify-content: flex-start; }
    .trust-item { justify-content: center; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
}
