/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - large & readable */
h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #0f3b6f;
}

h2 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0f3b6f;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e4a76;
}

p, li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #334155;
}

.section-intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #475569;
}

/* Buttons (Yellow/Red combo) */
.btn-primary, .btn-secondary, .btn-outline, .pricing-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #eab308;
    color: #1e293b;
    box-shadow: 0 8px 18px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
    background: #ca8a04;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(234, 179, 8, 0.4);
}

.btn-secondary {
    background: #ef4444;
    color: white;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.3);
}

.btn-secondary:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #0f3b6f;
    color: #0f3b6f;
}

.btn-outline:hover {
    background: #0f3b6f;
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #0f3b6f;
}

.nav-logo span {
    color: #eab308;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #eab308;
}

.nav-btn {
    background: #ef4444;
    padding: 12px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0f3b6f;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    background: #eab30820;
    color: #b45309;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.highlight {
    color: #eab308;
}

.hero-subhead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

.hero-list li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-list i {
    color: #eab308;
    margin-right: 12px;
}

.hero-buttons {
    margin: 30px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-badge {
    display: flex;
    gap: 24px;
    font-weight: 600;
    color: #0f3b6f;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
}

/* Why Fail Section */
.why-fail {
    padding: 80px 0;
    background: #f8fafc;
}

.fail-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.fail-card {
    background: white;
    padding: 32px 24px;
    border-radius: 28px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.fail-card i {
    font-size: 2.8rem;
    color: #eab308;
    margin-bottom: 20px;
}

.truth-text {
    text-align: center;
    font-size: 1.4rem;
    background: #e0f2fe;
    padding: 20px;
    border-radius: 60px;
}

/* What Is */
.what-is {
    padding: 80px 0;
}

.what-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.what-text {
    flex: 1;
}

.what-image {
    flex: 1;
    text-align: center;
}

.what-image img {
    max-width: 100%;
    border-radius: 24px;
}

/* Who Is The Venus Factor For - Animated Bullet Points */
.who-for {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.who-content {
    max-width: 900px;
    margin: 0 auto;
}

.who-intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 600;
    text-align: center;
}

/* Animated Bullets Container */
.animated-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 18px 24px;
    border-radius: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateX(-20px);
}

.bullet-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.bullet-item:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #eab308;
}

.bullet-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eab30820 0%, #eab30810 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-icon i {
    font-size: 1.5rem;
    color: #eab308;
}

.bullet-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.4;
    flex: 1;
}

/* Conclusion Box */
.who-conclusion {
    background: linear-gradient(135deg, #0f3b6f 0%, #1e4a76 100%);
    padding: 32px 40px;
    border-radius: 28px;
    margin-top: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.who-conclusion.visible {
    opacity: 1;
    transform: translateY(0);
}

.who-conclusion i {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: rgba(234, 179, 8, 0.2);
}

.who-conclusion p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 40px;
}

.who-conclusion strong {
    color: #eab308;
}

/* Animation Delays for staggered effect */
.bullet-item:nth-child(1) { transition-delay: 0.05s; }
.bullet-item:nth-child(2) { transition-delay: 0.1s; }
.bullet-item:nth-child(3) { transition-delay: 0.15s; }
.bullet-item:nth-child(4) { transition-delay: 0.2s; }
.bullet-item:nth-child(5) { transition-delay: 0.25s; }
.bullet-item:nth-child(6) { transition-delay: 0.3s; }
.bullet-item:nth-child(7) { transition-delay: 0.35s; }

/* Responsive Design */
@media (max-width: 768px) {
    .bullet-item {
        padding: 14px 20px;
        border-radius: 40px;
    }
    
    .bullet-icon {
        width: 40px;
        height: 40px;
    }
    
    .bullet-icon i {
        font-size: 1.2rem;
    }
    
    .bullet-text {
        font-size: 0.95rem;
    }
    
    .who-conclusion {
        padding: 24px 28px;
    }
    
    .who-conclusion i {
        font-size: 2rem;
        top: 15px;
        left: 20px;
    }
    
    .who-conclusion p {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .who-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .bullet-item {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        gap: 12px;
    }
    
    .bullet-text {
        text-align: center;
    }
    
    .who-conclusion {
        text-align: center;
    }
    
    .who-conclusion i {
        display: none;
    }
    
    .who-conclusion p {
        padding-left: 0;
    }
}

/* CTA Divider Section - Blue Background with Product Image */
.cta-divider {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f3b6f 0%, #1e4a76 50%, #0f3b6f 100%);
    position: relative;
    overflow: hidden;
}

.cta-divider::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-divider::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-divider-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-divider-content {
    flex: 1;
    min-width: 300px;
}

.cta-divider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 179, 8, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 25px;
    border: 1px solid rgba(234, 179, 8, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(234, 179, 8, 0);
    }
}

.cta-divider h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-align: left;
}

