/* ===================================
   VISIMAX - PREMIUM EYE HEALTH SUPPLEMENT
   Modern Gradient Design
   Mobile-First Responsive
   =================================== */

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

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

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

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

/* Disable text selection */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

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

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

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

/* Section Spacing */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

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

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

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px 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;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

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

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    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 (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
}

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

.nav-menu li {
    margin-bottom: 25px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

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

.nav-cta {
    display: inline-block;
    padding: 12px 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;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 8px 0;
    }
}

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

.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

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

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

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

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

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

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

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

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

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

.hero-text {
    flex: 1;
}

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

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

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

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

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

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

.hero-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 767px) {
    .hero-cta {
        width: 100%;
    }
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-trust img {
    max-width: 150px;
}

.hero-trust span {
    font-size: 14px;
    color: #64748b;
}

@media (min-width: 768px) {
    .hero-trust {
        flex-direction: row;
        align-items: center;
    }
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose {
    background: #ffffff;
}

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

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

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

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

.badge-card.visible {
    animation: slideUp 0.6s ease forwards;
}

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

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

.badge-icon {
    margin-bottom: 20px;
}

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

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

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

/* ===================================
   WHAT IS VISIMAX
   =================================== */

.what-is {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

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

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

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

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

.what-is-image img {
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===================================
   HOW IT WORKS - ACCORDION
   =================================== */

.how-it-works {
    background: #ffffff;
}

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

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

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

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

.accordion-header span {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
}

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

.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.3s ease, padding 0.3s ease;
}

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

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

/* ===================================
   CUSTOMER REVIEWS
   =================================== */

.reviews {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

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

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

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

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

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

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

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

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

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

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

.pricing {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

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

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

/* Timer */
.timer-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.timer {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

@media (min-width: 768px) {
    .timer-box {
        min-width: 100px;
    }
}

.timer-value {
    font-size: 36px;
    font-weight: 700;
    color: #06B6D4;
    line-height: 1;
}

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

.timer-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 5px;
}

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

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

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

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

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

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    transform: scale(1.05);
    z-index: 1;
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.1);
    }
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 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: 600;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-card.featured .pricing-label {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-package {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.pricing-card.featured .pricing-package {
    color: white;
}

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

.pricing-card.featured .pricing-supply {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.pricing-card.featured .price-per-bottle {
    color: white;
}

.price-label {
    font-size: 14px;
    color: #64748b;
}

.pricing-card.featured .price-label {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.pricing-card.featured .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.discounted-price {
    font-size: 28px;
    font-weight: 700;
    color: #4F46E5;
}

.pricing-card.featured .discounted-price {
    color: white;
}

.pricing-bonus {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-tag, .shipping-tag {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card.featured .bonus-tag,
.pricing-card.featured .shipping-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.pricing-cta img {
    max-width: 100%;
    transition: transform 0.3s ease;
}

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

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

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

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

.rating-display img {
    max-width: 200px;
    margin: 0 auto;
}

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

.bonus {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

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

.bonus-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

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

.bonus-image img {
    max-width: 150px;
    margin: 0 auto;
}

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

.bonus-description {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

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

.ingredients {
    background: #ffffff;
}

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

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

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

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

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

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

.ingredient-benefits {
    font-size: 15px;
    line-height: 1.7;
    color: #4F46E5;
}

/* ===================================
   SCIENTIFIC EVIDENCE
   =================================== */

.scientific {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.evidence-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.evidence-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.evidence-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

/* ===================================
   MONEY BACK GUARANTEE
   =================================== */

.guarantee {
    background: #ffffff;
}

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

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

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

.guarantee-image img {
    max-width: 350px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-points {
    margin-top: 30px;
}

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

.guarantee-point h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.guarantee-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

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

.benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 5px;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

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

.faq {
    background: #ffffff;
}

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

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 60px;
}

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

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
}

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

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

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

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

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

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

.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

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

.final-cta-image img {
    max-width: 400px;
}

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

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

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

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

.final-cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #06B6D4 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.final-cta-pricing {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.final-regular-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #94a3b8;
}

.final-special-price {
    font-size: 42px;
    font-weight: 700;
    color: #06B6D4;
}

.final-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 767px) {
    .final-cta-button {
        width: 100%;
    }
}

.final-cta-guarantee {
    margin-top: 30px;
    font-size: 16px;
    color: #94a3b8;
}

.final-cta-guarantee p {
    margin-bottom: 8px;
}

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

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-links {
    margin-bottom: 30px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

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

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

.link-separator {
    color: #475569;
}

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #94a3b8;
    text-align: left;
}

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

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

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

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

.footer-copyright {
    font-size: 14px;
    color: #64748b;
}

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

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

.scroll-top:hover {
    transform: translateY(-5px);
}

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

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

.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    z-index: 998;
    max-width: 300px;
}

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

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

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

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    color: #1e293b;
    display: block;
}

.notification-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ===================================
   POPUP OVERLAY
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

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

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

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

.popup-close:hover {
    background: #dc2626;
}

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

.popup-content > p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
}

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

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

.popup-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-original {
    font-size: 20px;
    text-decoration: line-through;
    color: #94a3b8;
}

.popup-discount {
    font-size: 36px;
    font-weight: 700;
    color: #4F46E5;
}

.popup-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.popup-guarantee {
    font-size: 14px;
    color: #64748b;
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
