/* ===================================
   LULUTOX DETOX - STYLES
   Modern Gradient Design
   Mobile-First Responsive
   =================================== */

/* ===================================
   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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

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

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

/* ===================================
   CONTAINER
   =================================== */
   
.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;
    }
}

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

/* ===================================
   SECTION TITLES
   =================================== */
   
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 576px) {
    .section-title {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
}

/* ===================================
   NAVIGATION
   =================================== */
   
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

@media (min-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 24px;
    }
}

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

.nav-menu {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (min-width: 768px) {
    .nav-links {
        flex-direction: row;
    }
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-cta {
        padding: 14px 32px;
        font-size: 16px;
    }
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

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

@media (min-width: 768px) {
    .hero {
        margin-top: 90px;
        padding: 80px 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        padding: 0 40px;
        gap: 60px;
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -30px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -40px;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -20px;
    animation-delay: 4s;
}

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

.product-img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: productFloat 4s ease-in-out infinite;
}

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

.hero-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

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

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

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f2937;
}

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

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

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

@media (min-width: 768px) {
    .hero-description {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    min-height: 56px;
}

@media (min-width: 768px) {
    .hero-cta {
        padding: 18px 50px;
        font-size: 18px;
    }
}

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

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

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 576px) {
    .hero-trust {
        flex-direction: row;
        gap: 30px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
}

@media (min-width: 768px) {
    .trust-item {
        font-size: 15px;
    }
}

/* ===================================
   WHY CHOOSE US
   =================================== */
   
.why-choose {
    padding: 60px 0;
    background: #ffffff;
}

@media (min-width: 768px) {
    .why-choose {
        padding: 100px 0;
    }
}

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

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

@media (min-width: 992px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.badge-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

@media (min-width: 768px) {
    .badge-card {
        padding: 40px 25px;
    }
}

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

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .badge-icon {
        width: 100px;
        height: 100px;
    }
}

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

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

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

.badge-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

@media (min-width: 768px) {
    .badge-description {
        font-size: 15px;
    }
}

/* ===================================
   WHAT IS SECTION
   =================================== */
   
.what-is {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

@media (min-width: 768px) {
    .what-is {
        padding: 100px 0;
    }
}

.what-is-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .what-is-grid {
        flex-direction: row;
        gap: 60px;
    }
}

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

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

@media (min-width: 768px) {
    .what-is-text {
        font-size: 17px;
    }
}

.what-is-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.what-is-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===================================
   HOW IT WORKS
   =================================== */
   
.how-it-works {
    padding: 60px 0;
    background: #ffffff;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 100px 0;
    }
}

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

.accordion-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(79, 70, 229, 0.2);
}

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

@media (min-width: 768px) {
    .accordion-header {
        padding: 25px 30px;
    }
}

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

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

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

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #4F46E5;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accordion-content p {
    padding: 0 20px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

@media (min-width: 768px) {
    .accordion-content p {
        padding: 0 30px 30px;
        font-size: 16px;
    }
}

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

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

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

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

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

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

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

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

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

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* ===================================
   PRICING
   =================================== */
   
.pricing {
    padding: 60px 0;
    background: #ffffff;
}

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

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

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

.timer-label {
    font-size: 14px;
    font-weight: 600;
    color: #EF4444;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 16px;
    }
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

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

.timer-value {
    font-size: 36px;
    font-weight: 700;
    color: #EF4444;
    font-family: 'Playfair Display', serif;
    min-width: 60px;
}

@media (min-width: 768px) {
    .timer-value {
        font-size: 48px;
        min-width: 80px;
    }
}

.timer-label-small {
    font-size: 12px;
    font-weight: 600;
    color: #991B1B;
    margin-top: 5px;
}

.timer-separator {
    font-size: 36px;
    font-weight: 700;
    color: #EF4444;
}

