/* ==========================================================================
   MODERN VARIABLES
   ========================================================================== */

:root {
    /* Modern Aladdin Palette */
    --primary-gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941F;

    --primary-purple: #5B21B6;
    --purple-light: #8B5CF6;
    --purple-dark: #4C1D95;

    --primary-blue: #1E3A8A;
    --blue-light: #3B82F6;

    --accent-teal: #0D9488;
    --accent-pink: #EC4899;

    /* Neutrals */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1400px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%);
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-lights {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.floating-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: float 8s ease-in-out infinite;
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.star:nth-child(4) { top: 30%; left: 70%; animation-delay: 1s; }
.star:nth-child(5) { top: 70%; left: 50%; animation-delay: 3s; }

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

/* ==========================================================================
   MAGIC PNG ELEMENTS
   ========================================================================== */

.magic-lamp-float {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 2;
    animation: lampFloat 4s ease-in-out infinite;
}

.lamp-png {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.6));
}

.lamp-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes lampFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.magic-carpet-float {
    position: absolute;
    top: 15%;
    right: 8%;
    z-index: 1;
    animation: carpetFly 10s ease-in-out infinite;
}

.carpet-png {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(91, 33, 182, 0.5));
}

@keyframes carpetFly {
    0%, 100% {
        transform: translate(0, 0) rotate(3deg);
    }
    25% {
        transform: translate(-30px, -30px) rotate(-2deg);
    }
    50% {
        transform: translate(20px, -15px) rotate(3deg);
    }
    75% {
        transform: translate(-15px, -40px) rotate(-1deg);
    }
}

.genie-float {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 0;
    animation: genieAppear 6s ease-in-out infinite;
    opacity: 0.15;
}

.genie-png {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(236, 72, 153, 0.4));
}

@keyframes genieAppear {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.2;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 700px;
}

