/* ===================================
   PRIMAL BLAST - PREMIUM STYLESHEET
   Mobile-First Responsive Design
   =================================== */

/* CSS Variables for Theming */
:root {
    /* Primary Color Palette - Medical Professional */
    --primary-blue: #1E40AF;
    --primary-blue-light: #3B82F6;
    --primary-blue-dark: #1E3A8A;
    --accent-cyan: #06B6D4;
    --accent-gold: #F59E0B;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */

* {
    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);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-size: 16px;
    font-family: inherit;
}

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

/* ===================================
   EXIT POPUP
   =================================== */

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.exit-popup.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-2xl);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.popup-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.popup-body h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.popup-body p {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.popup-timer {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-cta {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
}

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

@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-body h3 {
        font-size: 22px;
    }
    
    .popup-body p {
        font-size: 16px;
    }
}

/* ===================================
   PURCHASE NOTIFICATION
   =================================== */

.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    max-width: 350px;
    animation: slideInLeft 0.5s ease;
}

.purchase-notification.active {
    display: flex;
}

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

.notification-text {
    font-size: 14px;
    line-height: 1.4;
}

.notification-name {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}

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

/* ===================================
   NAVIGATION - SECTION 1
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 9998;
    transition: var(--transition-base);
}

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-icon {
    font-size: 28px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 10;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-base);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}

/* ===================================
   HERO SECTION - SECTION 2
   =================================== */

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: heroFloat 3s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--error), #DC2626);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.product-image {
    width: 50%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue-light));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-cyan));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInRight 0.6s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    animation: slideInRight 0.8s ease;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1rem;
    animation: slideInRight 1s ease;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.hero-cta-wrapper {
    animation: slideInRight 1.2s ease;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    min-height: 60px;
}

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

.cta-arrow {
    width: 24px;
    height: 24px;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .floating-badge {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }
}

/* ===================================
   WHY CHOOSE US - SECTION 3
   =================================== */

.why-choose {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

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

.badge-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.badge-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.badge-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.badge-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.badge-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 991px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* ===================================
   WHAT IS SECTION - SECTION 4
   =================================== */

.what-is {
    padding: 4rem 0;
    background: var(--gray-50);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.what-is-content {
    order: 1;
}

.what-is-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.what-is-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

.what-is-image {
    order: 2;
    position: relative;
}

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

.image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue-light));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

@media (max-width: 768px) {
    .what-is-grid {
        grid-template-columns: 1fr;
    }
    
    .what-is-image {
        order: 1;
    }
    
    .what-is-content {
        order: 2;
    }
    
    .what-is-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   HOW IT WORKS - SECTION 5
   =================================== */

.how-it-works {
    padding: 4rem 0;
    background: var(--white);
}

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

.accordion-item {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    min-height: 60px;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-header.active {
    background: var(--primary-blue);
    color: var(--white);
}

.accordion-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.accordion-header.active .accordion-number {
    background: var(--white);
    color: var(--primary-blue);
}

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-base);
}

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

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

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

