:root {
    --color-primary: #0066CC;
    --color-secondary: #00A86B;
    --color-accent: #FF6B35;
    --color-background: #1A1F2E;
    --color-text: #F0F4F8;
    --font-main: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 12px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --spacing: 1.5rem;
    --border-thick: 3px;
}

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

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

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

body {
    font-family: var(--font-mono);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: var(--border-thick) solid var(--color-primary);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-name {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--color-accent);
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.7rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.25), transparent 70%);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .hero-content {
        gap: 2rem;
    }
}

.hero-title {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(240, 244, 248, 0.85);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    position: relative;
}

.rating-value {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.rating-max {
    font-size: 1.5rem;
    color: rgba(240, 244, 248, 0.6);
}

.heartbeat-graph {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 30px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    clip-path: polygon(0% 50%, 20% 20%, 40% 50%, 60% 50%, 80% 20%, 100% 50%, 100% 100%, 0% 100%);
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

@keyframes heartbeat {
    0%, 100% { transform: translateY(-50%) scaleY(1); }
    50% { transform: translateY(-50%) scaleY(1.2); }
}

.rating-text {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.65);
}

.hero-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(240, 244, 248, 0.45);
}

.order-form {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .order-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .order-form {
        padding: 1rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    background: rgba(26, 31, 46, 0.7);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-mono);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.35);
    background: rgba(26, 31, 46, 0.85);
}

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

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cta-button {
    position: relative;
    background: var(--color-accent);
    color: var(--color-background);
    border: none;
    border-radius: var(--radius);
    padding: 1.2rem 2rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    filter: brightness(1.1);
}

.scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 31, 46, 0.4), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.product-image-wrapper img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.product-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.4));
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-image:hover {
    transform: scale(1.05);
}

.bio-scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .bio-scanner {
    opacity: 1;
}

.bio-scanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: scan-down 2s ease-in-out infinite;
}

@keyframes scan-down {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

.section-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(240, 244, 248, 0.75);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.feature-card {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.glass-sphere {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.feature-card:hover .glass-sphere {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-accent);
}

.glass-sphere svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-accent);
}

.feature-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.feature-description {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.absorption-diagram {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diagram-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.diagram-step:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.step-number {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    min-width: 60px;
}

.step-content h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(240, 244, 248, 0.75);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 168, 107, 0.1);
}

.benefit-item:hover {
    border-left-color: var(--color-accent);
    transform: translateX(5px);
}

.benefit-item h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.benefit-item p {
    color: rgba(240, 244, 248, 0.85);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.usage-card {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

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

.usage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.usage-card h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.usage-card p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.6;
}

.ingredients-content {
    display: flex;
    justify-content: center;
}

.ingredient-dna {
    width: 100%;
    max-width: 600px;
}

.dna-strand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.dna-strand::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

.dna-node {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 4rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dna-node:hover {
    transform: translateX(10px);
}

.node-dot {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid var(--color-background);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
}

.dna-node:hover .node-dot {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.9);
}

.node-info {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

.dna-node:hover .node-info {
    border-color: var(--color-accent);
}

.node-info h4 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.node-info p {
    color: rgba(240, 244, 248, 0.85);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.review-card {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-accent);
}

.review-rating {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.review-text {
    color: rgba(240, 244, 248, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-date {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.55);
}

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

.faq-item {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

.faq-item.active {
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.6;
}

.contact-content {
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.contact-item h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.contact-item p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
}

.disclaimer {
    background: rgba(0, 168, 107, 0.1);
    border-top: var(--border-thick) solid var(--color-secondary);
    border-bottom: var(--border-thick) solid var(--color-secondary);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    color: rgba(240, 244, 248, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer {
    background: rgba(26, 31, 46, 0.95);
    border-top: var(--border-thick) solid var(--color-primary);
    padding: 3rem 0 2rem;
    box-shadow: 0 -4px 20px rgba(0, 102, 204, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-main);
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(240, 244, 248, 0.75);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(240, 244, 248, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.98);
    backdrop-filter: blur(20px);
    border-top: var(--border-thick) solid var(--color-primary);
    padding: 2rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 102, 204, 0.3);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.cookie-text p {
    color: rgba(240, 244, 248, 0.85);
    max-width: 600px;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    background: rgba(0, 102, 204, 0.15);
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    border-color: var(--color-accent);
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-accent);
}

.cookie-btn.accept-all {
    background: var(--color-accent);
    color: var(--color-background);
    border-color: var(--color-accent);
}

.cookie-btn.accept-all:hover {
    background: var(--color-accent);
    opacity: 0.9;
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(0, 102, 204, 0.08);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    display: none;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
}

.cookie-settings-panel.show {
    display: block;
}

.cookie-settings-panel h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.cookie-setting-item {
    margin-bottom: 1.5rem;
}

.cookie-setting-item label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
}

.cookie-setting-item span {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--color-text);
    display: block;
}

.cookie-setting-item small {
    display: block;
    color: rgba(240, 244, 248, 0.65);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 31, 46, 0.98);
        backdrop-filter: blur(20px);
        border-top: var(--border-thick) solid var(--color-primary);
        border-bottom: var(--border-thick) solid var(--color-primary);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 0 var(--spacing);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }

    .burger-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(12px);
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.2);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.thank-you-text {
    font-size: 1.1rem;
    color: rgba(240, 244, 248, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thank-you-info {
    margin: 2rem 0;
    text-align: left;
    background: rgba(26, 31, 46, 0.6);
    border-radius: var(--radius);
    padding: 2rem;
}

.thank-you-info h2 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    text-align: center;
}

.thank-you-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-info li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(240, 244, 248, 0.85);
}

.thank-you-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.policy-page {
    padding: 120px 0 80px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 102, 204, 0.06);
    backdrop-filter: blur(12px);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
}

.policy-content h1 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.policy-content h2 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.policy-content h3 {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.policy-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: rgba(240, 244, 248, 0.9);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: rgba(240, 244, 248, 0.9);
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.policy-content strong {
    color: var(--color-accent);
    font-weight: 600;
}

.policy-date {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.65);
    margin-bottom: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .order-form {
        padding: 1.5rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }
    
    .hero-text,
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .order-form {
        padding: 1rem;
    }
    
    .feature-card,
    .usage-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

