/* ===================================
   GELATIN LANDING PAGE STYLES
   Modern Gradient Design Theme
   Mobile-First Responsive
   =================================== */

/* ===================================
   1. RESET & BASE STYLES
   =================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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: #333;
    background: #fff;
    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;
}

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

/* Remove tap highlight */
* {
    -webkit-tap-highlight-color: transparent;
}

/* ===================================
   2. UTILITY CLASSES
   =================================== */

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

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

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

/* ===================================
   3. NAVIGATION
   =================================== */

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-header.scrolled {
    padding: 10px 0;
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    z-index: 1001;
}

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

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

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: #fff;
    color: #4F46E5;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    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, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        font-size: 18px;
        padding: 15px 0;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 15px;
        margin-top: 20px;
    }
}

/* ===================================
   4. HERO SECTION
   =================================== */

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

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(79, 70, 229, 0.2));
}

.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%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes 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-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
    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: 36px;
    }
}

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

.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-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

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

.hero-cta:active {
    transform: translateY(-1px);
}

.cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-cta {
        width: 100%;
        justify-content: center;
        min-height: 56px;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

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

.trust-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

/* Fade-in animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

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

/* ===================================
   5. WHY CHOOSE US SECTION
   =================================== */

.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

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

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

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

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

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

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* ===================================
   6. WHAT IS SECTION
   =================================== */

.what-is-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

.what-is-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

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

.what-is-image {
    text-align: center;
}

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

/* ===================================
   7. HOW IT WORKS SECTION
   =================================== */

.how-it-works-section {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    margin: -30px auto 50px;
}

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

.accordion-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #4F46E5;
}

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

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

.accordion-icon {
    font-size: 28px;
    margin-right: 15px;
}

.accordion-header span:nth-child(2) {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.accordion-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #4F46E5;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

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

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

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

/* ===================================
   8. REVIEWS SECTION
   =================================== */

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

.reviews-stars {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-stars img {
    margin: 0 auto 10px;
}

.reviews-stars p {
    color: #64748b;
    font-size: 16px;
}

.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: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.review-card.animated {
    animation: slideUp 0.6s ease-out forwards;
}

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

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

.review-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4F46E5;
}

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

.review-rating {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 5px;
}

.review-location {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.verified-badge {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ===================================
   9. PRICING SECTION
   =================================== */

.pricing-section {
    padding: 80px 0;
    background: #fff;
}

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

.countdown-timer {
    max-width: 600px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.timer-label {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.timer-value {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

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

.timer-label-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.timer-colon {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.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: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.pricing-label {
    display: inline-block;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

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

.badge-bonus,
.badge-shipping {
    background: #10b981;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

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

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

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

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

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

.savings-badge {
    background: #fbbf24;
    color: #78350f;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin: 15px 0;
    display: inline-block;
}

.pricing-cta {
    display: block;
    margin: 20px 0;
    transition: all 0.3s ease;
}

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

.pricing-cta img {
    margin: 0 auto;
}

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

.payment-logos img {
    margin: 0 auto;
    opacity: 0.7;
}

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

.pricing-footer img {
    margin: 0 auto 10px;
}

.pricing-footer p {
    color: #64748b;
    font-size: 15px;
}

/* ===================================
   10. INGREDIENTS SECTION
   =================================== */

.ingredients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

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

.ingredient-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.ingredient-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 15px;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* ===================================
   11. SCIENTIFIC EVIDENCE SECTION
   =================================== */

.scientific-section {
    padding: 80px 0;
    background: #fff;
}

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

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

.scientific-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    border-top: 4px solid #4F46E5;
    transition: all 0.3s ease;
}

.scientific-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
}

.scientific-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.scientific-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* ===================================
   12. GUARANTEE SECTION
   =================================== */

.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

.guarantee-image img {
    max-width: 300px;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

/* ===================================
   13. BENEFITS SECTION
   =================================== */

.benefits-section {
    padding: 80px 0;
    background: #fff;
}

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

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

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

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* ===================================
   14. FAQ SECTION
   =================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #4F46E5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

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

/* ===================================
   15. FINAL CTA SECTION
   =================================== */

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

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

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

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

.final-cta-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

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

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

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

.final-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.final-cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.final-price-old {
    display: block;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    margin-bottom: 10px;
}

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

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

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

@media (max-width: 768px) {
    .final-cta-button {
        width: 100%;
        justify-content: center;
        min-height: 60px;
    }
}

.final-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.badge-icon {
    font-size: 20px;
}

/* ===================================
   16. FOOTER
   =================================== */

.footer {
    background: #0f172a;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4F46E5;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   17. 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: #fff;
    border-radius: 50%;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

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

/* ===================================
   18. PURCHASE NOTIFICATION POPUP
   =================================== */

.purchase-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: bottom 0.4s ease;
    max-width: 320px;
}

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

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

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

.notification-text strong {
    display: block;
    color: #1e293b;
    font-size: 15px;
    margin-bottom: 3px;
}

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

/* ===================================
   19. ANIMATION UTILITIES
   =================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

/* ===================================
   20. LOADING OPTIMIZATION
   =================================== */

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================================
   21. PRINT STYLES
   =================================== */

@media print {
    .nav-header,
    .scroll-to-top,
    .purchase-notification,
    .countdown-timer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}
