/* ============================================
   MODERN GRADIENT DESIGN SYSTEM
   Provitalize - Women's Menopause Support
   Mobile-First Responsive Styles
   ============================================ */

/* 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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Section Spacing */
section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #06B6D4);
    border-radius: 2px;
}

.white-title {
    color: #ffffff;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #4F46E5, #06B6D4) 1;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 6px 40px rgba(79, 70, 229, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 22px;
    font-weight: 900;
    color: #4F46E5;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5, #06B6D4);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: #2d3748;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5, #06B6D4);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: #4F46E5;
}

.cta-btn-nav {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cta-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 30px rgba(79, 70, 229, 0.15);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .cta-btn-nav {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06B6D4, #4F46E5);
    bottom: -250px;
    right: -250px;
    animation-delay: -10s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #4F46E5, #7c3aed);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 12s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    text-align: center;
    position: relative;
}

.product-float-container {
    position: relative;
    display: inline-block;
}

.product-bottle {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(79, 70, 229, 0.4));
    position: relative;
    z-index: 2;
}

.modern-float {
    animation: modern-float 4s ease-in-out infinite;
}

@keyframes modern-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-image: linear-gradient(135deg, #4F46E5, #06B6D4) 1;
    animation: rotate-ring 10s linear infinite;
    z-index: 1;
}

@keyframes rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
}

.hero-description {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Slide-up Animations */
.slide-up {
    opacity: 0;
    animation: slide-up 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 50px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5);
}

.cta-btn:active {
    transform: translateY(-1px);
}

.cta-btn-large {
    font-size: 18px;
    padding: 18px 40px;
}

.gradient-btn {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #4F46E5;
    border: 2px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15);
}

/* Tablet */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
    }

    .trust-badges {
        justify-content: flex-start;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.3);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-section {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon img {
    max-width: 80px;
    margin: 0 auto;
}

.feature-card h3 {
    color: #1a202c;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
}

.feature-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.what-is-content p {
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.what-is-image {
    text-align: center;
}

.image-glass-frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
}

.image-glass-frame img {
    border-radius: 20px;
}

@media (min-width: 768px) {
    .what-is-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   HOW IT WORKS - ACCORDION
   ============================================ */
.how-it-works-section {
    background: #ffffff;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.modern-accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-accordion {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
}

.glass-accordion:hover {
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 6px 30px rgba(79, 70, 229, 0.2);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
}

.accordion-header:hover {
    color: #4F46E5;
}

.accordion-icon {
    transition: transform 0.3s ease;
    stroke: #4F46E5;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   CUSTOMER REVIEWS
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4f8 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.modern-review {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
}

.modern-review:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4F46E5, #06B6D4);
}

.modern-review:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid;
    border-image: linear-gradient(135deg, #4F46E5, #06B6D4) 1;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
}

.review-info h4 {
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
}

.review-location {
    color: #718096;
    font-size: 14px;
}

.star-rating {
    color: #F59E0B;
    font-size: 18px;
    margin-top: 5px;
}

.review-text {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
}

@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 {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(6, 182, 212, 0.3));
    opacity: 0.5;
    animation: wave-motion 15s ease-in-out infinite;
}

@keyframes wave-motion {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) scaleY(1.2);
    }
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
}

.countdown-timer {
    border-radius: 20px;
    padding: 25px;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}

.modern-timer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.3);
}

.timer-label {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #06B6D4;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-timer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-number {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-text {
    font-size: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #06B6D4;
}

.timer-separator {
    font-size: 36px;
    font-weight: 900;
    color: #06B6D4;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: #1a202c;
}

.modern-pricing {
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.modern-pricing:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.4);
    border-color: rgba(79, 70, 229, 0.5);
}

