:root {
    --bg: #f2f8f6;
    --bg-alt: #eef3ff;
    --text: #10212b;
    --muted: #4e6371;
    --primary: #008c72;
    --primary-dark: #006a56;
    --highlight: #ffb703;
    --card: #ffffff;
    --border: rgba(16, 33, 43, 0.12);
    --shadow: 0 20px 40px rgba(16, 33, 43, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 5%, #dbf7e8 0%, transparent 40%),
        radial-gradient(circle at 80% 10%, #dcebff 0%, transparent 35%),
        var(--bg);
    line-height: 1.6;
}

.page-glow {
    position: fixed;
    inset: -30vmax;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: drift 18s linear infinite;
    z-index: -1;
}

@keyframes drift {
    0% {
        transform: translateX(-4%) rotate(0deg);
    }
    50% {
        transform: translateX(4%) rotate(180deg);
    }
    100% {
        transform: translateX(-4%) rotate(360deg);
    }
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(242, 248, 246, 0.82);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    padding: 0.45rem 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.section {
    padding: 4.5rem 0;
}

.section--alt {
    background: linear-gradient(180deg, transparent 0%, rgba(224, 236, 255, 0.75) 100%);
}

.section--newsletter {
    padding: 4.5rem 0;
}

.hero {
    padding: 6rem 0 3rem;
    position: relative;
    --x-position: 50%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x-position) 0%, rgba(255, 183, 3, 0.16), transparent 42%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 16rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    right: clamp(0rem, 4vw, 4rem);
    top: 3rem;
    background: radial-gradient(circle, rgba(0, 140, 114, 0.2), transparent 70%);
    transform: translateZ(0);
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-dark);
}

h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
    margin: 0;
    line-height: 1.15;
}

h1 {
    margin-top: 0.7rem;
    max-width: 14ch;
    font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
    margin-top: 0.65rem;
    font-size: clamp(1.55rem, 3.7vw, 2.6rem);
}

h3 {
    font-size: 1.18rem;
}

.lead {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(120deg, var(--primary) 0%, #0ba183 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 140, 114, 0.26);
}

.btn--primary:hover {
    background: linear-gradient(120deg, #007d66 0%, #089578 100%);
}

.btn--ghost {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.6);
}

.btn--small {
    font-size: 0.92rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
}

.stats {
    list-style: none;
    margin: 2.7rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.stats li {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
}

.stats strong {
    display: block;
    font-family: "Sora", sans-serif;
    color: var(--primary-dark);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.stats span {
    color: var(--muted);
    font-size: 0.93rem;
}

.section-head {
    max-width: 66ch;
}

.section-head p {
    margin-top: 1rem;
    color: var(--muted);
}

.filters {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filters button {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filters button.active {
    background: var(--text);
    border-color: var(--text);
    color: #ffffff;
}

.product-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.15rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(16, 33, 43, 0.18);
}

.product-card::before {
    content: "";
    position: absolute;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 140, 114, 0.1), transparent 70%);
    top: -3rem;
    right: -3.4rem;
}

.product-card .meta {
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    font-weight: 800;
}

.product-card p {
    color: var(--muted);
    margin: 0.6rem 0 0;
}

.price {
    margin-top: 1rem;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    color: var(--text);
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.price-old {
    color: #7a8b95;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 0.95rem;
}

.price-note {
    margin-top: 0.45rem;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.card-features {
    margin-top: 0.6rem;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.card-actions {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
}

.card-link {
    display: inline-flex;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
}

.card-link--primary {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(0, 140, 114, 0.08);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--highlight);
    color: #1b1500;
    font-size: 0.74rem;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-weight: 800;
}

.process {
    display: grid;
    gap: 1.4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 1.2rem;
}

.process-card span {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--text);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
}

.process-card p {
    color: var(--muted);
    margin-top: 0.7rem;
}

.mission {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.mission p {
    color: var(--muted);
}

.mission-points {
    margin: 0;
    list-style: none;
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
}

.mission-points li {
    position: relative;
    padding-left: 1.55rem;
    font-weight: 700;
}

.mission-points li + li {
    margin-top: 0.9rem;
}

.mission-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
}

.product-spotlight {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1rem, 2.7vw, 2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(235, 251, 245, 0.9) 100%);
    box-shadow: var(--shadow);
}

.spotlight-head p {
    color: var(--muted);
}

.spotlight-mini {
    margin-top: 0.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.spotlight-price {
    margin-top: 1rem;
    font-weight: 700;
}

.spotlight-price strong {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    color: var(--text);
}

.spotlight-price span {
    text-decoration: line-through;
    color: #7a8b95;
}

.spotlight-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.spotlight-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
}

.spotlight-card p,
.spotlight-card li {
    color: var(--muted);
}

.spotlight-card ul {
    margin: 0.6rem 0 0;
    padding-left: 1.05rem;
}

.newsletter {
    background: linear-gradient(150deg, #0f1f2a 0%, #12384d 60%, #085f64 100%);
    border-radius: 26px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.2rem;
    padding: clamp(1.1rem, 3vw, 2rem);
}

.newsletter p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.83);
}

.newsletter .eyebrow {
    color: #a7ffde;
}

.newsletter-form {
    display: grid;
    gap: 0.8rem;
    align-content: center;
}

input,
textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.78rem 0.9rem;
    font: inherit;
    color: var(--text);
    background: #ffffff;
}

input:focus,
textarea:focus,
button:focus {
    outline: 2px solid rgba(255, 183, 3, 0.8);
    outline-offset: 2px;
}

.contact-form {
    margin-top: 1.4rem;
    max-width: 680px;
    display: grid;
    gap: 0.65rem;
}

.contact-form label {
    font-weight: 700;
}

.alert {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin: 1rem 0 0;
    border: 1px solid transparent;
    font-weight: 700;
}

.alert--success {
    background: rgba(9, 190, 127, 0.12);
    border-color: rgba(9, 190, 127, 0.4);
}

.alert--warning {
    background: rgba(255, 183, 3, 0.15);
    border-color: rgba(255, 183, 3, 0.5);
}

.alert--error {
    background: rgba(212, 54, 54, 0.14);
    border-color: rgba(212, 54, 54, 0.44);
}

.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
}

.footer-wrap {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.footer-wrap a {
    color: var(--primary-dark);
    text-decoration: none;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card.is-hidden {
    display: none;
}

.legal-main {
    padding: 4.8rem 0 3rem;
}

.legal-wrap h1 {
    margin-top: 0.6rem;
    max-width: 20ch;
}

.legal-date {
    color: var(--muted);
    font-weight: 700;
    margin-top: 0.7rem;
}

.legal-doc {
    margin-top: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: clamp(1rem, 2.5vw, 1.8rem);
    box-shadow: var(--shadow);
}

.legal-section + .legal-section {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--border);
}

.legal-section p {
    color: var(--muted);
    margin-top: 0.65rem;
}

@media (max-width: 1080px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.4rem);
        right: 1rem;
        width: min(300px, calc(100% - 2rem));
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .newsletter {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero {
        padding-top: 5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-wrap {
        min-height: auto;
        padding: 1rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

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