/* VARIABLES Y RESET - Updated 2026-01-26 10:20 */
:root {
    --color-bg-deep: #0A192F;
    --color-gold: #D4AF37;
    --color-text-primary: #E5E5E5;
    --color-text-white: #FFFFFF;
    --color-bg-card: rgba(255, 255, 255, 0.03);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

strong {
    font-weight: 500;
    color: var(--color-text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* COMPONENTES */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--color-gold);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    font-weight: 700;
}

.cta-button.primary:hover {
    background-color: #f0c43d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 1rem auto 0;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    /* Space for top banner */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.png');
    background-size: 500px;
    /* Smaller size to see the pattern repeat */
    background-repeat: repeat;
    opacity: 0.25;
    /* Increased for visibility */
    z-index: 0;
    /* Changed from -1 to 0 to be inside the relative container correctly, or ensure container has z-index */
    pointer-events: none;
}

.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-text-secondary);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(90deg, #fff, #e5e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.cta-container {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.micro-copy {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
    font-style: italic;
}

.social-proof-hero {
    border-left: 3px solid var(--color-gold);
    padding-left: 1rem;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: grayscale(37%) contrast(1.1);
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* EXPERT MESSAGE */
.expert-message {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #0d1f3a 100%);
}

.expert-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    /* Align to top so text doesn't float in middle if image is short, or center if image is tall */
    align-items: center;
}

.expert-photo {
    position: relative;
}

.expert-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
    /* Consistent with hero style but simpler */
    border: 1px solid rgba(212, 175, 55, 0.3);
    filter: grayscale(11%) contrast(1.05);
    /* Subtle effect */
}

.expert-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.expert-message h2 {
    font-size: 2.2rem;
    text-align: left;
    /* Changed from center */
    max-width: 100%;
    /* Reset max-width */
    margin: 0;
    line-height: 1.3;
    color: var(--color-gold);
}

.message-body {
    font-size: 1.1rem;
    text-align: left;
    /* Changed from justify to left for better readability in columns */
    line-height: 1.8;
    color: var(--color-text-primary);
}

.message-body p {
    margin-bottom: 1rem;
}

/* RESPONSIVE EXPERT SECTION */
@media (max-width: 900px) {
    .expert-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .expert-photo {
        max-width: 400px;
        /* Limit width on mobile */
        margin: 0 auto;
    }

    .expert-message h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .message-body {
        text-align: left;
        /* Keep body left aligned on mobile usually better, or center if preferred. User wants aesthetic harmony. */
        text-align: center;
        /* User seemed to like centered mobile layouts in other sections. */
    }
}

/* METHOD GRID */
.method {
    padding: var(--spacing-xl) 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.method-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.method-card h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.method-detail,
.method-benefit {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.2rem;
}

/* PROGRAM */

/* PROGRAM */
.program {
    padding: var(--spacing-xl) 0;
    background-color: #0d1f3a;
}

.program-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--spacing-lg);
}

.program-meta {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-md);
}

.program-meta-secondary {
    border-right: none;
    padding-right: 0;
    padding-left: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.meta-value {
    font-size: 1.2rem;
    font-weight: 500;
}

.meta-sub {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* TARGET AUDIENCE - NEW SECTION */
.target-audience h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.audience-list li {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1rem 1rem 1.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 15px;
    /* Adjust vertical center based on padding */
    color: var(--color-gold);
    font-size: 1.2rem;
    line-height: 1;
}

.audience-list strong {
    color: var(--color-text-white);
    font-weight: 600;
}


/* FULL LIST BELOW BOX */
.program-full-list {
    margin-top: 6rem;
    /* Increased from spacing-lg (4rem) to 6rem for better separation */
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Optional separator */
}

.modules-list h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 0.8rem;
    color: var(--color-text-white);
}

.program-intro {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    max-width: 900px;
    line-height: 1.8;
}

.module-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-gold);
}

.module-item h4 {
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 2.2rem;
    font-weight: 700;
}

