:root {
    --bg-left: #fff15d;
    --bg-right: #079258;
    --accent: #079258;
    --accent-dk: #055e39;
    --accent-lt: #e6f5ee;
    --text: #0b2b1a;
    --muted: #55686a;
    --border: rgba(11, 43, 26, .07);
    --hdr-h: 80px;
    --ftr-h: 44px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f4f6f5;
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--hdr-h);
    background: linear-gradient(90deg, var(--bg-left) 0%, var(--bg-right) 100%);
    z-index: 300;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
    flex-shrink: 0;
}

.company-info {
    line-height: 1;
}

.company-name {
    font-weight: 800;
    font-size: 15px;
    color: #0b2b1a;
}

.company-sub {
    font-size: 12.5px;
    color: #0b2b1aaa;
    margin-top: 3px;
}

/* ── PAGE BODY ── */
.page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: var(--hdr-h);
    padding-bottom: var(--ftr-h);
}

.hero-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 52px 32px 48px;
    gap: 64px;
}

/* ── HERO TEXT ── */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-text h1 .hl {
    color: var(--accent);
}

.hero-text p {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--bg-left), var(--bg-right));
    color: var(--accent-dk);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 24px;
    border-radius: 7px;
    text-decoration: none;
    transition: transform .12s, box-shadow .12s;
    box-shadow: 0 2px 10px rgba(7, 146, 88, .18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 146, 88, .28);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    width: 100%;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-value span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ── FEATURES SECTION ── */
.features-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Nav buttons */
.carousel-nav {
    display: flex;
    gap: 6px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .12s, border-color .12s, transform .1s;
}

.nav-btn:hover {
    background: var(--accent-lt);
    border-color: rgba(7, 146, 88, .25);
    transform: scale(1.06);
}

.nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

/* ── CAROUSEL ── */
.carousel-viewport {
    overflow: hidden;
    border-radius: 14px;
}

.carousel-track {
    display: flex;
    gap: 14px;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.feature-card {
    flex: 0 0 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s, border-color .18s;
    cursor: default;
    min-height: 160px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-left), var(--bg-right));
    opacity: 0;
    transition: opacity .2s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(11, 43, 26, .1);
    border-color: rgba(7, 146, 88, .18);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--accent-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: background .15s;
}

.feature-card:hover .feature-icon {
    background: rgba(7, 146, 88, .18);
}



.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
}

/* ── DOTS ── */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding-top: 4px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c8d8d2;
    cursor: pointer;
    transition: background .2s, transform .2s, width .25s;
    border: none;
}

.dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 4px;
}

/* ── FOOTER ── */
.site-footer {
    position: fixed;
    inset: auto 0 0 0;
    height: var(--ftr-h);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    color: rgba(11, 43, 26, .4);
    background: #f4f6f5;
    border-top: 1px solid var(--border);
    z-index: 100;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .hero-wrap {
        padding: 36px 20px 32px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .stats {
        gap: 20px;
    }

    .feature-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        min-height: unset;
    }
}