/* ========================================
   CRITICAL CSS - LOADED INLINE IN HEAD
   ======================================== */

/* Reset and 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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

/* ========================================
   SECTION 1: NAVIGATION
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
}

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

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

.nav-link {
    color: #1a202c;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}

/* ========================================
   SECTION 2: HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.3));
    animation: floatImage 4s ease-in-out infinite;
}

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

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

.hero-text {
    z-index: 2;
}

.hero-headline {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
    color: #1a202c;
}

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

.hero-description {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.hero-description p {
    margin-bottom: 15px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    padding: 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
}

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

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

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-benefits li {
        font-size: 16px;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 18px;
        min-height: 48px;
    }
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #4F46E5;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.why-card img {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.why-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

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

@media (max-width: 575px) {
    .why-choose {
        padding: 40px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}

/* ========================================
   SECTION 4: FORMULA STANDOUT
   ======================================== */
.formula-standout {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: #1a202c;
}

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

.standout-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.standout-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.standout-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.standout-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.standout-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 768px) {
    .formula-standout {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .standout-item {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .standout-number {
        font-size: 36px;
    }
    
    .standout-content h3 {
        font-size: 20px;
    }
}

/* ========================================
   SECTION 5: WHAT IS METARISE
   ======================================== */
.what-is {
    padding: 80px 0;
    background: white;
}

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

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

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

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

/* ========================================
   SECTION 6: HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.how-description {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.how-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-num {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.step-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
}

/* ========================================
   SECTION 7: REVIEWS
   ======================================== */
.reviews {
    padding: 80px 0;
    background: white;
}

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

.review-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

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

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

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

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

.review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a202c;
}

.review-location {
    color: #718096;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-stars img {
    width: 120px;
    margin: 0 auto 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    font-style: italic;
}

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

@media (max-width: 575px) {
    .reviews {
        padding: 40px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 30px 20px;
    }
}

/* ========================================
   SECTION 8: RESEARCH-BACKED
   ======================================== */
.research-backed {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.research-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.research-points {
    max-width: 900px;
    margin: 0 auto 40px;
    list-style: none;
}

.research-points li {
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.research-points strong {
    color: #1a202c;
}

.btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

@media (max-width: 768px) {
    .research-backed {
        padding: 40px 0;
    }
    
    .btn-secondary {
        width: 100%;
        min-height: 48px;
    }
}

/* ========================================
   SECTION 9: PRICING
   ======================================== */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.countdown-timer {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #EF4444;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
ul.pricing-points li {
   
    text-align: left;
    margin: 20px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

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

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: #4F46E5;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a202c;
}

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

.pricing-img {
    width: 180px;
    margin: 0 auto 30px;
}

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

.price-per {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
}

.price-per small {
    font-size: 18px;
    color: #718096;
}

.price-total {
    margin-top: 10px;
}

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

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

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

.badge-bonus,
.badge-shipping {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.payment-logos {
    text-align: center;
    color: #718096;
    font-size: 14px;
}

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

.rating-bottom img {
    width: 150px;
    margin: 0 auto 10px;
}

.rating-bottom p {
    color: #4a5568;
    font-size: 14px;
}

@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 {
        padding: 40px 0;
    }
    
    .countdown-timer {
        font-size: 36px;
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* ========================================
   SECTION 10: INGREDIENTS
   ======================================== */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.ingredients-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

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

.ingredient-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.ingredient-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 768px) {
    .ingredients {
        padding: 40px 0;
    }
    
    .ingredient-card {
        padding: 30px 20px;
    }
}

/* ========================================
   SECTION 11: SCIENTIFIC EVIDENCE
   ======================================== */
.scientific-evidence {
    padding: 80px 0;
    background: white;
}

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

.evidence-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.evidence-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.evidence-header:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.evidence-header h3 {
    font-size: 20px;
    color: #1a202c;
    text-align: left;
}

.toggle-icon {
    font-size: 24px;
    font-weight: 700;
    color: #4F46E5;
    transition: transform 0.3s ease;
}

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

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

.evidence-content p {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 768px) {
    .scientific-evidence {
        padding: 40px 0;
    }
    
    .evidence-header {
        padding: 20px;
    }
    
    .evidence-header h3 {
        font-size: 18px;
    }
}

/* ========================================
   SECTION 12: GUARANTEE
   ======================================== */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

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

.guarantee-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.guarantee-point {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.guarantee-point h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

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

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

/* ========================================
   SECTION 13: BENEFITS
   ======================================== */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 32px;
    min-width: 40px;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a202c;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

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

/* ========================================
   SECTION 14: PROS AND CONS
   ======================================== */
.pros-cons {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pros-column,
.cons-column {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pros-column h3,
.cons-column h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
}

.pros-column ul,
.cons-column ul {
    list-style: none;
}

.pros-column li,
.cons-column li {
    padding: 15px 0 15px 30px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.pros-column li:last-child,
.cons-column li:last-child {
    border-bottom: none;
}

.pros-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.cons-column li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pros-cons {
        padding: 40px 0;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pros-column,
    .cons-column {
        padding: 30px 20px;
    }
}

/* ========================================
   SECTION 15: BONUSES
   ======================================== */
.bonuses {
    padding: 80px 0;
    background: white;
}

.bonuses-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.bonus-card img {
    width: 80px;
    margin: 0 auto 20px;
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a202c;
}

.bonus-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 768px) {
    .bonuses {
        padding: 40px 0;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION 16-17: WHERE TO BUY & ORDER PROCESS
   ======================================== */
.where-to-buy,
.order-process {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.where-to-buy p,
.order-process p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.order-content {
    display: grid;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.order-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a202c;
}

.order-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.order-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
    position: sticky;
    top: 100px;
}

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

.security-info p {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #10B981;
}

@media (max-width: 768px) {
    .where-to-buy,
    .order-process {
        padding: 40px 0;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-image {
        order: -1;
    }
}

/* ========================================
   SECTION 18: FAQ
   ======================================== */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
    min-height: 44px;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #4F46E5;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
}

/* ========================================
   SECTION 19: FINAL CTA
   ======================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

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

.final-cta-img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.3));
}

.final-cta-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.final-cta-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

.final-price-new {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.final-guarantee {
    font-size: 14px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 40px 0;
    }
    
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .final-cta-img {
        order: -1;
    }
    
    .final-cta-text h2 {
        font-size: 28px;
    }
    
    .btn-final {
        width: 100%;
        min-height: 48px;
    }
}

/* ========================================
   SECTION 20: FOOTER
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: #1a202c;
    color: white;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #a0aec0;
}

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

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

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

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

@media (max-width: 768px) {
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   PURCHASE NOTIFICATION POPUP
   ======================================== */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

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

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

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

.notification-text strong {
    color: #1a202c;
    font-size: 16px;
}

.notification-text p {
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .purchase-notification {
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        bottom: 20px;
        max-width: 90%;
    }
    
    .purchase-notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

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

/* Focus Styles */
button:focus,
a:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top,
    .purchase-notification {
        display: none;
    }
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px; /* space between links */
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    float: left;
    padding: 0 10px;
}

.footer-column ul li a:hover {
  color: #00c6a9;               /* hover color */
}
.rating-box {
height: 15px;
width: 80px;
margin-top: 4px;
background-repeat: no-repeat;
background-size: contain;
background-image: url('rating.png');
}

@media (max-width: 768px) {
  img {
  max-width: 100%;
  height: auto;
  display: block;
}
.final-cta img {
    max-width: 100%;
    height: auto;
}
html, body {
  overflow-x: hidden;
}
.text-5xl {
    font-size: 2rem;
    line-height: 1;
}
}