/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */

:root {
    /* Dark futuristic theme */
    --background: hsl(220, 27%, 8%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(220, 27%, 10%);
    --card-foreground: hsl(0, 0%, 98%);
    --primary: hsl(266, 100%, 75%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 27%, 15%);
    --muted: hsl(220, 27%, 15%);
    --muted-foreground: hsl(0, 0%, 70%);
    --accent: hsl(266, 85%, 65%);
    --border: hsl(220, 27%, 20%);
    --gold: #FBBF24;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(266, 100%, 25%) 0%, hsl(220, 27%, 8%) 50%, hsl(266, 50%, 15%) 100%);
    --gradient-accent: linear-gradient(90deg, hsl(266, 100%, 75%) 0%, hsl(280, 100%, 80%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(220, 27%, 12%) 0%, hsl(220, 27%, 8%) 100%);
    
    /* Effects */
    --glow-primary: 0 0 30px hsl(266, 100%, 75% / 0.3);
    --glow-accent: 0 0 20px hsl(266, 100%, 75% / 0.2);
    --radius: 0.5rem;
}

/* ============================================
   BASE STYLES
   ============================================ */

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

body {
    background: var(--gradient-hero);
    color: var(--foreground);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   STARFIELD BACKGROUND
   ============================================ */

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.starfield::before,
.starfield::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.starfield::before {
    top: 20%;
    left: 30%;
    box-shadow: 
        100px 200px white,
        300px 100px white,
        500px 300px white,
        700px 150px white,
        900px 250px white,
        200px 400px white,
        400px 500px white,
        600px 450px white,
        800px 550px white,
        150px 600px white;
}

.starfield::after {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
    box-shadow: 
        -100px 100px white,
        -300px 200px white,
        -500px 150px white,
        -700px 300px white,
        -200px 450px white,
        -400px 350px white,
        -600px 500px white,
        -150px 250px white;
}

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

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

.hero-section {
    position: relative;
    z-index: 1;
    padding: 3rem 0 4rem;
}

/* Trust Indicators */
.trust-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(220, 27%, 10%, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.badge i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(209, 213, 219, 0.5);
}

.rating-text {
    color: #333;
    font-weight: 500;
    font-size: 0.875rem;
    margin-right: 10px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.stars i {
    color: var(--gold);
    font-size: 0.875rem;
}

.google-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('images/google-icon.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-left: 0.5rem;
}

/* Main Headline */
.above-heading {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.main-headline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.main-headline h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-headline h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.subheadline {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Primary */
.cta-primary {
    text-align: center;
    margin: 2rem 0;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsl(266, 100%, 75% / 0.5);
}

.cta-subtext {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.value-prop i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.testimonial-track {
    position: relative;
    min-height: 200px;
}

.testimonial-card {
    display: none;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content .stars {
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    text-align: left;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
}

.author-title {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(139, 92, 246, 0.4);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ============================================
   CALENDAR SECTION
   ============================================ */

.calendar-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.calendar-trust {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.calendly-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.calendar-guarantee {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.step-number {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--muted-foreground);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: transparent;
    padding: 0;
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.result-map-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    border-radius: 1rem;
    margin: 0 auto;
}

.result-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
}

.result-logo img {
    max-width: 250px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.result-info {
    margin-bottom: 1.5rem;
}

.result-info p {
    margin-bottom: 0.5rem;
}

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

.result-image-wrapper {
    position: relative;
}

.result-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.result-image-wrapper img {
    width: 100%;
    border-radius: 0.5rem;
}

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

.cta-pretext {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.limited-offer {
    margin-top: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

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

.testimonials-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-grid-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.testimonial-grid-card .stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

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

.benefits-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--muted-foreground);
}

/* ============================================
   URGENCY SECTION
   ============================================ */

.urgency-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.urgency-stat {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    min-width: 200px;
}

.urgency-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.urgency-label {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.urgency-notice {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.875rem;
}

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

.faq-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.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 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.final-cta-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.final-cta-box {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    text-align: center;
}

.final-cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta-box > p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--primary);
}

.spots-remaining {
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.trust-badges p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.trust-badges i {
    margin-right: 0.5rem;
}

.final-testimonial {
    margin-top: 2rem;
    font-style: italic;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .main-headline h1 {
        font-size: 2rem;
    }

    .main-headline h2 {
        font-size: 1.5rem;
    }

    .value-props {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        padding: 0 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .urgency-stats {
        flex-direction: column;
        align-items: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .final-cta-features {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust-wrap {
        flex-direction: column;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .result-images {
        grid-template-columns: 1fr;
    }
}
