/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    
    --blue-50: #eff6ff;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    
    --cyan-50: #ecfeff;
    --cyan-500: #06b6d4;
    
    --teal-500: #14b8a6;
    
    --orange-500: #f97316;
    
    --red-400: #f87171;
    --red-500: #ef4444;
    
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --foreground: #3d2e42;
    --foreground-muted: #6b5a70;
    --background: #faf5f0;
    
    --radius: 1.25rem;
    --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.gradient-text-pink {
    background: linear-gradient(to right, var(--pink-500), var(--rose-500), var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500), var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-amber {
    background: linear-gradient(to right, var(--amber-400), var(--rose-400), var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-emerald {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-through {
    text-decoration: line-through;
}

.text-red { color: var(--red-500); }
.text-green { color: var(--green-500); }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4),
                    0 0 40px rgba(236, 72, 153, 0.2),
                    0 0 60px rgba(236, 72, 153, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.6),
                    0 0 60px rgba(236, 72, 153, 0.4),
                    0 0 90px rgba(236, 72, 153, 0.2);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slide-in-left {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-out-left {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0; }
}

.pulse { animation: pulse 2s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.heartbeat { animation: heartbeat 1.5s ease-in-out infinite; }
.wiggle { animation: wiggle 1s ease-in-out infinite; }
.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float-slow 8s ease-in-out infinite; }
.bounce-gentle { animation: bounce-gentle 2s ease-in-out infinite; }

/* Icons */
[data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-small { width: 1rem; height: 1rem; }
.icon-heart-filled { fill: currentColor; }
.icon-heart-inline { 
    width: 2.25rem; 
    height: 2.25rem; 
    vertical-align: middle;
    color: var(--pink-500);
    fill: var(--pink-400);
}
.icon-sparkle { color: var(--amber-500); }
.icon-pulse { animation: pulse 2s ease-in-out infinite; }
.star-filled { fill: var(--amber-400); color: var(--amber-400); }
.icon-heart-pink { color: var(--pink-500); fill: var(--pink-500); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 900;
    color: white;
    background: linear-gradient(to right, var(--pink-500), var(--rose-500), var(--purple-600));
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 40px -10px rgba(236, 72, 153, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-hero {
    padding: 2rem 2rem;
    font-size: 1.25rem;
    border-radius: 2.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-emerald {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-500));
}

.btn-premium {
    padding: 2rem 2rem;
    font-size: 1.125rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--pink-600);
    background: white;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-white:active {
    transform: scale(0.98);
}

/* Offer Bar */
.offer-bar {
    background: linear-gradient(to right, var(--pink-500), var(--rose-500), var(--purple-500));
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.shimmer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s linear infinite;
}

.offer-bar-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-badge .icon-star-filled {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--amber-300);
    fill: var(--amber-200);
}

.viewers-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.viewers-badge i {
    color: #86efac;
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 50;
    display: none;
}

.social-proof-popup.visible {
    display: block;
    animation: slide-in-left 0.5s ease;
}

.social-proof-popup.hiding {
    animation: slide-out-left 0.5s ease;
}

.popup-card {
    background: white;
    padding: 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-200);
    max-width: 300px;
}

.popup-card > div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.popup-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.popup-avatar.essencial {
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-500));
}

.popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--pink-200);
}

.popup-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.popup-content {
    flex: 1;
    min-width: 0;
}

.popup-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.popup-package {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    margin-top: 0.125rem;
}

.package-premium {
    font-weight: 700;
    color: var(--amber-600);
}

.package-essencial {
    font-weight: 700;
    color: var(--emerald-600);
}

.popup-time {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    opacity: 0.7;
    margin-top: 0.125rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(253, 242, 248, 0.9),
        rgba(255, 228, 230, 0.8),
        rgba(243, 232, 255, 0.7)
    );
}

.hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(255, 255, 255, 0.8), transparent, transparent);
}

/* Decorative Elements */
.deco-cloud {
    position: absolute;
    color: var(--pink-300);
    opacity: 0.6;
    animation: float-slow 8s ease-in-out infinite;
}

.cloud-1 { top: 3rem; left: 1rem; width: 4rem; height: 4rem; }
.cloud-2 { top: 5rem; right: 1.5rem; width: 3rem; height: 3rem; color: var(--purple-300); opacity: 0.5; animation-delay: 1s; }
.cloud-3 { bottom: 8rem; left: 2rem; width: 3.5rem; height: 3.5rem; color: var(--blue-400); opacity: 0.4; animation-delay: 2s; }
.cloud-4 { top: 33%; right: 3rem; width: 2.5rem; height: 2.5rem; color: var(--rose-400); opacity: 0.5; animation-delay: 0.5s; }

