/* 
   Premium Website - Global Style Guide
   Background: #0D0D0D (rich black)
   Primary-Accent: #E50914 (Netflix-red)
   Text - Heading: #FFFFFF
   Text - Body: #D1D1D1
   Font Pair: "Poppins" (700/600 for H1–H4), "Inter" (400/500 for body)
*/

/* ----- RESET & GLOBAL STYLES ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0D0D0D;
    --primary-accent: #E50914;
    --primary-accent-light: #FF3A3A;
    --heading-color: #FFFFFF;
    --body-color: #D1D1D1;
    --glow-color: rgba(255, 58, 58, 0.5);
    --glass-bg: rgba(13, 13, 13, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--body-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

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

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    outline: none;
}

/* ----- LAYOUT ----- */
.section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* ----- BUTTONS ----- */
.cta-button {
    background: linear-gradient(45deg, var(--primary-accent-light), var(--primary-accent));
    color: white;
    font-size: 18px;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 18px rgba(229, 9, 20, 0.3);
    text-transform: uppercase;
    display: block;
    margin: 2rem auto;
    min-width: 250px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.secondary-cta {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--primary-accent);
    font-size: 16px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.secondary-cta:hover {
    background: rgba(229, 9, 20, 0.1);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
    transform: translateY(-3px);
}

.submit-button {
    background: linear-gradient(45deg, var(--primary-accent-light), var(--primary-accent));
    color: white;
    font-size: 18px;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1rem;
}

/* ----- ANIMATIONS & EFFECTS ----- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 18px rgba(229, 9, 20, 0.3); }
    50% { box-shadow: 0 0 25px rgba(229, 9, 20, 0.6); }
    100% { box-shadow: 0 0 18px rgba(229, 9, 20, 0.3); }
}

.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.pulse-glow {
    animation: pulseGlow 4s infinite;
}

/* Parallax effect */
.parallax-container {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
}

/* ----- GLASSMORPHISM ----- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* ----- PROGRESS BAR & STEP INDICATORS ----- */
.progress-container {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

:root {
    --progress-width: 0%;
}

.progress-bar {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-accent-light), var(--primary-accent));
    width: var(--progress-width, 0%);
    transition: width 0.5s ease;
}

