:root {
    --dark: #0b2f22;
    --green: #168a55;
    --light: #52d68a;
    --bg: #f4fbf6;
    --text: #17211c;
    --muted: #5f7167
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial,"Segoe UI",sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.65
}

.container {
    width: min(1160px,calc(100% - 40px));
    margin: auto
}

.narrow {
    width: min(820px,calc(100% - 40px))
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e5eee8
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand img {
    width: 120px;
    object-fit: cover;
    object-position: center;
    margin-top:50px;
}

.nav nav {
    display: flex;
    gap: 22px;
    flex: 1
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700
}

.actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.lang-btn {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #bfe8d0;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    color: var(--green) !important;
    text-decoration: none
}

    .lang-btn:hover {
        background: #eafaf1
    }

.btn {
    display: inline-block;
    background: linear-gradient(135deg,var(--light),var(--green));
    color: white !important;
    padding: 14px 25px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(22,138,85,.22);
    border: 0
}

    .btn.small {
        padding: 10px 18px
    }

    .btn.ghost {
        background: white;
        color: var(--green) !important;
        border: 1px solid #bfe8d0;
        box-shadow: none
    }

.menu-btn {
    display: none
}

.hero {
    background: radial-gradient(circle at 85% 20%,#d9f8e5,transparent 35%),linear-gradient(180deg,#f7fcf9,#fff);
    padding: 90px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;
    align-items: center
}

.pill, .tag {
    display: inline-block;
    background: #dcf8e7;
    color: #08733e;
    padding: 7px 13px;
    border-radius: 99px;
    font-weight: 800
}

.hero h1, .page-hero h1 {
    font-size: clamp(42px,5vw,68px);
    line-height: 1.08;
    margin: 20px 0
}

.hero p, .page-hero p {
    font-size: 21px;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin: 28px 0
}

.dashboard {
    position: relative;
    background: linear-gradient(145deg,#09271d,#124f38);
    color: white;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(5,42,28,.25);
    transform: rotate(-1deg)
}

.dashboard-logo {
    position: absolute;
    top: -75px;
    left: -25px;
    width: 170px;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(5,42,28,.35);
    transform: rotate(2deg);
    background:#ffffff;
}

.saving span, .saving em {
    display: block;
    color: #bce8cd
}

.saving strong {
    display: block;
    font-size: 58px;
    line-height: 1.2
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 25px 0
}

    .metrics div, .activity {
        background: rgba(255,255,255,.09);
        padding: 15px;
        border-radius: 16px
    }

    .metrics b, .metrics span {
        display: block
    }

    .metrics b {
        font-size: 25px
    }

.section {
    padding: 85px 0
}

    .section.alt {
        background: var(--bg)
    }

h2 {
    font-size: 42px;
    text-align: center;
    margin: 0 0 35px
}

.center {
    text-align: center;
    color: var(--muted)
}

.cards, .steps, .pricing {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

    .cards article, .steps > div, .pricing article {
        border: 1px solid #dfece4;
        border-radius: 22px;
        padding: 27px;
        background: white;
        box-shadow: 0 12px 35px rgba(10,65,42,.06)
    }

    .cards a {
        color: var(--green);
        font-weight: 800
    }

    .steps b {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #dff8e8;
        color: var(--green);
        font-size: 22px
    }

.pricing {
    grid-template-columns: repeat(2,minmax(0,420px));
    justify-content: center
}

    .pricing article {
        position: relative
    }

    .pricing .popular {
        border: 2px solid var(--green);
        transform: translateY(-10px)
    }

    .pricing .tag {
        position: absolute;
        top: -17px;
        left: 25px
    }

.price b {
    font-size: 46px
}

.price span {
    color: var(--muted);
    margin-right: 8px
}

.pricing li {
    margin: 10px 0
}

.tax {
    display: block;
    text-align: center;
    margin-top: 20px
}

.page-hero {
    padding: 90px 0;
    background: var(--bg);
    text-align: center
}

.prose {
    font-size: 18px
}

    .prose h2 {
        text-align: right;
        font-size: 32px;
        margin-top: 42px
    }

    .prose li {
        margin: 12px 0
    }

details {
    background: white;
    border: 1px solid #dfece4;
    border-radius: 14px;
    padding: 18px 22px;
    margin: 12px 0
}

summary {
    font-weight: 800;
    cursor: pointer
}

footer {
    background: #08271c;
    color: white;
    padding: 60px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr .9fr .9fr;
    gap: 40px;
    align-items: start
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 17px;
    color: white
}

.footer-col a {
    display: block;
    color: #a8d8bd;
    text-decoration: none;
    margin: 9px 0;
    font-size: 15px
}

    .footer-col a:hover {
        color: #8cf0b5
    }

.footer-about img {
    height: 100px;
    object-fit: cover;
}

.footer-about p {
    color: #bce8cd;
    font-size: 15px;
    line-height: 1.7;
    margin: 14px 0 20px
}

.footer-about .btn {
    display: inline-block
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: #a8d8bd
}

@media(max-width:850px) {
    .nav nav, .actions .link {
        display: none
    }

    .menu-btn {
        display: block;
        margin-right: auto;
        background: none;
        border: 0;
        font-size: 26px;
        color: var(--dark);
        cursor: pointer
    }

    .site-header.menu-open .nav nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        background: white;
        border-bottom: 1px solid #e5eee8;
        box-shadow: 0 18px 35px rgba(10,65,42,.12);
        padding: 12px 20px;
        gap: 0
    }

    .site-header.menu-open .nav nav a {
        padding: 14px 4px;
        border-bottom: 1px solid #eef5f0
    }

    .site-header.menu-open .nav nav a:last-child {
        border-bottom: 0
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 55px 0
    }

        .hero h1 {
            font-size: 42px
        }

    .cards, .steps {
        grid-template-columns: 1fr
    }

    .pricing {
        grid-template-columns: 1fr
    }

        .pricing .popular {
            transform: none
        }

    .metrics {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        text-align: center
    }

    .dashboard-logo {
        width: 120px;
        top: -30px;
        left: -10px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center
    }

    .footer-about img {
        margin: auto
    }
}
