:root {
    --green: #79c942;
    --green-dark: #4f9e24;
    --green-soft: #eff9e9;
    --teal: #14a7a0;
    --navy: #0a2233;
    --navy-2: #12384e;
    --text: #20313d;
    --muted: #687884;
    --line: #e3e9ed;
    --surface: #ffffff;
    --surface-soft: #f6f9fa;
    --shadow: 0 22px 60px rgba(10, 34, 51, .12);
    --shadow-soft: 0 12px 34px rgba(10, 34, 51, .08);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 5.7vw, 5.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.45rem); }
h3 { font-size: 1.28rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 105px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--navy); }
.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { max-width: 660px; margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.section-heading.center p { margin-right: auto; margin-left: auto; }
.eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 82px;
    transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled {
    height: 70px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 30px rgba(10,34,51,.08);
    backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; position: relative; z-index: 1002; }
.brand img { width: 154px; height: auto; }
.nav-wrap { display: flex; align-items: center; gap: 30px; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a {
    position: relative;
    padding: 12px 0;
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    font-weight: 700;
}
.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after { transform: scaleX(1); }
.site-header.scrolled .main-nav a { color: var(--navy); }
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    color: var(--navy);
    background: var(--green);
    border-radius: 999px;
    font-size: .87rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(121,201,66,.28);
    transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { background: #8bd754; transform: translateY(-2px); }
.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
}
.site-header.scrolled .menu-toggle { color: var(--navy); border-color: var(--line); }
.menu-toggle span { position: absolute; left: 12px; width: 20px; height: 2px; background: currentColor; transition: .25s ease; }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-open .menu-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.page-hero {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}
.page-hero::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.045);
}
.page-hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(20,167,160,.34), transparent 31%),
        linear-gradient(90deg, rgba(5,24,36,.98) 0%, rgba(8,34,51,.91) 50%, rgba(8,34,51,.55) 100%);
}
.page-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 70px; padding-top: 130px; padding-bottom: 85px; }
.page-hero-copy { max-width: 750px; }
.page-hero .eyebrow { color: var(--green); }
.page-hero h1 { margin-bottom: 24px; color: #fff; }
.page-hero h1 span { color: var(--green); }
.page-hero-copy > p { max-width: 660px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--green); box-shadow: 0 15px 35px rgba(121,201,66,.25); }
.btn-primary:hover { background: #8bd754; box-shadow: 0 18px 42px rgba(121,201,66,.34); }
.btn-light { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.btn-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.48); }
.btn-outline { color: var(--navy); background: transparent; border-color: #cbd6dc; }
.btn-outline:hover { border-color: var(--green); }
.btn svg { width: 18px; height: 18px; }

.hero-card {
    position: relative;
    padding: 30px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}
.hero-card-label { margin-bottom: 25px; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-card h2 { margin-bottom: 18px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.hero-card p { margin-bottom: 26px; color: rgba(255,255,255,.73); }
.hero-card-list { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.hero-card-list li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 700; }
.hero-card-list svg { flex: 0 0 auto; width: 20px; margin-top: 2px; color: var(--green); }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.intro-visual { position: relative; min-height: 500px; }
.intro-image { position: absolute; inset: 0 65px 55px 0; overflow: hidden; background: var(--navy); border-radius: 26px; box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.intro-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(10,34,51,.86)); }
.intro-stat {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(340px, 80%);
    padding: 26px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.intro-stat strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.15rem; }
.intro-stat p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.intro-copy h2 { margin-bottom: 23px; }
.intro-copy > p { margin-bottom: 25px; color: var(--muted); font-size: 1.04rem; }
.check-list { display: grid; gap: 15px; padding: 0; margin: 0 0 31px; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check-list svg { flex: 0 0 auto; width: 21px; margin-top: 2px; color: var(--green-dark); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
    position: relative;
    min-height: 300px;
    padding: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(10,34,51,.03);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 150px; height: 150px; background: var(--green-soft); border-radius: 50%; transition: transform .3s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(121,201,66,.6); box-shadow: var(--shadow-soft); }
.feature-card:hover::after { transform: scale(1.25); }
.feature-icon { position: relative; z-index: 1; width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 27px; color: var(--green-dark); background: var(--green-soft); border-radius: 16px; }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3, .feature-card p { position: relative; z-index: 1; }
.feature-card h3 { margin-bottom: 14px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { counter-increment: process; position: relative; padding: 30px 24px; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
.process-card::before { content: "0" counter(process); display: inline-flex; margin-bottom: 32px; color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.process-card h3 { margin-bottom: 14px; color: #fff; letter-spacing: -.02em; }
.process-card p { margin-bottom: 0; color: rgba(255,255,255,.65); font-size: .92rem; }
.process-card:not(:last-child)::after { content: ""; position: absolute; top: 38px; right: -17px; width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 7px rgba(121,201,66,.13); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.split-panel { padding: 48px; border-radius: 26px; }
.split-panel.dark { color: #fff; background: linear-gradient(145deg, var(--navy), var(--navy-2)); }
.split-panel.light { background: var(--green-soft); }
.split-panel .eyebrow { color: var(--green-dark); }
.split-panel.dark .eyebrow { color: var(--green); }
.split-panel h2 { margin-bottom: 22px; }
.split-panel.dark h2 { color: #fff; }
.split-panel p { margin-bottom: 28px; color: var(--muted); }
.split-panel.dark p { color: rgba(255,255,255,.72); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.pill-list li { padding: 9px 13px; color: var(--navy); background: #fff; border: 1px solid rgba(10,34,51,.08); border-radius: 999px; font-size: .8rem; font-weight: 800; }
.dark .pill-list li { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); }

.stats-band { background: var(--surface-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { padding: 30px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.stat-card strong { display: block; margin-bottom: 8px; color: var(--green-dark); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1; }
.stat-card span { color: var(--muted); font-size: .87rem; font-weight: 700; }

.faq-list { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; color: var(--navy); background: transparent; border: 0; text-align: left; font-weight: 800; }
.faq-question span:last-child { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; color: var(--green-dark); background: var(--green-soft); border-radius: 50%; transition: transform .25s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 24px 23px; color: var(--muted); }
.faq-answer-inner p { margin-bottom: 0; }

.cta-section { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(121,201,66,.18), transparent 30%); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 55px; padding: 78px 0; }
.cta-copy { max-width: 720px; }
.cta-copy h2 { margin-bottom: 18px; color: #fff; }
.cta-copy p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.cta-actions { flex: 0 0 auto; display: flex; gap: 12px; }

.site-footer { color: rgba(255,255,255,.68); background: #061925; }
.footer-top { display: grid; grid-template-columns: 1.25fr .75fr .75fr .9fr; gap: 45px; padding: 72px 0 50px; }
.footer-brand img { width: 160px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; font-size: .9rem; }
.footer-column h3 { margin-bottom: 18px; color: #fff; font-size: .92rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .86rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--green); transform: translateX(3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: .8rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--green); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
    .main-nav { gap: 18px; }
    .main-nav a { font-size: .82rem; }
    .page-hero-grid { gap: 35px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:nth-child(2)::after { display: none; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 860px) {
    .section { padding: 82px 0; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .nav-wrap {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 90px 28px 40px;
        background: rgba(6,25,37,.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: .25s ease;
    }
    .menu-open .nav-wrap { opacity: 1; visibility: visible; transform: none; }
    .main-nav { flex-direction: column; gap: 3px; width: 100%; max-width: 420px; }
    .main-nav a, .site-header.scrolled .main-nav a { width: 100%; padding: 15px; color: #fff; font-size: 1.25rem; text-align: center; }
    .page-hero { min-height: auto; }
    .page-hero-grid { grid-template-columns: 1fr; min-height: 760px; padding-top: 135px; padding-bottom: 85px; }
    .hero-card { max-width: 620px; }
    .intro-grid, .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-visual { min-height: 455px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .cta-actions { flex-wrap: wrap; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .site-header { height: 70px; }
    .brand img { width: 137px; }
    .page-hero-grid { min-height: 720px; padding-top: 110px; gap: 42px; }
    .hero-actions, .cta-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .hero-card { padding: 24px; }
    .cards-grid, .process-grid, .stats-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .process-card::after { display: none; }
    .intro-visual { min-height: 395px; }
    .intro-image { inset: 0 30px 60px 0; }
    .intro-stat { padding: 20px; }
    .split-panel { padding: 32px 24px; }
    .cta-inner { padding: 66px 0; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
    .footer-brand { grid-column: 1/-1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
