:root {
    --color-primary: #C3423F;
    --color-secondary: #2B5329;
    --color-accent: #D4AF37;
    --color-bg: #1A1A1B;
    --color-text: #E4E4E4;
    --color-text-muted: #A0A0A0;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --spacing: 1.5rem;
    --header-h: 70px;
    --burger-width: 320px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, p, span, a, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #E8C547;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing) 1.5rem;
    min-height: var(--header-h);
}

.brand {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
}

.brand:hover {
    color: var(--color-accent);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-list a {
    color: var(--color-text);
    font-size: 0.9rem;
}

.nav-list a:hover {
    color: var(--color-accent);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--color-accent);
    transition: background var(--transition), color var(--transition);
}

.burger:hover {
    background: rgba(212, 175, 55, 0.15);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.burger-menu {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: var(--burger-width);
    max-width: min(1023px, 100vw);
    max-height: calc(100vh - var(--header-h));
    background: var(--color-bg);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding: var(--spacing);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}

.burger-menu.open {
    transform: translateX(0);
}

.burger-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.burger-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.burger-nav a {
    display: block;
    padding: 1rem;
    color: var(--color-text);
}

.burger-nav a:hover {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.08);
}

main {
    padding-top: var(--header-h);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(43, 83, 41, 0.15) 50%, rgba(195, 66, 63, 0.08) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(195, 66, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 480px;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.hero-desc {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-rating .stars {
    color: var(--color-accent);
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-old {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, var(--color-accent) 0%, #B8962E 100%);
    color: #1A1A1B;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-product {
    margin: 0;
    display: flex;
    justify-content: center;
}

.hero-product img {
    max-height: 420px;
    object-fit: contain;
}

.hero-form-wrap {
    max-width: 360px;
}

.order-form {
    background: rgba(26, 26, 27, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.order-form h3 {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
}

.required {
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-primary);
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-mono);
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity var(--transition);
}

.submit-btn:hover {
    opacity: 0.9;
}

.section {
    padding: 5rem 0;
}

.snap-section {
    scroll-margin-top: var(--header-h);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin: 0 0 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.feature-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.benefits-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(43, 83, 41, 0.15);
    border-left: 3px solid var(--color-secondary);
    border-radius: var(--radius);
}

.benefit-time {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.description-content {
    max-width: 700px;
    margin: 0 auto;
}

.description-content p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.usage-list {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.usage-list li {
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(195, 66, 63, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.ingredient-card h4 {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.ingredient-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.review-stars {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.review-card p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.review-card cite {
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-accent);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer p {
    margin: 0 0 1.25rem;
    padding: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.cta-section .cta-content {
    text-align: center;
}

.cta-product-preview img {
    margin: 0 auto 1rem;
    max-height: 220px;
}

.cta-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.disclaimer-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.7;
}

.footer {
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner address,
.footer-inner .copyright {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-nav a {
    color: var(--color-text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 27, 0.98);
    border-top: 1px solid var(--color-accent);
    padding: 1.5rem 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    max-width: 900px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: inherit;
    font-size: 0.875rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.cookie-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.cookie-btn.primary {
    background: var(--color-accent);
    color: #1A1A1B;
}

.cookie-btn.primary:hover {
    background: #E8C547;
}

.cookie-settings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h4 {
    margin: 0 0 1rem;
}

.cookie-option {
    margin-bottom: 0.5rem;
}

.cookie-option label {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-page .date {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.thank-you-section {
    padding: 6rem 1.5rem;
    text-align: center;
}

.thank-you-section h1 {
    margin: 0 0 1rem;
}

.thank-you-section p {
    margin: 0 0 2rem;
    color: var(--color-text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

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

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

    .burger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-product {
        order: -1;
    }

    .hero-product img {
        max-height: 280px;
    }

    .hero-form-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .benefits-block {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    :root {
        --burger-width: 100%;
    }

    .burger-menu {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .features-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}
