:root {
    --color-primary: #1A1C1E;
    --color-secondary: #F1F3F5;
    --color-accent: #00D9A5;
    --font-main: "Inter", "Segoe UI", Arial, sans-serif;
    --radius: 4px;
    --shadow: 0 10px 40px rgba(26, 28, 30, .08);
    --spacing: clamp(1rem, 2.5vw, 2rem)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-primary);
    background: #fff
}

.site-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

main {
    flex: 1
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e9ec;
    z-index: 10
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 700
}

.desktop-nav {
    display: none;
    gap: .85rem;
    align-items: center
}

.desktop-nav a, .mobile-nav a, .site-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: .95rem;
    transition: opacity .2s ease, color .2s ease
}

.desktop-nav a:hover, .mobile-nav a:hover, .site-footer a:hover {
    color: var(--color-accent);
    opacity: .95
}

.burger {
    width: 44px;
    height: 44px;
    border: 1px solid #d8dde2;
    background: #fff;
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    cursor: pointer
}

.burger span {
    width: 18px;
    height: 2px;
    background: var(--color-primary);
    transition: transform .25s ease, opacity .25s ease
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.active span:nth-child(2) {
    opacity: 0
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.menu-overlay[hidden] {
    display: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 28, 30, .42);
    display: grid;
    place-items: start end;
    z-index: 20
}

.mobile-nav {
    width: min(360px, 86vw);
    min-height: 100%;
    background: #fff;
    padding: 6rem 1.25rem 1.25rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    animation: slideIn .3s forwards
}

@keyframes slideIn {
    to {
        transform: translateX(0)
    }
}

.section {
    padding: clamp(2.5rem, 6vw, 5rem) 0
}

.alt {
    background: var(--color-secondary)
}

.hero {
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 217, 165, .18), transparent 45%);
    z-index: -1
}

.hero-grid, .grid {
    display: grid;
    gap: var(--spacing);
    align-items: center
}

.hero-grid, .grid.two, .grid.three {
    grid-template-columns:1fr
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #4e5965
}

h1, h2, h3 {
    line-height: 1.2;
    margin: 0 0 .75rem
}

h1 {
    font-size: clamp(1.85rem, 4.5vw, 3rem)
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem)
}

h3 {
    font-size: 1.12rem
}

.lead {
    font-size: 1.05rem;
    max-width: 60ch
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1rem 0
}

.badge, .rating {
    border: 1px solid rgba(0, 217, 165, .5);
    padding: .4rem .7rem;
    border-radius: var(--radius);
    background: rgba(0, 217, 165, .08)
}

.price {
    margin: .8rem 0
}

.new-price {
    font-size: 1.9rem;
    font-weight: 800
}

.old-price {
    text-decoration: line-through;
    color: #5f6973;
    margin-left: .5rem
}

.order-panel {
    background: #fff;
    border: .5px solid #d7dce0;
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow)
}

.order-panel figure {
    margin: 0 0 .8rem;
    text-align: center
}

.order-panel img {
    max-width: 100%;
    height: auto
}

form {
    display: grid;
    gap: .5rem
}

label {
    font-weight: 600;
    font-size: .92rem
}

input, textarea, button {
    font: inherit
}

input, textarea {
    border: 1px solid #cad2d9;
    border-radius: var(--radius);
    padding: .65rem;
    background: #fff
}

input:focus, textarea:focus, button:focus, .faq-question:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-weight: 500
}

.btn {
    background: var(--color-accent);
    color: #05261f;
    border: none;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform .14s ease, filter .2s ease
}

.btn:hover {
    filter: brightness(.98)
}

.btn:active {
    transform: scale(.98)
}

.btn.ghost {
    background: #eafbf6
}

.card {
    border: .5px solid #d7dce0;
    border-radius: var(--radius);
    padding: 1rem;
    background: linear-gradient(160deg, #fff, #fbfcfd);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
    transition: box-shadow .25s ease, transform .25s ease
}

.card:hover {
    box-shadow: 0 0 0 1px rgba(0, 217, 165, .5), 0 8px 25px rgba(26, 28, 30, .07);
    transform: translateY(-2px)
}

.faq {
    display: grid;
    gap: .7rem
}

.faq-item {
    border: .5px solid #d7dce0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    background: #fff;
    font-weight: 700;
    cursor: pointer
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 1rem
}

.faq-item.open .faq-answer {
    max-height: 180px;
    padding-bottom: 1rem
}

.link-accent {
    color: #007f62
}

.site-footer {
    border-top: 1px solid #e5e9ec;
    padding: 1.25rem 0;
    margin-top: auto
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.footer-grid nav {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: #fff;
    border: 1px solid #d7dce0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    z-index: 30
}

.cookie-categories, .cookie-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: .7rem
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media (min-width: 700px) {
    .hero-grid {
        grid-template-columns:1.2fr .8fr
    }

    .grid.two {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .grid.three {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: inline-flex
    }

    .burger {
        display: none
    }

    .menu-overlay[hidden] {
        display: none
    }
}