.step-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.step-indicators:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: -1;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.step-indicator.active {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.step-indicator.completed {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}

.step-indicator.completed:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* ----- FUNNEL CONTAINER & STEPS ----- */
.funnel-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.funnel-step {
    display: none;
    min-height: calc(100vh - 60px); /* Account for progress bar height */
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.funnel-step.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .funnel-step {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1200px) {
    .funnel-step {
        padding: 5rem;
    }
}

/* ----- HERO SECTION (STEP 1) ----- */
#step-1 {
    height: 100vh;
    position: relative;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}

.hero-content {
    max-width: 800px;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation-delay: 0.2s;
}

.sub-headline {
    font-size: 24px;
    color: var(--heading-color);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation-delay: 0.4s;
}

.badge-container {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.badge.glow {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    background: #e50914; /* Red background */
    color: white; /* White text */
}

@media (max-width: 768px) {
    .badge-container {
        top: 1rem;
    }
    .badge.glow {
        padding: 0.6rem 1.2rem;
    }
}

/* ----- PAIN-DREAM SECTION (STEP 2) ----- */
/* Mobile-first approach */
.split-section {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.split-section .left,
.split-section .right {
    width: 100%;
}

.split-section .left {
    min-height: 300px;
    height: 40vh;
    margin-bottom: 2rem;
}

.split-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.split-section ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-accent);
}

/* ----- VALUE SECTION (STEP 3) ----- */
.value-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mini Testimonials */
.mini-testimonials {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(229, 9, 20, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.avatar-row {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-accent);
    margin: 0 -8px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.mini-testimonial-text {
    font-style: italic;
    font-size: 14px;
    color: var(--heading-color);
    text-align: center;
    margin: 0;
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
}

@media (min-width: 768px) {
    .carousel-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    overflow: hidden;
}

.value-list {
    text-align: left;
    max-width: 600px;
}

.neon-list {
    border: 1px solid var(--primary-accent);
    border-radius: 10px;
    padding: 2rem;
    background: rgba(229, 9, 20, 0.05);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.15);
}

.neon-list li {
    margin-bottom: 1rem;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.neon-list li:last-child {
    margin-bottom: 0;
}

.banner-chip {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-accent);
    border-radius: 50px;
    color: var(--heading-color);
    font-weight: 500;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

/* ----- SOCIAL PROOF SECTION ----- */
.testimonial-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-card {
    flex: 0 0 90%;
    max-width: 400px;
    min-width: 280px;
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 1rem 0;
    transition: transform 0.3s ease;
    border: 1px solid rgba(229, 9, 20, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.2);
}

.avatar-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-accent);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.star-row {
    color: var(--primary-accent);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.client-name {
    font-weight: 500;
    font-size: 14px;
}

/* ----- FAQ SECTION ----- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.accordion-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.accordion-header:hover {
    background: rgba(229, 9, 20, 0.1);
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 1.25rem;
    opacity: 0;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem 1.25rem;
    opacity: 1;
}

.accordion-content p {
    color: var(--heading-color);
    font-size: 15px;
    margin-bottom: 0.5rem;
    text-align: left;
}

.accordion-item.active .accordion-header:after {
    width: 100%;
}

.accordion-item.active .accordion-header {
    background: rgba(229, 9, 20, 0.1);
}

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

/* ----- FINAL STEP CONTAINER (STEP 4) ----- */
.final-step-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.faq-section {
    flex: 1;
}

.lead-capture-section {
    flex: 1;
    position: relative;
}

/* ----- LEAD CAPTURE SECTION ----- */
.glass-form-card {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Mini testimonial in form */
.testimonial-mini {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-left: 2px solid var(--primary-accent);
}

.avatar-container.small {
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
}

.quote-mini {
    font-size: 14px;
    font-style: italic;
    margin: 0;
    color: var(--heading-color);
}

.wireframe-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/wireframe-bg.svg') repeat;
    background-size: 500px;
    opacity: 0.1;
    animation: animateWireframe 20s linear infinite;
    z-index: 1;
}

@keyframes animateWireframe {
    0% { background-position: 0 0; }
    100% { background-position: 500px 500px; }
}

.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--heading-color);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.radio-group p {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.radio-options {
    display: flex;
    gap: 1.5rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
}

input[type="radio"]:checked {
    border-color: var(--primary-accent);
}

input[type="radio"]:checked:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-accent);
    display: block;
}

.form-disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 1rem;
    text-align: center;
}

.input-hint {
    font-size: 11px;
    color: var(--body-color);
    opacity: 0.8;
    margin-top: 5px;
    line-height: 1.4;
}

/* WhatsApp field with country code selector */
.phone-input-container {
    display: flex;
    gap: 0;
    width: 100%;
}

.phone-input-container select {
    width: 40%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px 0 0 8px;
    color: var(--heading-color);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23ffffff" d="M0 0l6 6 6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.phone-input-container select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
}

/* Custom select dropdown for country codes */
.custom-select {
    position: relative;
    width: 40%;
    font-family: 'Inter', sans-serif;
}

.select-selected {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--heading-color);
    padding: 1rem;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    position: relative;
}

.select-selected:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--heading-color);
    transform: translateY(-50%);
}

.select-selected.select-arrow-active:after {
    border-top: none;
    border-bottom: 5px solid var(--heading-color);
}

.select-items {
    position: absolute;
    background-color: #1a1a1a;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.select-hide {
    display: none;
}