.deco-star {
    position: absolute;
    color: var(--amber-400);
    fill: var(--amber-300);
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.star-1 { top: 7rem; left: 25%; width: 1.75rem; height: 1.75rem; }
.star-2 { top: 10rem; right: 25%; width: 1.5rem; height: 1.5rem; opacity: 0.7; animation-delay: 0.5s; }
.star-3 { bottom: 10rem; right: 33%; width: 1.25rem; height: 1.25rem; opacity: 0.6; animation-delay: 1s; }

.deco-heart {
    position: absolute;
    color: var(--pink-400);
    fill: var(--pink-300);
    opacity: 0.6;
    animation: bounce-gentle 2s ease-in-out infinite;
}

.heart-1 { top: 6rem; right: 2rem; width: 1.25rem; height: 1.25rem; animation-delay: 0.3s; }
.heart-2 { bottom: 7rem; left: 3rem; width: 1.5rem; height: 1.5rem; color: var(--rose-400); fill: var(--rose-300); opacity: 0.5; animation-delay: 1.2s; }

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 { top: 4rem; left: 1.5rem; width: 10rem; height: 10rem; background: rgba(249, 168, 212, 0.5); }
.orb-2 { top: 7rem; right: 1rem; width: 12rem; height: 12rem; background: rgba(216, 180, 254, 0.4); animation-delay: 1s; }
.orb-3 { bottom: 5rem; left: 25%; width: 11rem; height: 11rem; background: rgba(253, 230, 138, 0.6); animation-delay: 2s; }

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3);
    border: 1px solid var(--pink-200);
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pink-700);
    letter-spacing: 0.025em;
}

.hero-badge i {
    color: var(--pink-500);
    fill: var(--pink-500);
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.hero-title-wrapper::before {
    content: "";
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(to right, 
        rgba(253, 224, 71, 0.4),
        rgba(249, 168, 212, 0.3),
        rgba(216, 180, 254, 0.4)
    );
    border-radius: 9999px;
    filter: blur(48px);
}

.hero-title {
    position: relative;
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 900;
    color: var(--foreground);
    letter-spacing: -0.025em;
}

.hero-title span {
    display: block;
    margin-top: 0.5rem;
}

.hero-title span:first-child {
    margin-top: 0;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(61, 46, 66, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-cta-wrapper {
    margin-bottom: 1.5rem;
}

.hero-microcopy {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.7);
    margin-top: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-microcopy i {
    color: var(--emerald-500);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.badge-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.badge-icon i {
    color: white;
    width: 1rem;
    height: 1rem;
}

.bg-emerald { background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500)); }
.bg-blue { background: linear-gradient(135deg, var(--blue-400), var(--blue-500)); }
.bg-purple { background: linear-gradient(135deg, var(--purple-400), var(--purple-500)); }
.bg-pink { background: linear-gradient(135deg, var(--pink-400), var(--rose-500)); }
.bg-rose { background: linear-gradient(135deg, var(--rose-400), var(--pink-500)); }
.bg-amber { background: linear-gradient(135deg, var(--amber-400), var(--amber-500)); }
.bg-pink-gradient { background: linear-gradient(135deg, var(--pink-400), var(--rose-500), var(--purple-600)); }

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, rgba(253, 242, 248, 0.4), white);
    position: relative;
    overflow: hidden;
}

.section-glow {
    position: absolute;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    filter: blur(48px);
}

.glow-left { top: 2rem; left: 1rem; background: rgba(249, 168, 212, 0.3); }
.glow-right { bottom: 3rem; right: 1.5rem; background: rgba(216, 180, 254, 0.3); }

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.3);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pink-700);
    letter-spacing: 0.025em;
}