.module-date {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.module-item h5 {
    color: var(--color-text-white);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 1;
    border-left: 4px solid var(--color-gold);
    padding-left: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-radius: 0 4px 4px 0;
}




.detail-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    padding-left: 2rem;
    text-indent: 0;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.detail-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sub-list li {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    list-style-type: none;
    padding-left: 1.5rem;
    /* Adjust padding for sub-items */
    opacity: 0.9;
}

.sub-list li::before {
    content: '-';
    color: var(--color-gold);
    font-size: 1rem;
    text-shadow: none;
    /* Remove glow for subtlety */
    font-weight: 300;
}

/* OFFER */
.offer {
    padding: var(--spacing-xl) 0;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #112240 0%, #0A192F 100%);
    border: 2px solid var(--color-gold);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.offer-header h2 {
    color: var(--color-gold);
    font-size: 2.5rem;
}

.offer-note {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.pricing {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.promo {
    color: var(--color-text-white);
    font-weight: 500;
}

.highlight {
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 700;
}

.savings {
    margin-top: 1rem;
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.urgency-box {
    margin: var(--spacing-md) 0;
    color: #ff9999;
}

/* PACT */
.pact {
    padding: var(--spacing-lg) 0;
}

.pact-box {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pact-box h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* TESTIMONIALS */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: #0d1f3a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    padding: var(--spacing-md);
    border-left: 2px solid var(--color-gold);
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-card cite {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold);
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    /* Adjusted for better click area if needed, or keep tight */
    cursor: pointer;
}

.faq-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--color-text-white);
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    line-height: 1;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    color: var(--color-text-primary);
}

/* FOOTER */
footer {
    padding: var(--spacing-lg) 0;
    background-color: #050d1a;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

footer a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .cta-container {
        align-items: center;
    }

    .social-proof-hero {
        border-left: none;
        border-top: 3px solid var(--color-gold);
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .program-details {
        grid-template-columns: 1fr;
    }

    .program-meta {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .program-meta-secondary {
        padding-left: 0;
    }

    .offer-header h2 {
        font-size: 2rem;
    }

    .price-row {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* ABOUT AUTHOR */
.about-author {
    padding: var(--spacing-xl) 0;
    /* Harmonize background: Starts with Program color (#0d1f3a) and ends with Body color */
    background: linear-gradient(180deg, #0d1f3a 0%, var(--color-bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    /* Vertically center image relative to text */
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    /* Centers image in its cell */
}

.about-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    /* Ensures image fills the circle */
    border-radius: 50%;
    /* Circular clipping */
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: justify;
    line-height: 1.8;
}

/* Enhanced Quote Styling */
.about-quote {
    margin-top: 2rem;
    position: relative;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: 2rem 2rem 2rem 3rem;
    border-left: 4px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.about-quote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
}

.about-quote p {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-size: 1.25rem;
    /* Larger font for impact */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
    /* Keep quote text aligned left for readability */
}

.quote-author {
    display: block;
    text-align: right;
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* RESPONSIVE ADDITION FOR ABOUT */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        text-align: center;
        gap: 3rem;
    }

    .about-image {
        margin: 0 auto;
        /* Center the container itself if needed */
        width: 100%;
        justify-content: center;
    }

    .about-image img {
        width: 280px;
        height: 280px;
    }

    .about-image::before {
        width: 310px;
        height: 310px;
    }

    .about-content p {
        text-align: center;
        /* Center align body text on mobile */
    }

    .about-quote {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        /* More top padding for the quote mark */
        text-align: center;
        border-left: none;
        /* Remove side border on mobile */
        border-top: 4px solid var(--color-gold);
        /* Add top border instead */
        border-radius: 0 0 8px 8px;
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    }

    .about-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }

    .about-quote p {
        text-align: center;
    }

    .quote-author {
        text-align: center;
    }
}

/* FINAL CTA */
.final-cta {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(0deg, var(--color-bg-deep) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.final-cta h2 {
    max-width: 800px;
    margin: 0 auto 1rem;
    /* Reset section-title positioning conflicts */
    left: auto;
    transform: none;
    display: block;
}

/* MOBILE FIX FOR EXPERT SECTON (Image below text) */
@media (max-width: 768px) {
    .expert-grid {
        display: flex;
        /* Override grid */
        flex-direction: column-reverse;
        gap: var(--spacing-md);
    }

    .expert-photo {
        margin-top: var(--spacing-md);
    }
}

/* MOBILE TESTIMONIAL CAROUSEL */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        overflow: hidden;
        /* Hide scrollbars */
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
        align-items: flex-start;
        /* Important for adaptive height */
        transition: height 0.5s ease-in-out;
        /* Sync with card transform */
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* Force exact width */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem 0.5rem;
        /* Reduced horizontal padding to maximize text space */
        white-space: normal;
        /* Ensure text wraps */
        transition: transform 0.5s ease-in-out;
    }

    .mobile-only-clone {
        display: block !important;
    }
}

.mobile-only-clone {
    display: none;
}

/* FINAL CTA OVERRIDE */
.final-cta .cta-container {
    align-items: center;
}

.final-cta .price-box {
    text-align: center !important;
    width: 100%;
}

.final-cta .price-box p,
.final-cta .price-box span,
.final-cta .price-box div {
    text-align: center !important;
}

/* WAITLIST FORM */
.waitlist-form-container {
    max-width: 500px;
    margin: 2rem auto;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.25);
}

.form-input:focus {
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* INT-TEL-INPUT CUSTOMIZATION PRO */
.iti {
    width: 100%;
    margin-bottom: 0.5rem;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
    }
}

/* Dropdown Container */
.iti__country-list {
    background-color: #111 !important;
    /* Deep dark background */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    /* White text */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    max-height: 60vh !important;
    /* Taller dropdown */
    overflow-y: auto !important;
    z-index: 9999 !important;
    /* On top of everything */
}

/* Individual Country Items */
.iti__country {
    padding: 12px 15px !important;
    font-family: var(--font-body) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: background-color 0.2s ease;
    display: flex;
    /* Better alignment */
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover & Focus States */
.iti__country:hover,
.iti__country.iti__highlight,
.iti__country.iti__active {
    background-color: rgba(212, 175, 55, 0.2) !important;
    /* Gold tinge */
    color: #fff !important;
}

.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Dropdown Arrow */
.iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.7) !important;
}

.iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, 0.7) !important;
}

/* Selected Flag Area */
.iti__selected-flag {
    background: transparent !important;
    padding: 0 8px 0 16px !important;
    /* Adjust spacing */
}

/* Flag Icon */
.iti__flag-box {
    margin-right: 10px !important;
}

/* Country Name & Code */
.iti__country-name {
    margin-right: 8px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.6) !important;
    /* Subtler gray for code */
}