.accordion-content p {
    padding: 1.5rem;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

@media (max-width: 576px) {
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .accordion-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===================================
   CUSTOMER REVIEWS - SECTION 6
   =================================== */

.reviews {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue-light);
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.review-location {
    font-size: 14px;
    color: var(--gray-500);
}

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

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRICING SECTION - SECTION 7 & 13
   =================================== */

.pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.countdown-timer {
    text-align: center;
    margin-bottom: 3rem;
}

.timer-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

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

.timer-box {
    background: linear-gradient(135deg, var(--error), #DC2626);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    min-width: 120px;
    text-align: center;
}

.timer-box span:first-child {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.timer-label-small {
    display: block;
    font-size: 14px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 48px;
    font-weight: 800;
    color: var(--error);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #FFF9E6 0%, var(--white) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--warning));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
}

.pricing-label {
    background: var(--primary-blue-light);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 1rem;
}

.pricing-package {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-supply {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.pricing-image-wrapper {
    margin: 1.5rem 0;
}

.pricing-image {
    max-width: 200px;
    margin: 0 auto;
}

.pricing-amount {
    margin-bottom: 0.5rem;
}

.price-per {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-total {
    margin-bottom: 1.5rem;
}

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

.price-new {
    font-size: 36px;
    font-weight: 800;
    color: var(--success);
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bonus-tag {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
}

.pricing-btn {
    display: block;
    margin-bottom: 1rem;
}

.atc-img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: var(--transition-base);
}

.atc-img:hover {
    transform: scale(1.05);
}

.payment-logos img {
    max-width: 100%;
}

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

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

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .timer-box {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .timer-box span:first-child {
        font-size: 36px;
    }
    
    .timer-separator {
        font-size: 36px;
    }
}

/* ===================================
   BONUS SECTION - SECTION 8
   =================================== */

.bonus {
    padding: 4rem 0;
    background: var(--white);
}

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

.bonus-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
}

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

.bonus-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.bonus-image {
    width: 100%;
    border-radius: var(--radius-md);
}

.bonus-value {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
}

.bonus-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.bonus-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   INGREDIENTS - SECTION 9
   =================================== */

.ingredients {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.ingredient-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
}

.ingredient-card:hover {
    border-color: var(--primary-blue-light);
    box-shadow: var(--shadow-lg);
}

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

.ingredient-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.ingredient-badge {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.ingredient-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.ingredient-benefits {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SCIENTIFIC EVIDENCE - SECTION 10
   =================================== */

.scientific {
    padding: 4rem 0;
    background: var(--white);
}

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

.scientific-item {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.scientific-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    min-height: 60px;
}

.scientific-header:hover {
    background: var(--gray-50);
}

.scientific-header.active {
    background: var(--primary-blue);
    color: var(--white);
}

.scientific-icon {
    font-size: 24px;
}

.scientific-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.scientific-toggle {
    font-size: 24px;
    transition: var(--transition-base);
}

.scientific-header.active .scientific-toggle {
    transform: rotate(45deg);
}

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

.scientific-content.active {
    max-height: 600px;
}

.scientific-content p {
    padding: 1.5rem;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ===================================
   MONEY BACK GUARANTEE - SECTION 11
   =================================== */

.guarantee {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

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

.guarantee-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-image {
        order: 1;
    }
    
    .guarantee-content {
        order: 2;
    }
}

/* ===================================
   BENEFITS - SECTION 12
   =================================== */

.benefits {
    padding: 4rem 0;
    background: var(--white);
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
}

.benefit-item:hover {
    border-color: var(--primary-blue-light);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-blue);
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ SECTION - SECTION 14
   =================================== */

.faq {
    padding: 4rem 0;
    background: var(--white);
}

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

.faq-item {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    min-height: 60px;
}

.faq-header:hover {
    background: var(--gray-50);
}

.faq-header.active {
    background: var(--primary-blue);
    color: var(--white);
}

.faq-question {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-base);
}

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

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

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

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

@media (max-width: 576px) {
    .faq-question {
        font-size: 16px;
    }
}

/* ===================================
   FINAL CTA - SECTION 15
   =================================== */

.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.final-cta-image img {
    width: 100%;
    animation: finalFloat 3s ease-in-out infinite;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta-pricing {
    margin-bottom: 1.5rem;
}

.final-price-old {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.final-price-old span {
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price-new {
    font-size: 32px;
}

.final-price-new strong {
    font-size: 42px;
    color: var(--accent-gold);
}

.final-cta-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    min-height: 60px;
}

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

.final-cta-btn svg {
    width: 24px;
    height: 24px;
}

.final-cta-guarantee {
    margin-top: 1.5rem;
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   FOOTER - SECTION 16
   =================================== */

.footer {
    padding: 3rem 0 1rem;
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-base);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-disclaimer {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--gray-500);
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    box-shadow: var(--shadow-xl);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 9997;
}

.scroll-to-top.visible {
    display: flex;
}

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

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes finalFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

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

/* ===================================
   ACCESSIBILITY & REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .hamburger,
    .exit-popup,
    .purchase-notification,
    .scroll-to-top {
        display: none !important;
    }
}
