:root {
    --primary: #000000;
    --accent: #dc2626;
    --accent-dark: #b91c1c;
    --text: #1f1f1f;
    --text-light: #666666;
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --border: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: #1f1f1f;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    padding: 2rem;
    transition: right 0.3s;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

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

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Bar */
.stats-bar {
    background: var(--accent);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.stats-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.counter-val {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #2a2a2a;
}

.benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #333;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* How To Section */
.how-to {
    padding: 100px 0;
    background: #1a1a1a;
}

.how-to h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s;
}

.step-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 4px solid #1a1a1a;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin: 20px 0;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-item p {
    color: #b0b0b0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--accent);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #2a2a2a;
}

.pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.price-card.featured {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    color: white;
    border-color: var(--accent);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.price-card.featured .price-header h3 {
    color: #ffffff;
}

.bottle-count {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.product-img-small {
    width: 100%;
    max-width: 180px;
    height: 240px;
    object-fit: contain;
    margin: 20px auto;
    display: block;
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    margin: 20px 0;
}

.price-card.featured .price-tag {
    color: var(--accent);
}

.price-tag span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.savings {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.guarantee-badge {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-card.featured .guarantee-badge {
    border-color: rgba(255,255,255,0.2);
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.logo-guarantee {
    max-width: 150px;
    margin-bottom: 30px;
}

.guarantee h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.guarantee p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #1a1a1a;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.acc-item {
    background: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.acc-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s;
}

.acc-header:hover {
    background: #1a1a1a;
}

.acc-item.active .acc-header {
    color: var(--accent);
}

.acc-icon {
    transition: transform 0.3s;
    color: #ffffff;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.acc-body p {
    padding: 0 30px 25px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Label Section */
.label {
    padding: 60px 0;
    background: #2a2a2a;
    text-align: center;
}

.label img {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

footer img {
    max-width: 200px;
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits,
    .how-to,
    .testimonials,
    .pricing,
    .faq {
        padding: 60px 0;
    }

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

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }

    .links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 550px) {
    .o-1 { order: 1; }
    .o-2 { order: 2; }
    .o-3 { order: 3; }
}