/* ============================================
   LIBIDO MAX - MODERN GRADIENT DESIGN
   Mobile-First Responsive CSS
   ============================================ */

/* ============================================
   CSS 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

section {
    padding: 60px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.navigation {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navigation.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.nav-logo span {
    color: #FCD34D;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FCD34D;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: #fff;
    color: #4F46E5;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

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

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

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

/* ============================================
   SECTION 2: HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.product-bottle {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.3));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

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

.hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.hero-cta-btn:active {
    transform: scale(0.98);
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

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

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
}

/* ============================================
   SECTION 3: WHY CHOOSE US
   ============================================ */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.badge-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

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

.badge-title {
    font-size: 18px;
    color: #4F46E5;
    margin-bottom: 12px;
}

.badge-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

/* ============================================
   SECTION 4: WHAT IS PRODUCT
   ============================================ */
.what-is-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.what-is-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .what-is-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   SECTION 5: HOW IT WORKS (ACCORDION)
   ============================================ */
.how-it-works-section {
    padding: 80px 0;
    background: #fff;
}

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

.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
}

.accordion-header span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #4F46E5;
    text-align: left;
}

.accordion-icon {
    font-size: 28px;
    color: #4F46E5;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px 25px;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 576px) {
    .accordion-header {
        padding: 16px 20px;
    }

    .accordion-header span:first-child {
        font-size: 16px;
    }

    .accordion-content p {
        font-size: 14px;
    }
}

/* ============================================
   SECTION 6: CUSTOMER REVIEWS
   ============================================ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.review-card.visible {
    opacity: 1;
    transform: scale(1);
    animation: fadeInScale 0.6s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #06B6D4;
}

.review-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
}

.review-location {
    font-size: 14px;
    color: #666;
}

.review-rating {
    font-size: 22px;
    color: #FCD34D;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

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

/* ============================================
   SECTION 7: PRICING WITH COUNTDOWN
   ============================================ */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #fff;
}

.countdown-timer {
    text-align: center;
    margin: 30px 0 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.timer-label {
    font-size: 16px;
    margin-bottom: 10px;
    color: #FCD34D;
}

.timer-display {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.timer-separator {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.pricing-card-popular {
    border: 3px solid #FCD34D;
    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: #FCD34D;
    color: #1e1b4b;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-label {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-bottles {
    font-size: 24px;
    color: #4F46E5;
    margin: 10px 0;
}

.pricing-supply {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

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

.pricing-price {
    margin: 20px 0;
}

.price-per-bottle {
    font-size: 42px;
    font-weight: 700;
    color: #4F46E5;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.pricing-total {
    margin: 15px 0;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    color: #10B981;
}

.pricing-badges {
    margin: 15px 0;
}

.bonus-badge, .shipping-badge {
    display: inline-block;
    background: #10B981;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 5px;
    font-weight: 600;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
    min-height: 50px;
}

.pricing-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.pricing-cta-btn:active {
    transform: scale(0.98);
}

.payment-logos {
    margin-top: 20px;
}

.payment-logos img {
    max-width: 250px;
    margin: 0 auto;
}

.rating-image {
    text-align: center;
    margin-top: 40px;
}

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

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

    .pricing-card-popular {
        transform: scale(1);
    }

    .timer-display {
        font-size: 36px;
    }
}

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

/* ============================================
   SECTION 8: INGREDIENTS
   ============================================ */
.ingredients-section {
    padding: 80px 0;
    background: #fff;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.ingredient-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #4F46E5;
}

.ingredient-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.15);
}

.ingredient-name {
    font-size: 20px;
    color: #4F46E5;
    margin-bottom: 12px;
}

.ingredient-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.ingredient-benefits {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

/* ============================================
   SECTION 9: SCIENTIFIC EVIDENCE
   ============================================ */
.scientific-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.science-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.science-accordion {
    margin-top: 30px;
}

.science-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.science-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.science-header:hover {
    background: #f0f9ff;
}

.science-header span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #4F46E5;
    text-align: left;
}

.science-icon {
    font-size: 28px;
    color: #4F46E5;
    transition: transform 0.3s ease;
}

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

.science-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.science-item.active .science-body {
    max-height: 500px;
    padding: 20px 25px;
}

.science-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ============================================
   SECTION 10: MONEY BACK GUARANTEE
   ============================================ */
.guarantee-section {
    padding: 80px 0;
    background: #fff;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.guarantee-image img {
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-point {
    margin-bottom: 30px;
}

.guarantee-point h3 {
    font-size: 22px;
    color: #4F46E5;
    margin-bottom: 12px;
}

.guarantee-point p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

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

/* ============================================
   SECTION 11: BENEFITS
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.benefits-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.benefit-text h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTION 13: FAQ
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

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

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
}

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 600;
    color: #4F46E5;
}

.faq-icon {
    font-size: 28px;
    color: #4F46E5;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ============================================
   SECTION 16: FINAL CTA
   ============================================ */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #fff;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.final-cta-image img {
    max-width: 400px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.final-cta-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
}

.final-cta-pricing {
    margin: 25px 0;
}

.final-price-old {
    display: block;
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.final-price-new {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #FCD34D;
}

.final-cta-btn {
    display: inline-block;
    background: #FCD34D;
    color: #1e1b4b;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.3);
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 211, 77, 0.5);
}

.final-cta-guarantee {
    font-size: 14px;
    color: #bfdbfe;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .final-cta-title {
        font-size: 26px;
    }

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

    .final-cta-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 18px;
    }
}

/* ============================================
   SECTION 17: FOOTER
   ============================================ */
.footer {
    background: #1e1b4b;
    color: #fff;
    padding: 50px 0 30px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bfdbfe;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FCD34D;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FCD34D;
    color: #1e1b4b;
    transform: translateY(-3px);
}

.footer-copyright p {
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ============================================
   PURCHASE NOTIFICATION POPUP
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(-400px);
    transition: transform 0.4s ease;
    max-width: 320px;
}

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

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

.notification-text {
    font-size: 14px;
    color: #333;
}

.notification-text strong {
    color: #4F46E5;
}

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

    .notification-text {
        font-size: 12px;
    }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.exit-popup-overlay.show .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: #e5e7eb;
    color: #333;
}

.exit-popup-title {
    font-size: 28px;
    text-align: center;
    color: #4F46E5;
    margin-bottom: 15px;
}

.exit-popup-text {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.exit-popup-price {
    text-align: center;
    margin: 25px 0;
}

.exit-popup-old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
}

.exit-popup-new-price {
    font-size: 42px;
    font-weight: 700;
    color: #10B981;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.exit-popup-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.exit-popup-guarantee {
    text-align: center;
    font-size: 13px;
    color: #666;
}

@media (max-width: 576px) {
    .exit-popup {
        padding: 30px 20px;
        width: 95%;
    }

    .exit-popup-title {
        font-size: 22px;
    }

    .exit-popup-text {
        font-size: 16px;
    }

    .exit-popup-new-price {
        font-size: 36px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    h1 {
        font-size: 48px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .scroll-to-top,
    .purchase-notification,
    .exit-popup-overlay {
        display: none !important;
    }
}