:root {
    --color-primary: #BF5AF2;
    --color-secondary: #63E6BE;
    --color-accent: #FAFF00;
    --color-bg: #1C1C1E;
    --color-bg-mesh: #2C2C2E;
    --color-bg-light: #3A3A3C;
    --color-text: #F2F2F7;
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-btn: 'Space Grotesk', sans-serif;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(191, 90, 242, 0.15);
    --spacing: 1.5rem;
}

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

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

body {
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-mesh) 50%, var(--color-bg-light) 100%);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    opacity: 0.9;
    color: var(--color-primary);
}

.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(28, 28, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(191, 90, 242, 0.2);
}

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

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

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

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.nav {
    display: flex;
    gap: 1.25rem;
}

.nav-link {
    font-size: 0.875rem;
    color: rgba(242, 242, 247, 0.9);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 85vw);
    max-width: 1023px;
    height: 100vh;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(191, 90, 242, 0.25);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1001;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
}

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

@media (min-width: 1024px) {
    .nav-mobile {
        display: none;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(191, 90, 242, 0.15), transparent 60%),
                radial-gradient(ellipse 60% 40% at 70% 70%, rgba(99, 230, 190, 0.1), transparent 50%),
                radial-gradient(ellipse 50% 30% at 20% 50%, rgba(250, 255, 0, 0.05), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-product {
    margin: 2rem 0;
}

.hero-product img {
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(191, 90, 242, 0.3));
}

.hero-badges {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    font-family: var(--font-btn);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.hero-rating {
    margin-bottom: 1rem;
}

.stars {
    color: var(--color-accent);
    font-size: 1rem;
}

.rating-text {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.price-old {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 0.75rem;
}

.price-current {
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.hero-desc {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 100%;
    overflow-wrap: break-word;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.form-field {
    position: relative;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    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: var(--font-main);
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(191, 90, 242, 0.2);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(242, 242, 247, 0.5);
}

.gdpr-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    cursor: pointer;
}

.gdpr-check input {
    width: auto;
    margin-top: 0.25rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), rgba(191, 90, 242, 0.7));
    color: var(--color-text);
    border: none;
    margin-top: 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 90, 242, 0.35);
}

.error-msg {
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 0.25rem;
}

.order-form input.error {
    border-color: #ff6b6b;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    overflow-wrap: break-word;
}

.section-features .features-grid,
.section-benefits .benefits-grid,
.section-ingredients .ingredients-grid,
.section-reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing);
    max-width: 1000px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 90, 242, 0.3);
    box-shadow: 0 12px 40px rgba(191, 90, 242, 0.1);
}

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

.feature-card h3,
.benefit-card h3,
.ingredient-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.feature-card p,
.benefit-card p,
.ingredient-card p,
.review-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.65;
    overflow-wrap: break-word;
}

.review-card cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.8125rem;
    opacity: 0.7;
    font-style: normal;
}

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

.desc-content {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.desc-content p {
    margin-bottom: 1rem;
    overflow-wrap: break-word;
}

.product-showcase {
    margin-top: 2rem;
}

.product-showcase img {
    margin: 0 auto;
}

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

.usage-list li {
    margin-bottom: 0.75rem;
    overflow-wrap: break-word;
}

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

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

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

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    opacity: 0.9;
    overflow-wrap: break-word;
}

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

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

.section-disclaimer {
    padding: 3rem 0;
}

.disclaimer {
    font-size: 0.8125rem;
    opacity: 0.75;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    overflow-wrap: break-word;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-text {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.125rem;
}

.policy-section {
    padding: 8rem 0 4rem;
}

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

.policy-container h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.policy-container .date {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.policy-container article {
    margin-bottom: 1.5rem;
}

.policy-container h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.policy-container p {
    font-size: 0.9375rem;
    overflow-wrap: break-word;
}

.footer {
    padding: 3rem var(--spacing);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.footer .container {
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

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

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

.footer-address,
.footer-email {
    font-size: 0.8125rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem var(--spacing);
    background: rgba(28, 28, 30, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(191, 90, 242, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
    padding: 0.6rem 1.25rem;
    font-family: var(--font-btn);
    font-size: 0.8125rem;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text);
}

.cookie-settings {
    background: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-inner {
    background: var(--color-bg);
    border: 1px solid rgba(191, 90, 242, 0.3);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 420px;
    width: 90%;
}

.cookie-settings-inner h3 {
    margin-bottom: 1.5rem;
}

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

.cookie-settings-inner input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-save {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-text);
    border: none;
    border-radius: 8px;
    font-family: var(--font-btn);
    cursor: pointer;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-product img {
        max-width: 200px;
    }
}