.section-badge i {
    color: var(--pink-500);
    fill: var(--pink-400);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.benefit-pink { background: linear-gradient(135deg, var(--pink-50), rgba(255, 228, 230, 0.8)); border: 1px solid rgba(249, 168, 212, 0.3); }
.benefit-rose { background: linear-gradient(135deg, var(--rose-50), rgba(252, 231, 243, 0.8)); border: 1px solid rgba(251, 113, 133, 0.3); }
.benefit-purple { background: linear-gradient(135deg, var(--purple-50), rgba(237, 233, 254, 0.8)); border: 1px solid rgba(196, 181, 253, 0.3); }
.benefit-amber { background: linear-gradient(135deg, var(--amber-50), rgba(254, 249, 195, 0.8)); border: 1px solid rgba(253, 224, 71, 0.3); }
.benefit-emerald { background: linear-gradient(135deg, var(--emerald-50), rgba(209, 250, 229, 0.8)); border: 1px solid rgba(52, 211, 153, 0.3); }
.benefit-blue { background: linear-gradient(135deg, var(--blue-50), rgba(219, 234, 254, 0.8)); border: 1px solid rgba(96, 165, 250, 0.3); }

.benefit-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.benefit-highlight {
    display: inline-flex;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    color: rgba(61, 46, 66, 0.7);
}

.section-badge-emerald {
    border-color: rgba(52, 211, 153, 0.3) !important;
}

.section-badge-emerald i {
    color: var(--emerald-500) !important;
    fill: none !important;
}

.section-badge-emerald span {
    color: var(--emerald-600) !important;
}

.benefits-emerald {
    background: linear-gradient(to bottom, white, var(--emerald-50), white);
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
}

.benefit-card > div {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.7);
    line-height: 1.6;
}

.section-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* Educational Benefits Section */
.educational-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-50), white);
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.edu-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.edu-blue { background: linear-gradient(135deg, var(--blue-50), rgba(224, 242, 254, 0.8)); border: 1px solid rgba(147, 197, 253, 0.3); }
.edu-pink { background: linear-gradient(135deg, var(--pink-50), rgba(252, 231, 243, 0.8)); border: 1px solid rgba(249, 168, 212, 0.3); }
.edu-purple { background: linear-gradient(135deg, var(--purple-50), rgba(243, 232, 255, 0.8)); border: 1px solid rgba(196, 181, 253, 0.3); }
.edu-amber { background: linear-gradient(135deg, var(--amber-50), rgba(254, 243, 199, 0.8)); border: 1px solid rgba(253, 224, 71, 0.3); }

.edu-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.edu-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.edu-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.edu-card ul {
    list-style: none;
}

.edu-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.8);
    margin-bottom: 0.375rem;
}

.edu-card li i {
    width: 1rem;
    height: 1rem;
    color: var(--emerald-500);
}

/* Included Section */
.included-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, var(--pink-50), white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.included-card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    text-align: center;
    position: relative;
    overflow: visible;
}

.included-card.has-premium {
    border-color: rgba(251, 191, 36, 0.4);
}

.premium-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.4);
    z-index: 10;
}

.premium-badge i {
    width: 0.75rem;
    height: 0.75rem;
    color: white;
}

.premium-badge span {
    font-size: 0.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.included-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.included-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.included-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.included-card p {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-50), white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-400), var(--rose-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-avatar.bg-purple {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
}

.testimonial-avatar.bg-emerald {
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-500));
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
}

.testimonial-stars i {
    width: 0.875rem;
    height: 0.875rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.8);
    line-height: 1.6;
    font-style: italic;
}

/* Urgency Section */
.urgency-section {
    padding: 2rem 0;
    background: linear-gradient(to right, var(--amber-50), var(--orange-50, #fff7ed), var(--pink-50));
    border-top: 2px solid var(--amber-200);
    border-bottom: 2px solid var(--amber-200);
}

.urgency-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.urgency-header h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--amber-700);
}

.urgency-header i {
    color: var(--amber-500);
}

.urgency-stats {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(251, 191, 36, 0.3);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.stat-item i {
    color: var(--green-500);
}

.stat-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.stat-badge .icon-heart-filled {
    color: var(--pink-500);
    fill: var(--pink-500);
}

.urgency-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--amber-700);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, var(--purple-50), white);
}

.premium-badge {
    background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 2rem;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-basic {
    background: linear-gradient(135deg, var(--emerald-50), rgba(204, 251, 241, 0.5), rgba(207, 250, 254, 0.5));
    border: 2px solid var(--emerald-200);
}

.pricing-premium {
    padding: 2rem;
    background: linear-gradient(135deg, var(--pink-50), var(--rose-50), rgba(243, 232, 255, 0.8));
    border: none;
    box-shadow: 0 0 0 4px var(--pink-400), 0 15px 50px rgba(236, 72, 153, 0.2);
    transform: scale(1.02);
}

.best-value-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: bounce-gentle 2s ease-in-out infinite;
}

