:root {
    --green: #159c57;
    --pink: #d65f8c;
    --text: #151f1a;
    --muted: #69746d;
    --line: #e8eee9;
    --soft: #f8faf9
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    padding-bottom: 74px
}

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

.container-site {
    max-width: 1180px;
    margin: auto;
    padding: 0 18px
}

.top {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 999
}

.top-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    font-size: 28px;
    font-weight: 950;
    color: var(--green)
}

.brand small {
    display: block;
    font-size: 13px;
    color: var(--pink);
    letter-spacing: 4px
}

.nav {
    display: flex;
    gap: 22px;
    font-weight: 900;
    white-space: nowrap
}

.nav a:hover {
    color: var(--pink)
}

.call {
    background: #0d6efd;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 900
}

.wa {
    background: #20b65a;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 900
}

.hero {
    background: linear-gradient(135deg, #0b6c3a, #159c57);
    color: #fff;
    padding: 58px 0
}

.crumb {
    font-size: 14px;
    margin-bottom: 14px;
    opacity: .9
}

.hero h1 {
    font-size: 42px;
    line-height: 1.08;
    margin: 0 0 14px;
    font-weight: 950
}

.hero p {
    font-size: 18px;
    max-width: 820px;
    color: #effff5
}

.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px
}

.section {
    padding: 44px 0
}

.soft {
    background: var(--soft)
}

.head {
    margin-bottom: 22px
}

.head h2 {
    font-size: 30px;
    margin: 0;
    font-weight: 950
}

.head p {
    color: var(--muted);
    margin: 6px 0 0
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .035)
}

.card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 950
}

.card p {
    color: #5d6a63;
    line-height: 1.65
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.product {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden
}

.product-img {
    height: 150px;
    background: #f5f5f5 center/cover no-repeat
}

.product-body {
    padding: 13px
}

.product h3 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 950
}

.price {
    font-size: 19px;
    color: #e53f36;
    font-weight: 950
}

.order {
    display: block;
    background: var(--green);
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    padding: 11px;
    margin-top: 10px;
    font-weight: 950
}

.footer {
    background: #07351f;
    color: #dcebe3;
    padding: 40px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px
}

.footer h3,
.footer h4 {
    color: #fff
}

.footer a {
    color: #fff
}

.sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 9px;
    z-index: 9999
}

.sticky-grid {
    max-width: 760px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px
}

.sticky a {
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    padding: 12px 8px;
    font-weight: 900
}

.s1 {
    background: #0d6efd
}

.s2 {
    background: #20b65a
}

.s3 {
    background: #6c757d
}

@media(max-width:900px) {
    .nav {
        display: none
    }

    .hero h1 {
        font-size: 32px
    }

    .grid,
    .products,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .top-inner {
        height: auto;
        padding: 14px 10px;
        align-items: flex-start
    }

    .products {
        grid-template-columns: repeat(2, 1fr)
    }
}