:root {
    --primary: #000000;
    --accent: #ce174d;
    --accent-dark: #a51240;
    --accent-secondary: #d33359;
    --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: #111111;
    border-bottom: 1px solid #2a2a2a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

.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: #111111;
    padding: 2rem;
    transition: right 0.3s;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 2px solid var(--accent);
}

.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;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(206, 23, 77, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(206, 23, 77, 0.5);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a000d 0%, #000000 60%, #0d0005 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(206, 23, 77, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(211, 51, 89, 0.12) 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(206, 23, 77, 0.15);
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #f9a8c2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

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

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

.hero-sub {
    font-size: 1rem !important;
    opacity: 0.65 !important;
    font-style: italic;
    margin-bottom: 2rem !important;
}

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

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

.hero-blob {
    position: absolute;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(206, 23, 77, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 4s infinite;
}

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

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(206, 23, 77, 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: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.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(3, 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(206, 23, 77, 0.25);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    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(220px, 1fr));
    gap: 40px;
}

.step-item {
    background: #2a2a2a;
    padding: 45px 30px 35px;
    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(206, 23, 77, 0.2);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    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.3rem;
    margin-bottom: 12px;
    color: #ffffff;
}

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

/* 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.04);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(206, 23, 77, 0.25);
    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;
    color: #e0e0e0;
}

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

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

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

.pricing-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.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(206, 23, 77, 0.25);
}

.price-card.featured {
    background: linear-gradient(135deg, #200010 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: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    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-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 #333;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #b0b0b0;
}

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

.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;
    transition: border-color 0.3s;
}

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

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

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

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

.acc-icon {
    transition: transform 0.3s;
    color: #ffffff;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

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

/* Final CTA Banner */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a000d 0%, #000000 60%, #0d0005 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(206, 23, 77, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 70% 50%, rgba(211, 51, 89, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    color: #b0b0b0;
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.final-cta .btn {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

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.7;
    transition: opacity 0.3s, color 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;
        text-align: center;
    }

    .hero-grid .hero-content {
        order: 2;
    }

    .hero-grid .hero-image {
        order: 1;
    }

    .hero {
        padding: 60px 0;
    }

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

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

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

    .benefits,
    .how-to,
    .testimonials,
    .pricing,
    .faq,
    .final-cta {
        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;
    }
}

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

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