.best-value-badge span {
    color: white;
    font-size: 0.625rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
}

.pricing-badge-top {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--emerald-500), var(--teal-500));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.pricing-badge-top i {
    width: 0.875rem;
    height: 0.875rem;
}

.pricing-badge-top.premium {
    top: -1rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--pink-500), var(--rose-500), var(--purple-600));
    animation: bounce-gentle 2s ease-in-out infinite;
}

.pricing-badge-top.premium i {
    width: 1.25rem;
    height: 1.25rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
}

.pricing-premium .pricing-header {
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pricing-premium .pricing-icon {
    width: 4rem;
    height: 4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pricing-icon i {
    color: white;
    width: 1.75rem;
    height: 1.75rem;
}

.pricing-premium .pricing-icon i {
    width: 2rem;
    height: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.pricing-original {
    font-size: 0.75rem;
    color: rgba(61, 46, 66, 0.6);
    margin-bottom: 0.5rem;
}

.pricing-original .line-through {
    color: var(--red-400);
}

.pricing-premium .pricing-original {
    font-size: 0.875rem;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-value .currency {
    font-size: 1rem;
    color: rgba(61, 46, 66, 0.7);
}

.pricing-value .price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-premium .pricing-value .currency {
    font-size: 1.125rem;
}

.pricing-premium .pricing-value .price {
    font-size: 3.75rem;
}

.pricing-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: var(--emerald-100);
    color: var(--emerald-600);
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-discount i {
    width: 0.875rem;
    height: 0.875rem;
}

.premium-discount {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.premium-discount i {
    width: 1rem;
    height: 1rem;
}

.pricing-features {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--emerald-100);
    margin-bottom: 1.5rem;
}

.pricing-premium .pricing-features {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.pricing-premium .feature-item {
    margin-bottom: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.pricing-premium .feature-check {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-check i {
    color: white;
    width: 0.75rem;
    height: 0.75rem;
}

.pricing-premium .feature-check i {
    width: 0.875rem;
    height: 0.875rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.8);
    font-weight: 500;
}

.pricing-premium .feature-item span {
    color: rgba(61, 46, 66, 0.9);
    font-weight: 500;
}

.bonus-badge {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: var(--amber-100);
    color: var(--amber-700);
    margin-left: 0.5rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

.pricing-guarantee i {
    color: var(--emerald-500);
    width: 0.875rem;
    height: 0.875rem;
}

.pricing-pdf-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.7);
}

.pricing-pdf-note i {
    color: var(--emerald-500);
}

.pricing-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.7);
}

.pricing-social-proof span {
    font-weight: 700;
}

.pricing-guarantee-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(244, 114, 182, 0.3);
    color: var(--emerald-600);
}

.pricing-guarantee-premium span {
    font-size: 0.875rem;
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--gray-50), white);
}

.comparison-section h3 {
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-grid {
    max-width: 500px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
}

.comparison-item.negative {
    background: var(--rose-50);
    border: 1px solid rgba(254, 205, 211, 0.5);
}

.comparison-item.positive {
    background: var(--green-50);
    border: 1px solid rgba(187, 247, 208, 0.5);
}

.comparison-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.comparison-item.negative i {
    color: var(--red-500);
}

.comparison-item.positive i {
    color: var(--green-500);
}

.comparison-item span {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.8);
}

.comparison-middle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 1.5rem 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, rgba(253, 242, 248, 0.3), white);
}

.faq-list {
    max-width: 40rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.faq-icon i {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
}

.faq-question > span:nth-child(2) {
    flex: 1;
}

.faq-chevron {
    transition: transform 0.3s ease;
    color: var(--foreground-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem 4.75rem;
}

.faq-answer p {
    font-size: 1rem;
    color: rgba(61, 46, 66, 0.7);
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--emerald-50), var(--green-50), rgba(204, 251, 241, 0.5));
}

.guarantee-card {
    max-width: 28rem;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guarantee-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-500));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guarantee-icon i {
    color: white;
    width: 2.5rem;
    height: 2.5rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.guarantee-card > p {
    font-size: 1rem;
    color: rgba(61, 46, 66, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guarantee-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--emerald-600);
    font-weight: 700;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500), var(--purple-600));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.radial-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), transparent, transparent);
}

.final-cta-section .container {
    position: relative;
    z-index: 10;
    max-width: 28rem;
}