@media (min-width: 768px) {
    .timer-separator {
        font-size: 48px;
    }
}

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

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

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 40px 25px;
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 767px) {
    .pricing-card-featured {
        transform: scale(1);
    }
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

@media (max-width: 767px) {
    .pricing-card-featured:hover {
        transform: scale(1) translateY(-5px);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pricing-bottles {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .pricing-bottles {
        font-size: 22px;
    }
}

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

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

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

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

.price-per-bottle {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .price-per-bottle {
        font-size: 42px;
    }
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

.pricing-total {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 10px;
}

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

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

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

.pricing-cta {
    display: block;
    margin: 20px 0;
}

.pricing-cta img {
    max-width: 200px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

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

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

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

.pricing-rating p {
    font-size: 14px;
    color: #6b7280;
}

/* ===================================
   BONUSES
   =================================== */
   
.bonuses {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

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

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

.bonus-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bonus-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .bonus-image {
        height: 300px;
    }
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 30px;
}

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

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

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

.bonus-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

@media (min-width: 768px) {
    .bonus-description {
        font-size: 16px;
    }
}

/* ===================================
   INGREDIENTS
   =================================== */
   
.ingredients {
    padding: 60px 0;
    background: #ffffff;
}

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

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

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

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

.ingredient-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #4F46E5, #06B6D4);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .ingredient-card {
        padding: 30px;
    }
}

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

.ingredient-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.ingredient-description {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

@media (min-width: 768px) {
    .ingredient-description {
        font-size: 15px;
    }
}

/* ===================================
   SCIENCE
   =================================== */
   
.science {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

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

.science-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

.science-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

@media (min-width: 768px) {
    .science-text {
        font-size: 16px;
    }
}

/* ===================================
   GUARANTEE
   =================================== */
   
.guarantee {
    padding: 60px 0;
    background: #ffffff;
}

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

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-grid {
        flex-direction: row;
        gap: 60px;
    }
}

.guarantee-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.guarantee-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.guarantee-content {
    flex: 1;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-point {
    display: flex;
    gap: 20px;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-point-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

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

.guarantee-point-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

@media (min-width: 768px) {
    .guarantee-point-description {
        font-size: 16px;
    }
}

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

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

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

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

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

.benefit-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-item {
        padding: 30px;
    }
}

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

.benefit-icon {
    flex-shrink: 0;
}

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

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

.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

@media (min-width: 768px) {
    .benefit-description {
        font-size: 15px;
    }
}

/* ===================================
   FAQ
   =================================== */
   
.faq {
    padding: 60px 0;
    background: #ffffff;
}

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

.faq-accordion .accordion-item {
    border-left: 4px solid transparent;
}

.faq-accordion .accordion-item.active {
    border-left-color: #4F46E5;
}

/* ===================================
   FINAL CTA
   =================================== */
   
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 100px 0;
    }
}

.final-cta::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="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }
}

.final-cta-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

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

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

.final-cta-image img {
    position: relative;
    z-index: 2;
    max-width: 350px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: finalFloat 4s ease-in-out infinite;
}

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

.final-cta-text {
    flex: 1;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 42px;
    }
}

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

.final-regular-price {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.price-strike {
    text-decoration: line-through;
    font-size: 24px;
    margin-left: 10px;
}

.final-special-price {
    font-size: 18px;
    color: #ffffff;
}

.price-special {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 10px;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .price-special {
        font-size: 48px;
    }
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    min-height: 60px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .final-cta-button {
        padding: 20px 60px;
        font-size: 20px;
    }
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
}

.final-cta-button:active {
    transform: scale(0.98);
}

.final-cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .final-cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .final-cta-features {
        justify-content: flex-start;
    }
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* ===================================
   FOOTER
   =================================== */
   
.footer {
    padding: 60px 0 30px;
    background: #1f2937;
    color: #ffffff;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
    }
}

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

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

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

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 15px;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-legal-links {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

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

.legal-link:hover {
    color: #06B6D4;
}

.link-separator {
    color: #4b5563;
    margin: 0 5px;
}

@media (max-width: 767px) {
    .link-separator {
        display: none;
    }
}

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

@media (min-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

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

.social-link:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

@media (min-width: 768px) {
    .footer-disclaimer p {
        font-size: 13px;
    }
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

/* ===================================
   PURCHASE POPUP
   =================================== */
   
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 15px;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 998;
}

@media (max-width: 576px) {
    .purchase-popup {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

.purchase-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #1f2937;
}

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

.popup-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-text {
    flex: 1;
}

.popup-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 3px;
}

.popup-message {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 3px;
}

.popup-time {
    font-size: 12px;
    color: #9ca3af;
}

/* ===================================
   EXIT INTENT POPUP
   =================================== */
   
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.exit-popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 2;
}

@media (min-width: 576px) {
    .exit-popup-content {
        padding: 50px 40px;
    }
}

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.exit-popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 576px) {
    .exit-popup-title {
        font-size: 32px;
    }
}

.exit-popup-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

.exit-popup-offer {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 576px) {
    .exit-popup-offer {
        flex-direction: row;
    }
}

.exit-offer-image {
    width: 120px;
    flex-shrink: 0;
}

.exit-offer-image img {
    width: 100%;
}

.exit-offer-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 576px) {
    .exit-offer-text {
        text-align: left;
    }
}

.exit-offer-text p {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.exit-code {
    font-size: 24px;
    color: #EF4444;
    font-family: 'Courier New', monospace;
}

.exit-expires {
    font-size: 14px;
    color: #EF4444;
    font-weight: 600;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===================================
   ANIMATIONS
   =================================== */
   
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}