/* ===================================
   SUPER BETA PROSTATE - PREMIUM CSS
   Medical Professional Design
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-blue: #1E40AF;
    --secondary-blue: #3B82F6;
    --light-blue: #93C5FD;
    --accent-gold: #D4AF37;
    --dark: #1F2937;
    --text-dark: #374151;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E6C3 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(30,64,175,0.05) 0%, rgba(59,130,246,0.1) 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}

input, select, textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== NAVIGATION ===== */
#navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

#navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

#navbar nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    min-height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-blue);
}

.nav-brand .logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
    padding: 0.5rem 0;
}

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

.nav-links .cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.nav-links .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

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

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

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-links .cta-btn {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-overlay);
    padding: 60px 0;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 0;
    }
}

.hero-image {
    order: -1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-image {
        order: 0;
    }
}

/* Floating Product Animation */
.floating-product {
    animation: floating 3s ease-in-out infinite;
}

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

.floating-product img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(30, 64, 175, 0.2));
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .hero-text h1 {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 17px;
    }
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 1.5rem;
    transition: all var(--transition-normal);
    min-height: 50px;
    text-align: center;
}

@media (max-width: 576px) {
    .cta-button {
        width: 100%;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 18px;
    min-height: 56px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 14px;
    color: var(--success-green);
    font-weight: 600;
}

@media (min-width: 576px) {
    .trust-badges {
        gap: 1.5rem;
    }
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 60px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }
}

.why-choose h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .why-choose h2 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .why-choose h2 {
        font-size: 36px;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== WHAT IS SECTION ===== */
.what-is {
    padding: 60px 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .what-is {
        padding: 80px 0;
    }
}

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

@media (min-width: 768px) {
    .content-split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.what-is h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .what-is h2 {
        font-size: 32px;
    }
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.image-content img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
}

.how-it-works h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .how-it-works h2 {
        font-size: 32px;
    }
}

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

.accordion-item {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item:hover {
    border-color: var(--light-blue);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    min-height: 48px;
    cursor: pointer;
}

@media (min-width: 576px) {
    .accordion-header {
        font-size: 18px;
    }
}

.accordion-header:hover {
    background: #F3F4F6;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-blue);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 1.5rem;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 60px 0;
    background: var(--gradient-overlay);
}

@media (min-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
}

.reviews h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .reviews h2 {
        font-size: 32px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.review-card.animate {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:nth-child(2).animate {
    animation-delay: 0.2s;
}

.review-card:nth-child(3).animate {
    animation-delay: 0.4s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

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

.stars {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.review-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 60px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
}

.pricing h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pricing h2 {
        font-size: 32px;
    }
}

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 18px;
    }
}

/* Countdown Timer */
.countdown-timer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    margin: 0 auto 3rem;
    box-shadow: var(--shadow-lg);
}

.timer-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 576px) {
    .timer-label {
        font-size: 16px;
    }
}

.timer-display {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
}

@media (min-width: 576px) {
    .timer-display {
        font-size: 48px;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.pricing-card.popular {
    border-color: var(--accent-gold);
    border-width: 3px;
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
}

@media (min-width: 992px) {
    .pricing-card.popular {
        transform: scale(1.05);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.08) translateY(-10px);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 12px;
    box-shadow: var(--shadow-md);
    letter-spacing: 1px;
}

.card-label {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .pricing-card h3 {
        font-size: 24px;
    }
}

.supply {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card img {
    max-width: 150px;
    margin: 0 auto 1.5rem;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .price-tag {
        font-size: 42px;
    }
}

.price-tag span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.total-price {
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
    margin-right: 0.5rem;
}

.new-price {
    color: var(--success-green);
    font-size: 28px;
    font-weight: 700;
}

.bonus-badge, .shipping-badge {
    display: inline-block;
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin: 0.5rem;
}

.add-to-cart {
    display: block;
    margin: 1.5rem 0;
    transition: var(--transition-fast);
}

.add-to-cart:hover {
    transform: scale(1.05);
}

.add-to-cart img {
    max-width: 100%;
    margin: 0 auto;
}

.payment-logos {
    max-width: 200px;
    margin: 1rem auto 0;
}

.rating-section {
    text-align: center;
    margin-top: 2rem;
}

.rating-section img {
    max-width: 300px;
    margin: 0 auto;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients {
    padding: 60px 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .ingredients {
        padding: 80px 0;
    }
}

.ingredients h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .ingredients h2 {
        font-size: 32px;
    }
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.ingredient-card {
    background: var(--white);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.ingredient-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.ingredient-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== SCIENTIFIC EVIDENCE ===== */
.scientific-evidence {
    padding: 60px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .scientific-evidence {
        padding: 80px 0;
    }
}

.scientific-evidence h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .scientific-evidence h2 {
        font-size: 32px;
    }
}

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

.evidence-section {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-blue);
}

.evidence-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.evidence-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
    padding: 60px 0;
    background: var(--gradient-overlay);
}

@media (min-width: 768px) {
    .guarantee {
        padding: 80px 0;
    }
}

.guarantee h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .guarantee h2 {
        font-size: 32px;
    }
}

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

@media (min-width: 768px) {
    .guarantee-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
}

.guarantee-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.guarantee-point {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.guarantee-point h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.guarantee-point p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 60px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .benefits {
        padding: 80px 0;
    }
}

.benefits h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits h2 {
        font-size: 32px;
    }
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.checkmark {
    font-size: 28px;
    color: var(--success-green);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 60px 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .faq {
        padding: 80px 0;
    }
}

.faq h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .faq h2 {
        font-size: 32px;
    }
}

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

.faq-item {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    min-height: 48px;
    cursor: pointer;
    transition: var(--transition-fast);
}

@media (min-width: 576px) {
    .faq-header {
        font-size: 18px;
    }
}

.faq-header:hover {
    background: var(--off-white);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-blue);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-content {
    max-height: 1000px;
}

.faq-content p {
    padding: 1.5rem;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

@media (min-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }
}

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

.cta-image {
    max-width: 300px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 32px;
    }
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .price-display {
        flex-direction: row;
        justify-content: center;
    }
}

.regular-price {
    font-size: 18px;
}

.special-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
}

@media (min-width: 576px) {
    .special-price {
        font-size: 36px;
    }
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    margin-top: 1rem;
}

.final-cta .cta-button:hover {
    background: var(--accent-gold);
    color: var(--dark);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 14px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

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

.footer-links a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.disclaimer-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.disclaimer-text p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-media a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-media a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    z-index: 998;
    max-width: 300px;
}

@media (max-width: 576px) {
    .purchase-notification {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.notification-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .nav-links,
    .hamburger,
    .scroll-to-top,
    .purchase-notification,
    .countdown-timer {
        display: none !important;
    }
}