.final-cta-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.final-cta-icon i {
    color: white;
    fill: rgba(255, 255, 255, 0.8);
    width: 2.5rem;
    height: 2.5rem;
}

.final-cta-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .final-cta-section h2 {
        font-size: 1.875rem;
    }
}

.underline-text {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.final-cta-section > .container > p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.final-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 3rem 0 2.5rem;
    background: rgba(253, 242, 248, 0.5);
    position: relative;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pink-300), transparent);
}

.footer .container {
    max-width: 100%;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.footer-logo i {
    color: var(--pink-500);
    fill: var(--pink-500);
    width: 1.5rem;
    height: 1.5rem;
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 800;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(61, 46, 66, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--foreground);
}

.footer-nav .divider {
    color: rgba(61, 46, 66, 0.3);
}

.footer-secure {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 1.5rem;
    background: var(--emerald-50);
    border: 2px solid var(--emerald-300);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.footer-secure i {
    color: var(--emerald-600);
    width: 1.75rem;
    height: 1.75rem;
}

.footer-secure span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--emerald-700);
}

.footer-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(61, 46, 66, 0.65);
    margin-bottom: 1rem;
}

.footer-message i.small {
    width: 1rem;
    height: 1rem;
    color: var(--pink-500);
    fill: var(--pink-400);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(61, 46, 66, 0.45);
}

/* ========================================
   NEW SECTIONS - IMPROVEMENTS
   ======================================== */

/* Fixed Mobile CTA */
.fixed-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0.98));
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-mobile-cta.visible {
    display: flex;
    transform: translateY(0);
}

.btn-fixed-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(to right, var(--pink-500), var(--rose-500), var(--purple-600));
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.fixed-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--emerald-600);
    font-weight: 600;
}

.fixed-guarantee i {
    width: 0.875rem;
    height: 0.875rem;
}

@media (min-width: 768px) {
    .fixed-mobile-cta {
        display: none !important;
    }
}

/* Footer padding for fixed CTA */
.footer {
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 2.5rem;
    }
}

/* Books Gallery Section */
.books-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, var(--amber-50), white);
    overflow: hidden;
}

.books-carousel {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.books-carousel::-webkit-scrollbar {
    display: none;
}

.books-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.book-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-4px);
}

.book-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.book-card p {
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.books-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.books-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--pink-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.books-nav-btn:hover {
    background: var(--pink-50);
    border-color: var(--pink-400);
}

.books-nav-btn i {
    color: var(--pink-500);
}

.books-dots {
    display: flex;
    gap: 0.5rem;
}

.books-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--pink-200);
    transition: all 0.3s ease;
}

.books-dot.active {
    width: 1.5rem;
    border-radius: 0.25rem;
    background: var(--pink-500);
}

.books-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pink-600);
}

.books-note i {
    color: var(--pink-500);
}

/* For Who Section */
.for-who-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--purple-50), white);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.for-who-card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.for-who-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.for-who-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.for-who-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.for-who-card p {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    line-height: 1.5;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, var(--pink-50), white);
}

.video-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.video-placeholder {
    cursor: pointer;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.play-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.play-button i {
    width: 2rem;
    height: 2rem;
    color: var(--pink-500);
    margin-left: 0.25rem;
}

.video-overlay p {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground-muted);
}

.video-feature i {
    width: 1rem;
    height: 1rem;
    color: var(--emerald-500);
}

/* Countdown Timer */
.countdown-wrapper {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--red-400);
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red-500);
    margin-bottom: 0.75rem;
    text-align: center;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5rem;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-500);
    line-height: 1;
    background: linear-gradient(135deg, var(--red-400), var(--red-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-unit {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red-400);
    animation: pulse 1s ease-in-out infinite;
}

/* Price Strike Animation */
@keyframes strike-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes price-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.price-strike {
    position: relative;
    display: inline-block;
}

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

.animated-strike::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--red-400), var(--red-500));
    transform: translateY(-50%) rotate(-5deg);
    border-radius: 2px;
}

/* Inline Guarantee near Buttons */
.inline-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
}

.inline-guarantee i {
    color: var(--emerald-500);
    width: 1.25rem;
    height: 1.25rem;
}

.inline-guarantee span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-700);
}

.premium-inline-guarantee {
    background: linear-gradient(135deg, var(--emerald-50), var(--green-50));
    border-color: var(--emerald-300);
}

.premium-inline-guarantee span {
    font-size: 0.875rem;
}