.cta-divider h2 span {
    color: #eab308;
    display: block;
}

/* Features Row */
.cta-divider-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 60px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(234, 179, 8, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(234, 179, 8, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #eab308;
}

.feature-icon i {
    font-size: 1.3rem;
    color: #eab308;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #0f3b6f;
}

.feature-text {
    text-align: left;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: white;
}

.feature-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #cbd5e1;
}

/* Buttons */
.cta-divider-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 35px;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #eab308;
    color: #1e293b;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
}

.cta-primary-btn i:first-child {
    font-size: 1.2rem;
}

.cta-primary-btn i:last-child {
    transition: transform 0.3s ease;
}

.cta-primary-btn:hover {
    background: #ca8a04;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(234, 179, 8, 0.4);
}

.cta-primary-btn:hover i:last-child {
    transform: translateX(6px);
}

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: white;
    color: #0f3b6f;
    transform: translateY(-3px);
}

/* Trust Row */
.cta-divider-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
}

.trust-item i {
    color: #eab308;
    font-size: 1rem;
}

/* Product Image Section */
.cta-divider-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 32px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    border: 1px solid rgba(234, 179, 8, 0.2);
    max-width: 320px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.3);
    border-color: #eab308;
}

.product-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #eab308;
    color: #1e293b;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.product-image-wrapper {
    position: relative;
    margin: 20px 0;
}

.product-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
    animation: float-product 4s ease-in-out infinite;
}