.logo-badge {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.logo {
    height: 70px;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.hero-whisper {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-title {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

.title-line-1 {
    font-size: 56px;
    color: var(--white);
}

.title-line-2 {
    font-size: 72px;
    color: var(--primary-gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-description strong {
    color: var(--primary-gold);
}

.hero-transformation {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.transform-item {
    flex: 1;
    text-align: center;
}

.transform-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.transform-item p {
    color: var(--white);
    font-size: 15px;
    font-style: italic;
}

.transform-item.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid var(--primary-gold);
    padding: 16px;
    border-radius: 12px;
}

.transform-arrow {
    color: var(--primary-gold);
}

.hero-event-details {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-title {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.badge-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.hero-price-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.price-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    display: block;
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 20px;
    color: var(--gray-300);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.price-badge {
    background: var(--accent-pink);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.price-detail {
    color: var(--white);
    font-size: 14px;
}

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-text {
    font-size: 18px;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.urgency-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid var(--accent-pink);
    border-radius: 12px;
    margin-bottom: 24px;
}

.urgency-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

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

.urgency-text {
    flex: 1;
}

.urgency-text strong {
    display: block;
    color: var(--primary-gold);
    font-size: 16px;
    margin-bottom: 2px;
}

.urgency-text span {
    color: var(--gold-light);
    font-size: 14px;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges span {
    color: var(--white);
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease 0.5s backwards;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 3;
}

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

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

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

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

section {
    padding: var(--section-gap) 0;
    overflow-x: hidden;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header.dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

.section-header.dark .section-subtitle {
    color: var(--gray-300);
}

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */

.pain-points {
    background: var(--gray-50);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pain-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.pain-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.promise-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--purple-dark) 100%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    color: var(--white);
    text-align: center;
}

.promise-block h3 {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 32px;
}

.promise-list {
    display: grid;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
}

.promise-item {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 18px;
    border-left: 3px solid var(--primary-gold);
}

.promise-tagline {
    font-size: 28px;
    line-height: 1.5;
}

.promise-tagline strong {
    color: var(--primary-gold);
    font-family: var(--font-display);
    font-size: 36px;
}

/* ==========================================================================
   JOURNEY SECTION
   ========================================================================== */

.journey {
    background: var(--white);
}

.journey-visual {
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.journey-image {
    width: 100%;
    height: auto;
    display: block;
}

.journey-timeline {
    display: grid;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-day {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 20px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.timeline-day:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.timeline-day.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left-color: var(--primary-gold);
}

.day-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.timeline-day.highlight .day-badge {
    background: var(--primary-gold);
    color: var(--black);
}

.timeline-day h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-day p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 17px;
}

.timeline-day strong {
    color: var(--primary-purple);
}

.timeline-day.highlight strong {
    color: var(--primary-gold);
}

/* ==========================================================================
   WHY IT WORKS SECTION
   ========================================================================== */

.why-works {
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.why-card {
    padding: 36px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), var(--white));
    border: 2px solid var(--primary-gold);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-reason {
    font-style: italic;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.why-card strong {
    color: var(--gray-900);
}

.show-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.show-image {
    width: 100%;
    height: auto;
    display: block;
}

.show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.show-text h3 {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
    margin-bottom: 8px;
}

.show-text p {
    color: var(--gold-light);
    font-size: 18px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--primary-purple) 100%);
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.testimonial-text strong {
    color: var(--primary-gold);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--gray-300);
    font-size: 14px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.5;
}

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

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    gap: 24px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
}

.faq-icon {
    font-size: 32px;
    color: var(--primary-gold);
    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;
    padding: 0 32px;
}

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

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer strong {
    color: var(--gray-900);
}

/* ==========================================================================
   PRACTICAL INFO SECTION
   ========================================================================== */

.practical {
    background: var(--gray-50);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card strong {
    color: var(--gray-900);
}

.price-big {
    font-size: 32px;
    color: var(--primary-gold);
}

.price-crossed {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 18px;
    margin-left: 8px;
}

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

.final-cta {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
    color: var(--white);
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 60px;
}

.paths-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.path {
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    text-align: left;
}

.path-no {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.path-yes {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--primary-gold);
}

.path h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.path ul {
    list-style: none;
}

.path ul li {
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.6;
}

.final-offer {
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid var(--primary-gold);
    border-radius: 32px;
}

.final-offer h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 16px;
}

.final-price {
    margin: 32px 0;
}

.final-price-old {
    font-size: 24px;
    text-decoration: line-through;
    color: var(--gray-400);
    margin-right: 16px;
}

.final-price-new {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-xl {
    padding: 24px 60px;
    font-size: 20px;
    margin: 32px 0;
}

.final-urgency {
    margin: 24px 0;
    font-size: 18px;
}

.final-urgency strong {
    color: var(--primary-gold);
    font-size: 20px;
}

.final-ps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-ps p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-300);
}

.final-ps strong {
    color: var(--primary-gold);
}

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

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-600);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

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

    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .title-line-1 {
        font-size: 48px;
    }

    .title-line-2 {
        font-size: 60px;
    }

    /* Hide magic elements on tablet to avoid overflow */
    .magic-lamp-float,
    .magic-carpet-float {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero,
    section {
        overflow-x: hidden;
        width: 100%;
    }

    .section-title {
        font-size: 40px;
    }

    .title-line-1 {
        font-size: 36px;
    }

    .title-line-2 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-transformation {
        flex-direction: column;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    .pain-grid,
    .why-grid,
    .testimonial-grid,
    .info-grid,
    .paths-comparison {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pain-card,
    .why-card,
    .testimonial-card,
    .info-card,
    .path {
        width: 100%;
        max-width: 100%;
    }

    .final-offer {
        padding: 40px 24px;
    }

    .final-price-new {
        font-size: 56px;
    }

    .show-overlay {
        padding: 32px 24px;
    }

    .show-text h3 {
        font-size: 28px;
    }

    .promise-block {
        padding: 40px 20px;
        margin: 0;
        width: 100%;
    }

    .promise-block h3 {
        font-size: 32px;
    }

    .cta-box h2 {
        font-size: 40px;
    }

    .final-offer {
        padding: 40px 20px;
        width: 100%;
    }

    .offer-details {
        gap: 12px;
    }

    /* Ensure all flex/grid containers don't overflow */
    .hero-transformation,
    .badge-info,
    .trust-badges,
    .stats-row {
        width: 100%;
        gap: 12px;
    }

    /* Hide magic elements on mobile for cleaner look */
    .magic-lamp-float,
    .magic-carpet-float {
        display: none;
    }

    .genie-float {
        width: 120px;
        right: 10px;
    }
}