.select-items div {
    color: var(--heading-color);
    padding: 10px 16px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.select-items div:hover, .select-items div.selected {
    background-color: rgba(229, 9, 20, 0.2);
}

.phone-input-container input {
    width: 60%;
    border-radius: 0 8px 8px 0;
    border-left: none;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.phone-input-container input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
}

/* For mobile screens, make the layout more compact */
@media (max-width: 480px) {
    .custom-select {
        width: 45%;
    }
    
    .select-selected {
        font-size: 13px;
        padding: 1rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .select-items div {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .phone-input-container input {
        width: 55%;
        font-size: 13px;
    }
    
    /* Make dropdown options easier to tap on mobile */
    .select-items {
        max-height: 250px;
        touch-action: manipulation;
    }
}

.security-note {
    font-size: 12px;
    opacity: 0.6;
    text-align: center;
    margin-top: 1rem;
}

.security-note i {
    margin-right: 0.5rem;
}

/* ----- THANK YOU MODAL ----- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.visible {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--primary-accent);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
    position: relative;
    animation: modalAppear 0.5s ease-out forwards;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.modal-icon i {
    font-size: 40px;
    color: white;
}

.modal-countdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin: 20px 0;
    border-left: 3px solid var(--primary-accent);
}

.modal-countdown p {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#countdown {
    font-weight: 700;
    color: var(--primary-accent);
}

#user-first-name,
#email-recipient,
#email-name {
    color: var(--primary-accent);
    font-weight: 700;
}

/* Email Preview Styles */
.email-preview {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    display: none; /* Hidden by default, shown after form submission */
}

.email-preview h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-preview-content {
    background: rgba(13, 13, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.email-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.email-header p {
    margin-bottom: 5px;
    font-size: 14px;
}

.email-body {
    font-size: 14px;
    line-height: 1.5;
}

.email-body p {
    margin-bottom: 15px;
}

.email-steps {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.email-steps th,
.email-steps td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    text-align: left;
}

.email-steps th {
    background: rgba(229, 9, 20, 0.1);
    color: var(--heading-color);
}

.email-note {
    font-style: italic;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 20px;
}

.email-error-note {
    background-color: rgba(255, 50, 50, 0.1);
    border-left: 3px solid rgba(255, 50, 50, 0.5);
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 14px;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Confetti Animation Styles */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 20px;
    top: -20px;
    animation: confettiFall 5s linear forwards;
    opacity: 0.8;
}

@keyframes confettiFall {
    0% {
        top: -20px;
        transform: rotate(0deg) translateX(0);
        opacity: 0.8;
    }
    25% {
        transform: rotate(45deg) translateX(15px);
    }
    50% {
        transform: rotate(-20deg) translateX(-15px);
    }
    75% {
        transform: rotate(10deg) translateX(10px);
        opacity: 0.8;
    }
    100% {
        top: 100vh;
        transform: rotate(25deg) translateX(-10px);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .modal-content {
        padding: 3rem;
    }
}

/* ----- RESPONSIVE STYLES ----- */
/* Mobile-first approach - these are the base styles */
h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

.funnel-step {
    padding: 2rem 1.5rem;
}

#step-1 {
    height: auto;
    min-height: 100vh;
    position: relative;
}

/* Ensure spots-left badge is centered on mobile */
.badge.centered {
    top: 1.5rem;
    width: auto;
    min-width: 150px;
    padding: 0.5rem 1rem;
    font-size: 13px;
}

.step-indicators {
    gap: 15px;
}

/* Tablet and desktop styles */
@media (min-width: 768px) {
    .split-section {
        flex-direction: row;
        gap: 2rem;
    }
    
    .split-section .left,
    .split-section .right {
        flex: 1;
        width: 50%;
    }
    
    .split-section .left {
        height: auto;
        margin-bottom: 0;
    }
    
    .value-container {
        flex-direction: row;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.33% - 1rem);
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .funnel-step {
        padding: 5rem 2rem;
    }
    
    .final-step-container {
        flex-direction: row;
        gap: 3rem;
    }
    
    .step-indicators {
        gap: 30px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    h1 {
        font-size: 60px;
    }
    
    .funnel-step {
        padding: 5rem;
    }
}

/* Media query for reduced motion */
@media (prefers-reduced-motion) {
    .parallax-image {
        transform: none !important;
    }
    
    .pulse-glow {
        animation: none !important;
    }
    
    .cta-button:hover {
        transform: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