/* HELP SECTION */
.help-section {
    padding: var(--spacing-lg) 0;
    background-color: #0d1f3a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.help-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    /* Increased gap clearly separate columns */
    max-width: 900px;
    margin: 0 auto;
}

.help-text {
    width: fit-content;
    /* margin-left: auto; REMOVED to allow true centering of the group */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.help-text h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--color-text-white);
    letter-spacing: -0.5px;
}

.help-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* WhatsApp Icon Container to ensure perfect centering */
.whatsapp-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button {
    display: inline-block;
    border: 1px solid #33c313;
    color: #33c313;
    background: transparent;
    padding: 0.8rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Oswald', 'Montserrat', sans-serif;
}

.whatsapp-button:hover {
    background-color: #33c313;
    color: #ffffff;
}

@media (max-width: 768px) {
    .help-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .help-text {
        text-align: center;
        align-items: center;
    }
}

/* CONFIRMATION PAGE WHATSAPP BUTTON */
.btn-whatsapp-confirm {
    /* Force button appearance */
    display: flex !important;
    margin: 2rem auto !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366 !important;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    max-width: 400px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    position: relative;
    /* For pseudo-elements if needed, though flex handles it */
}

.btn-whatsapp-confirm::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background-image: url('images/whatsapp.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    /* Make icon white */
}

.btn-whatsapp-confirm:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}