:root {
    --color-primary: #FFD275;
    --color-secondary: #F8F9FA;
    --color-accent: #4A5D4E;
    --color-bg: #FFFFFF;
    --color-bg-soft: #FFF0E5;
    --color-text: #2D2D2D;
    --color-text-muted: #5a5a5a;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(45, 45, 45, 0.08);
    --shadow-hover: 0 8px 32px rgba(74, 93, 78, 0.12);
    --spacing: 1.5rem;
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--color-text);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, 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: var(--color-primary);
}

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

.container.narrow {
    max-width: 720px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-text);
}


@media (max-width: 1023px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-secondary);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 1001;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav a {
        font-size: 1rem;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.section {
    padding: 5rem 2rem;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 3rem;
    }
}

.section-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 5rem;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 210, 117, 0.3);
    border-radius: 50%;
    animation: pulse-ring 8s ease-in-out infinite;
}

.hero-geometry::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 210, 117, 0.2);
    border-radius: 50%;
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

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

.hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.hero-text {
    text-align: left;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero-rating {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.rating-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
}

.rating-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hero-pricing {
    margin-bottom: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-right: 0.75rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 360px;
}

.hero-form input,
.hero-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(74, 93, 78, 0.2);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
}

.hero-form input.error,
.hero-form textarea.error {
    border-color: #c44;
}

.hero-form .error-msg {
    font-size: 0.85rem;
    color: #c44;
}

.gdpr-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.gdpr-check input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #f0c060 100%);
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition);
}

.cta-btn:hover {
    box-shadow: 0 4px 20px rgba(255, 210, 117, 0.5);
    transform: translateY(-2px);
}

.features-grid,
.benefits-grid,
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card,
.benefit-card,
.ingredient-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover,
.benefit-card:hover,
.ingredient-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.feature-card.revealed,
.benefit-card.revealed,
.ingredient-card.revealed,
.review-card.revealed,
.usage-step.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-visual {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.usage-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.description-content p {
    margin-bottom: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-name {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.faq-item {
    border-bottom: 1px solid rgba(74, 93, 78, 0.15);
}

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

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

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 0 1.25rem;
    color: var(--color-text-muted);
}

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

.cta-section .cta-btn {
    margin-top: 1rem;
}

.disclaimer {
    padding: 3rem 2rem;
}

.disclaimer-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

.footer {
    padding: 2.5rem 2rem;
    background: var(--color-secondary);
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.9rem;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
}

.thank-you-section h1 {
    text-align: center;
}

.thank-you-section p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thank-you-section .cta-btn {
    display: inline-flex;
    margin: 0 auto;
}

.legal-section {
    padding: 6rem 1.5rem 4rem;
}

.legal-section h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-section .date {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 2rem;
    background: rgba(45, 45, 45, 0.95);
    color: white;
    z-index: 9999;
}

.cookie-content p {
    margin-bottom: 1rem;
    max-width: 600px;
}

.cookie-banner a {
    color: var(--color-primary);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--transition), background var(--transition);
}

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

.cookie-btn.accept {
    background: var(--color-primary);
    color: var(--color-text);
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
}

.cookie-settings-modal[hidden] {
    display: none !important;
}

.cookie-settings-modal:not([hidden]) {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cookie-settings-modal .modal-content {
    position: relative;
    z-index: 1;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cookie-settings-modal h3 {
    margin-bottom: 0.5rem;
}

.cookie-settings-modal label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    cursor: pointer;
}

.cookie-settings-modal input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cookie-btn.save {
    margin-top: 1rem;
    background: var(--color-accent);
    color: white;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-product {
        order: -1;
    }

    .hero-text {
        text-align: center;
    }

    .hero-form {
        margin: 0 auto;
    }

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

    .usage-steps {
        grid-template-columns: 1fr;
    }
}