.modern-pricing.featured {
    border: 3px solid;
    border-image: linear-gradient(135deg, #4F46E5, #06B6D4) 1;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.35);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.5);
}

.gradient-badge {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
}

.pricing-label {
    font-size: 14px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-label {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-package {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #1a202c;
}

.pricing-supply {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-width: 200px;
    margin: 0 auto;
}

.pricing-price {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.gradient-price {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 20px;
    color: #718096;
    text-decoration: line-through;
    font-weight: 700;
}

.new-price {
    font-size: 30px;
    font-weight: 900;
    color: #1a202c;
}

.featured-price {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-badge {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pricing-btn {
    display: block;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.pricing-btn img {
    max-width: 200px;
    margin: 0 auto;
}

.pricing-btn:hover {
    transform: scale(1.1);
}

.featured-btn:hover {
    transform: scale(1.15);
}

.payment-logos {
    margin-top: 15px;
}

.payment-logos img {
    max-width: 200px;
    margin: 0 auto;
}

.rating-image {
    text-align: center;
    margin-top: 2rem;
}

.rating-image img {
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        grid-column: auto;
    }

    .timer-number {
        font-size: 52px;
    }
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modern-ingredient {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.1);
}

.modern-ingredient:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.3);
}

.ingredient-card h3 {
    color: #1a202c;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
}

.ingredient-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ============================================
   SCIENTIFIC EVIDENCE
   ============================================ */
.scientific-section {
    background: #ffffff;
}

.scientific-content {
    max-width: 900px;
    margin: 0 auto;
}

.scientific-item {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modern-science {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 5px 25px rgba(79, 70, 229, 0.1);
}

.modern-science:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.3);
}

.scientific-item h3 {
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 800;
}

.scientific-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* ============================================
   MONEY BACK GUARANTEE
   ============================================ */
.guarantee-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4f8 100%);
}

.guarantee-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee-image {
    text-align: center;
}

.guarantee-frame {
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
}

.guarantee-frame img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 15px;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-point {
    padding: 20px;
    border-radius: 15px;
}

.guarantee-point h3 {
    color: #4F46E5;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
}

.guarantee-point p {
    color: #4a5568;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantee-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modern-benefit {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.1);
}

.modern-benefit:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 35px rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.3);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: 24px;
    color: #ffffff;
}

.gradient-icon {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
}

.benefit-text h3 {
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
}

.benefit-text p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.modern-faq .faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-faq {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
}

.glass-faq:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 6px 30px rgba(79, 70, 229, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
}

.faq-question:hover {
    color: #4F46E5;
}

.faq-icon {
    transition: transform 0.3s ease;
    stroke: #4F46E5;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 700px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    overflow: hidden;
    position: relative;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.orb-cta-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    top: -200px;
    right: -200px;
}

.orb-cta-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06B6D4, #7c3aed);
    bottom: -150px;
    left: -150px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 50%;
    animation: float-circle 20s ease-in-out infinite;
}

.float-circle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.float-circle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.float-circle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.5);
        opacity: 0.1;
    }
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-image {
    position: relative;
}

.final-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

.final-product-img {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 25px 60px rgba(79, 70, 229, 0.6));
    position: relative;
    z-index: 1;
}

.rotating-product {
    animation: rotate-product 20s linear infinite;
}

@keyframes rotate-product {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.final-cta-content {
    color: #ffffff;
}

.final-cta-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
    color: #ffffff;
}

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.final-regular-price {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 600;
}

.final-special-price {
    font-size: 38px;
    font-weight: 900;
}

.final-cta-btn {
    margin: 0 auto 1rem;
}

.final-cta-note {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 600;
}

@media (min-width: 768px) {
    .final-cta-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .final-pricing {
        align-items: flex-start;
    }

    .final-cta-btn {
        margin: 0 0 1rem 0;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 40px;
    }

    .final-special-price {
        font-size: 48px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000000;
    color: white;
    padding: 50px 0 30px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #4F46E5, #06B6D4) 1;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: #06B6D4;
}

.footer-separator {
    color: #718096;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
}

.footer-copyright p {
    font-size: 13px;
    color: #718096;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    border-radius: 15px;
    padding: 15px;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    z-index: 998;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.4);
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #ffffff;
}

.notification-text {
    font-size: 14px;
    color: #1a202c;
}

.notification-text strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 900;
}

.notification-text p {
    color: #718096;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