@keyframes float-product {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.product-card:hover .product-image-wrapper img {
    filter: drop-shadow(0 15px 25px rgba(234, 179, 8, 0.3));
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 60px;
}

.product-rating .rating-stars {
    color: #f59e0b;
    font-size: 0.85rem;
}

.product-rating span {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #0f3b6f10, #0f3b6f05);
    border-radius: 60px;
}

.price-tag .original {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-tag .offer {
    font-size: 2rem;
    font-weight: 800;
    color: #0f3b6f;
}

.price-tag .per-bottle {
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-divider-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-divider-content {
        text-align: center;
    }
    
    .cta-divider h2 {
        text-align: center;
    }
    
    .cta-divider h2 span {
        display: inline-block;
    }
    
    .cta-divider-features {
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 350px;
    }
    
    .feature-text {
        text-align: left;
    }
    
    .cta-divider-buttons {
        justify-content: center;
    }
    
    .cta-divider-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-divider {
        padding: 50px 0;
    }
    
    .cta-divider h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 10px 18px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .cta-divider-trust {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .product-card {
        max-width: 280px;
        padding: 25px 20px;
    }
    
    .price-tag .offer {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cta-divider h2 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        border-radius: 28px;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .cta-divider-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        justify-content: center;
        width: 100%;
    }
    
    .cta-divider-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .product-badge {
        top: -10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    
    .product-rating {
        flex-direction: column;
        gap: 5px;
    }
}

/* How Does The Venus Factor Work? - Detailed Section */
.how-works-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.how-works-detailed h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.how-works-detailed h2 span {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: #eab308;
    margin-top: 8px;
}

.works-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.works-intro p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-detailed {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.step-detailed.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #eab308;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 2px solid #eab308;
}

.step-number-large {
    width: 55px;
    height: 55px;
    background: #eab308;
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: #0f3b6f;
}

.step-content {
    padding: 25px 30px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.step-content p:last-child {
    margin-bottom: 0;
}

.step-content strong {
    color: #eab308;
    font-weight: 700;
}

.step-content em {
    font-style: italic;
    color: #eab308;
    font-weight: 500;
}

/* Staggered animation delays */
.step-detailed:nth-child(1) { transition-delay: 0.05s; }
.step-detailed:nth-child(2) { transition-delay: 0.15s; }
.step-detailed:nth-child(3) { transition-delay: 0.25s; }

/* Responsive Design */
@media (max-width: 768px) {
    .how-works-detailed {
        padding: 60px 0;
    }
    
    .how-works-detailed h2 {
        font-size: 2rem;
    }
    
    .how-works-detailed h2 span {
        font-size: 1.1rem;
    }
    
    .works-intro p {
        font-size: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .step-number-large {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .step-header h3 {
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .step-content p {
        font-size: 0.95rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
    }
}

/* Banner Section with Working Parallax Effect */
.banner-divider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.parallax-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.parallax-banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('img/banner.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: translateY(0);
    will-change: transform;
}

/* Optional: Add a gradient overlay on the banner */
.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 59, 111, 0.3) 0%, 
        rgba(234, 179, 8, 0.15) 50%,
        rgba(15, 59, 111, 0.3) 100%);
    pointer-events: none;
}

/* Key Benefits Section - Overlapping the banner */
.key-benefits-detailed {
    position: relative;
    margin-top: -60px;
    background: transparent;
    z-index: 5;
}

.key-benefits-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, #f8fafc 100%);
    z-index: -1;
}

/* Frosted glass effect on benefits intro for overlay effect */
.key-benefits-detailed .benefits-intro {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 25px 35px;
    margin-bottom: 45px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Card styling enhancement for overlay */
.key-benefits-detailed .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.key-benefits-detailed .benefit-card:hover {
    background: white;
    transform: translateY(-8px);
    border-color: #eab308;
}

/* Responsive Design */
@media (max-width: 992px) {
    .parallax-container {
        height: 350px;
    }
    
    .key-benefits-detailed {
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .parallax-container {
        height: 250px;
    }
    
    .key-benefits-detailed {
        margin-top: -30px;
    }
    
    .key-benefits-detailed .benefits-intro {
        backdrop-filter: blur(5px);
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .parallax-container {
        height: 180px;
    }
    
    .key-benefits-detailed {
        margin-top: -20px;
    }
}


/* Key Benefits of The Venus Factor - Card Grid Layout */
.key-benefits-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.key-benefits-detailed h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0f3b6f;
}

.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefits-intro p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #eab308;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eab30815 0%, #eab30808 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #eab308;
    transform: scale(1.05);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #eab308;
    transition: color 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f3b6f;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Staggered animation delays for benefits grid */
.benefit-card:nth-child(1) { transition-delay: 0.02s; }
.benefit-card:nth-child(2) { transition-delay: 0.05s; }
.benefit-card:nth-child(3) { transition-delay: 0.08s; }
.benefit-card:nth-child(4) { transition-delay: 0.11s; }
.benefit-card:nth-child(5) { transition-delay: 0.14s; }
.benefit-card:nth-child(6) { transition-delay: 0.17s; }
.benefit-card:nth-child(7) { transition-delay: 0.20s; }
.benefit-card:nth-child(8) { transition-delay: 0.23s; }

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .key-benefits-detailed {
        padding: 60px 0;
    }
    
    .key-benefits-detailed h2 {
        font-size: 2rem;
    }
    
    .benefits-intro p {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .benefit-card {
        padding: 22px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        gap: 16px;
    }
    
    .benefit-card {
        padding: 18px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .benefit-icon i {
        font-size: 1.3rem;
    }
}

/* Ingredients */
.ingredients {
    padding: 80px 0;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ingredient-card {
    background: #f8fafc;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    width: 260px;
    transition: 0.2s;
}

.ingredient-card img {
    max-width: 100px;
    margin-bottom: 20px;
}

/* Testimonials Slider Section with Large User Images */
.testimonials-slider {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.testimonials-slider h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0f3b6f;
}

.testimonials-slider .section-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 60px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

/* Testimonial Slide */
.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #eab308;
}

/* Large User Image (400x380px) */
.user-image-large {
    flex-shrink: 0;
    width: 380px;
    height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.user-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-slide:hover .user-image-large img {
    transform: scale(1.05);
}

.verified-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #eab308;
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Testimonial Content */
.testimonial-content-large {
    flex: 1;
    position: relative;
}

.quote-icon-large {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: #eab308;
    opacity: 0.2;
    z-index: 0;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.user-details {
    margin-bottom: 15px;
}

.user-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f3b6f;
    margin-bottom: 5px;
}

.user-details span {
    font-size: 0.9rem;
    color: #64748b;
}

.stars-large {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 8px;
}

.verified-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #166534;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #eab308;
    border-color: #eab308;
    transform: translateY(-50%) scale(1.05);
}

.slider-btn i {
    font-size: 1.2rem;
    color: #334155;
}

.slider-btn:hover i {
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 20px;
    background: #eab308;
}

.dot:hover {
    background: #eab308;
}

/* Rating Summary */
.rating-summary {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
    border-radius: 28px;
    border: 1px solid #e2e8f0;
}

.rating-stars i {
    color: #f59e0b;
    font-size: 1.3rem;
    margin: 0 3px;
}

.rating-summary p {
    font-size: 1.2rem;
    margin: 12px 0;
    color: #1e293b;
}

.rating-summary p strong {
    color: #eab308;
    font-size: 1.4rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.trust-badges i {
    color: #eab308;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-slide {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }
    
    .user-image-large {
        width: 280px;
        height: 300px;
    }
    
    .quote-icon-large {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .slider-container {
        padding: 20px 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 60px 0;
    }
    
    .slider-container {
        padding: 20px 40px;
    }
    
    .user-image-large {
        width: 220px;
        height: 240px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .rating-stars i {
        font-size: 1rem;
    }
    
    .rating-summary p {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 20px;
    }
    
    .user-image-large {
        width: 180px;
        height: 200px;
    }
    
    .verified-overlay {
        bottom: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.6rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .user-details h4 {
        font-size: 1.1rem;
    }
    
    .slider-container {
        padding: 20px 30px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* Pricing Section with Product Images & Hover Animations */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0f3b6f;
}

.pricing .section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    border-radius: 32px;
    padding: 28px 24px 32px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    border-color: #eab308;
}

/* Popular Card Styling */
.card.popular {
    border: 2px solid #eab308;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    transform: scale(1.02);
}

.card.popular:hover {
    transform: translateY(-12px) scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #eab308;
    color: #1e293b;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
}

.popular-badge i {
    margin: 0 5px;
}

.package-badge {
    background: #0f3b6f;
    color: white;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Product Image with Animation */
.product-image-wrapper {
    position: relative;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.product-bottle {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card:hover .product-bottle {
    transform: translateY(-8px) scale(1.05);
}

.product-bottle img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.card:hover .product-bottle img {
    filter: drop-shadow(0 15px 25px rgba(234, 179, 8, 0.3));
}

.bottle-count-overlay {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #eab308;
    color: #1e293b;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover .bottle-count-overlay {
    background: #ca8a04;
    transform: translateX(-50%) scale(1.05);
}

.free-shipping-tag {
    position: absolute;
    top: -15px;
    right: -20px;
    background: #16a34a;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    transform: rotate(8deg);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(8deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.05); }
}

.supply-duration {
    color: #64748b;
    font-size: 0.9rem;
    margin: 15px 0 10px;
}

.price-wrapper {
    margin: 15px 0 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f3b6f;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.total-price {
    font-size: 1rem;
    color: #475569;
    margin-top: 5px;
}

.shipping-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.savings-badge {
    background: #eab30820;
    color: #ca8a04;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    margin: 10px 0;
}

.savings-badge.mega {
    background: #ef444420;
    color: #dc2626;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.bonus-text {
    background: linear-gradient(135deg, #0f3b6f 0%, #1e4a76 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.card:hover .bonus-text {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(15, 59, 111, 0.3);
}

.bonus-text i {
    margin-right: 8px;
    color: #eab308;
}

.bonus-text strong {
    color: #eab308;
}

/* Pricing Buttons */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #eab308;
    color: #1e293b;
    padding: 14px 20px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    background: #ca8a04;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.4);
}

.pricing-btn:hover i {
    transform: translateX(5px);
}

.pricing-btn.primary {
    background: #ef4444;
    color: white;
}

.pricing-btn.primary:hover {
    background: #dc2626;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Guarantee Badge */
.guarantee-badge-large {
    text-align: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    border: 1px solid #bbf7d0;
}

.guarantee-badge-large i {
    font-size: 1.3rem;
}

/* Card animation delays */
.card:nth-child(1) { transition-delay: 0.05s; }
.card:nth-child(2) { transition-delay: 0.15s; }
.card:nth-child(3) { transition-delay: 0.25s; }

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-cards {
        gap: 25px;
    }
    
    .card {
        max-width: 320px;
        padding: 24px 20px 28px;
    }
    
    .product-bottle img {
        max-width: 150px;
    }
    
    .price {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    
    .card {
        max-width: 380px;
        width: 100%;
    }
    
    .card.popular {
        transform: scale(1);
    }
    
    .card.popular:hover {
        transform: translateY(-12px) scale(1.02);
    }
    
    .guarantee-badge-large {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .free-shipping-tag {
        right: -10px;
        top: -10px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 20px 16px 24px;
    }
    
    .product-bottle img {
        max-width: 130px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .bonus-text {
        font-size: 0.7rem;
    }
    
    .savings-badge.mega {
        font-size: 0.75rem;
    }
    
    .bottle-count-overlay {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Free Bonus Section - After Pricing */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bonus-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 59, 111, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Column - Image with Stamp */
.bonus-image-col {
    position: relative;
}

.bonus-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.bonus-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.bonus-program-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.bonus-image-wrapper:hover .bonus-program-image {
    transform: scale(1.02);
}

/* $300 Stamp - Red Background */
.value-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    border-radius: 16px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    animation: stamp-pulse 2s ease-in-out infinite;
    transform: rotate(5deg);
}

@keyframes stamp-pulse {
    0%, 100% {
        transform: rotate(5deg) scale(1);
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
        box-shadow: 0 12px 28px rgba(239, 68, 68, 0.6);
    }
}

.stamp-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
}

.stamp-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stamp-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #eab308;
    color: #1e293b;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Right Column - Content */
.bonus-content-col {
    padding: 20px 0;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eab308;
    color: #1e293b;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-badge i {
    font-size: 1rem;
}

.bonus-content-col h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0f3b6f;
}

.bonus-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

.bonus-description strong {
    color: #eab308;
}

/* Bonus Features List */
.bonus-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.bonus-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bonus-feature i {
    font-size: 1.3rem;
    color: #eab308;
    margin-top: 3px;
    flex-shrink: 0;
}

.bonus-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f3b6f;
}

.bonus-feature p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Bonus CTA Button */
.bonus-cta {
    margin-top: 30px;
}

.bonus-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ef4444;
    color: white;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.bonus-btn i {
    transition: transform 0.3s ease;
}

.bonus-btn:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

.bonus-btn:hover i {
    transform: translateX(6px);
}

.bonus-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bonus-content-col h2 {
        text-align: center;
    }
    
    .bonus-badge {
        margin: 0 auto 20px;
        display: inline-flex;
        width: auto;
    }
    
    .bonus-content-col {
        text-align: center;
    }
    
    .bonus-feature {
        text-align: left;
        justify-content: center;
    }
    
    .bonus-cta {
        text-align: center;
    }
    
    .value-stamp {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
    }
    
    .stamp-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 60px 0;
    }
    
    .bonus-content-col h2 {
        font-size: 1.8rem;
    }
    
    .bonus-description {
        font-size: 1rem;
    }
    
    .bonus-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .bonus-feature i {
        margin-bottom: 8px;
    }
    
    .value-stamp {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .stamp-value {
        font-size: 1.3rem;
    }
    
    .stamp-text {
        font-size: 0.6rem;
    }
    
    .stamp-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
        bottom: -10px;
    }
    
    .bonus-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-content-col h2 {
        font-size: 1.5rem;
    }
    
    .bonus-feature h4 {
        font-size: 1rem;
    }
    
    .bonus-feature p {
        font-size: 0.8rem;
    }
}

/* Guarantee Section */
.guarantee {
    background: #eef2ff;
    padding: 60px 0;
}

.guarantee-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-box ul {
    display: inline-block;
    text-align: left;
    margin: 20px 0;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #cbd5e1;
    margin-bottom: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question span {
    font-size: 1.8rem;
    font-weight: 300;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    font-size: 1.1rem;
}

.faq-answer.show {
    display: block;
}

/* Final CTA Section with Product Image */
.final-cta {
    background: linear-gradient(135deg, #0f3b6f 0%, #1e4a76 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="white" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M500,500 C600,500 700,600 700,700 C700,800 600,900 500,900 C400,900 300,800 300,700 C300,600 400,500 500,500 Z"/></svg>') repeat;
    pointer-events: none;
}

.final-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.final-cta-content {
    flex: 1;
    min-width: 300px;
    color: white;
}

.cta-badge {
    display: inline-block;
    background: #eab308;
    color: #1e293b;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-content h2 span {
    color: #eab308;
    display: block;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e2e8f0;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #e2e8f0;
}

.cta-feature i {
    color: #eab308;
    font-size: 1.2rem;
}

.final-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.final-buttons .btn-primary {
    background: #eab308;
    color: #1e293b;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.final-buttons .btn-primary i {
    transition: transform 0.3s ease;
}

.final-buttons .btn-primary:hover i {
    transform: translateX(5px);
}

.final-buttons .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
}

.final-buttons .btn-outline:hover {
    background: white;
    color: #0f3b6f;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-trust i {
    margin-right: 6px;
    color: #eab308;
}

/* Final CTA Product Image Showcase */
.final-cta-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.product-showcase {
    position: relative;
    text-align: center;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #eab308;
    color: #1e293b;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float-badge 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.product-showcase img {
    max-width: 100%;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
    transition: all 0.4s ease;
    animation: float-bottle 4s ease-in-out infinite;
}

@keyframes float-bottle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.product-showcase img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 25px 45px rgba(234, 179, 8, 0.3));
}

.rating-circle {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
    50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(234, 179, 8, 0.3); }
}

.rating-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f3b6f;
    line-height: 1;
}

.rating-stars {
    font-size: 0.6rem;
    color: #f59e0b;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.65rem;
    color: #64748b;
}

/* Footer Enhanced Design */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 60px 0 30px;
    border-top: 4px solid #eab308;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.footer-logo span {
    color: #eab308;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #eab308;
    color: #1e293b;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #eab308;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group ul li a i {
    font-size: 0.7rem;
    color: #eab308;
    transition: transform 0.3s ease;
}

.footer-links-group ul li a:hover {
    color: #eab308;
    transform: translateX(5px);
}

.footer-links-group ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact .contact-item i {
    width: 20px;
    color: #eab308;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
    margin: 30px 0;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin-bottom: 12px;
    font-size: 0.7rem;
}

.footer-disclaimer strong {
    color: #94a3b8;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #64748b;
}

.payment-methods span {
    color: #94a3b8;
}

.payment-methods i {
    font-size: 1.8rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #eab308;
}

/* Responsive Design */
@media (max-width: 992px) {
    .final-cta-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta-content h2 {
        text-align: center;
    }
    
    .cta-features {
        align-items: center;
    }
    
    .final-buttons {
        justify-content: center;
    }
    
    .cta-trust {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content p {
        font-size: 1rem;
    }
    
    .product-showcase img {
        width: 220px;
    }
    
    .floating-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        top: -15px;
        right: -10px;
    }
    
    .rating-circle {
        width: 75px;
        height: 75px;
        bottom: -15px;
        left: -15px;
    }
    
    .rating-number {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-group ul li a {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .payment-methods {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .final-buttons .btn-primary,
    .final-buttons .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .product-showcase img {
        width: 180px;
    }
    
    .floating-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .rating-circle {
        width: 65px;
        height: 65px;
    }
    
    .rating-number {
        font-size: 1.1rem;
    }
    
    .rating-stars {
        font-size: 0.5rem;
    }
    
    .rating-text {
        font-size: 0.55rem;
    }
}