/* ================================
   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-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

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

/* ================================
   UTILITY CLASSES
   ================================ */

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

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

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

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        padding: 18px 24px;
    }
}

/* ================================
   NAVIGATION
   ================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #4F46E5;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: none;
}

@media (min-width: 480px) {
    .logo-text {
        display: inline;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4F46E5;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.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-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    list-style: none;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    right: 0;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F46E5;
}

.btn-nav {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        position: static;
        flex-direction: row;
        align-items: center;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        box-shadow: none;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 0;
    }
    
    .btn-nav {
        margin-top: 0;
    }
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.product-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

.highlight {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #475569;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #10B981;
    flex-shrink: 0;
}

.btn-hero {
    font-size: 18px;
    padding: 18px 40px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-features {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */

.why-choose-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

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

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

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

.badge-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.badge-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

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

@media (min-width: 992px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 40px;
    }
}

/* ================================
   WHAT IS SECTION
   ================================ */

.what-is-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

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

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

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

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

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

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

/* ================================
   HOW IT WORKS SECTION
   ================================ */

.how-it-works-section {
    padding: 60px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 44px;
}

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

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

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.accordion-arrow {
    width: 24px;
    height: 24px;
    color: #4F46E5;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

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

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

.accordion-content p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .accordion-title {
        font-size: 20px;
    }
}

/* ================================
   REVIEWS SECTION
   ================================ */

.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

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

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4F46E5;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.reviewer-location {
    font-size: 14px;
    color: #64748b;
}

.review-rating {
    margin-bottom: 15px;
}

.review-rating img {
    width: 100px;
}

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

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

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

/* ================================
   PRICING SECTION
   ================================ */

.pricing-section {
    padding: 60px 0;
    background: white;
}

.countdown-timer {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.timer-text {
    font-size: 18px;
    font-weight: 600;
    color: #EF4444;
    margin-bottom: 20px;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 48px;
    font-weight: 800;
    color: #4F46E5;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    padding: 15px 30px;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.timer-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.timer-colon {
    font-size: 40px;
    font-weight: 700;
    color: #4F46E5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
}

.pricing-card.featured {
    border-color: #4F46E5;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.pricing-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4F46E5;
    margin-bottom: 10px;
}

.pricing-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.pricing-supply {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

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

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

.pricing-price {
    text-align: center;
    margin-bottom: 15px;
}

.price-per {
    font-size: 40px;
    font-weight: 800;
    color: #4F46E5;
}

.price-bottle {
    display: block;
    font-size: 14px;
    color: #64748b;
}

.pricing-total {
    text-align: center;
    margin-bottom: 20px;
}

.total-original {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 10px;
}

.total-discount {
    font-size: 28px;
    font-weight: 800;
    color: #10B981;
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-badge,
.shipping-badge {
    text-align: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.shipping-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.btn-pricing {
    display: block;
    margin-bottom: 20px;
}

.btn-cart-icon {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.payment-logos {
    text-align: center;
}

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

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

.footer-rating {
    max-width: 150px;
    margin: 0 auto 15px;
}

.rating-text {
    font-size: 14px;
    color: #64748b;
}

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

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

/* ================================
   BONUS SECTION
   ================================ */

.bonus-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.bonus-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bonus-image {
    margin-bottom: 20px;
}

.bonus-image img {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 15px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 18px;
    font-weight: 700;
    color: #10B981;
}

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

/* ================================
   INGREDIENTS SECTION
   ================================ */

.ingredients-section {
    padding: 60px 0;
    background: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4F46E5;
}

.ingredient-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.ingredient-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

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

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

/* ================================
   SCIENCE SECTION
   ================================ */

.science-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

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

.science-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.science-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.science-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* ================================
   GUARANTEE SECTION
   ================================ */

.guarantee-section {
    padding: 60px 0;
    background: white;
}

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

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

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

.guarantee-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.guarantee-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

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

/* ================================
   BENEFITS SECTION
   ================================ */

.benefits-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    color: #10B981;
    flex-shrink: 0;
    background: #d1fae5;
    border-radius: 50%;
    padding: 6px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

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

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    padding: 60px 0;
    background: white;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 44px;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: #4F46E5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

.pulse-animation {
    animation: pulseAnimation 2s ease-in-out infinite;
}

.final-cta-text {
    text-align: center;
    color: white;
}

.final-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.final-cta-pricing {
    margin-bottom: 30px;
}

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

.final-price-new {
    display: block;
    font-size: 40px;
    font-weight: 800;
}

.btn-final-cta {
    background: white;
    color: #4F46E5;
    font-size: 20px;
    padding: 20px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .final-cta-text {
        text-align: left;
    }
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 30px;
}

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

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

.legal-link {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

.link-separator {
    color: #475569;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4F46E5;
    transform: translateY(-3px);
}

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

.footer-copyright {
    border-top: 1px solid #334155;
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 14px;
    color: #94a3b8;
}

/* ================================
   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: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

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

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

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

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-content {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.popup-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 25px;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

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

.purchase-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    max-width: 350px;
    z-index: 999;
    transition: bottom 0.3s ease;
}

.purchase-notification.show {
    bottom: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

.notification-name {
    color: #1e293b;
    font-weight: 700;
}

@media (max-width: 480px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

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

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

/* Fade-in animation for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.badge-card:nth-child(1) { transition-delay: 0.1s; }
.badge-card:nth-child(2) { transition-delay: 0.2s; }
.badge-card:nth-child(3) { transition-delay: 0.3s; }
.badge-card:nth-child(4) { transition-delay: 0.4s; }
