/* =========================================
   HERO SECTION FONTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&family=Playfair+Display:wght@700;800;900&family=Poppins:wght@500;600;700&display=swap');

:root {
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Strict Monochromatic / Dark Theme Variables */
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --accent-light: #ffffff;
    --accent-dark: #000000;

    /* Modern Dark Gradient */
    --bg-modern-dark: radial-gradient(ellipse at 50% -20%, #2a2a2a 0%, #050505 70%, #000000 100%);

    --ease-modern: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   BASE RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--accent-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    color: var(--text-main);
}

/* =========================================
   HERO SECTION & BACKGROUND
   ========================================= */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Active: Modern Dark Gradient */
    background: var(--bg-modern-dark);
}

/* =========================================
   LAYOUT & TYPOGRAPHY
   ========================================= */
.hero-container {
    max-width: 1000px;
    /* Increased width as requested */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    /* Wide tracking for modern look */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    /* Much larger, styled heading */
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-main);
    letter-spacing: -0.04em;
    /* Tight tracking for impact */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 800px;
    margin-top: 0.5rem;
}

.hero-description strong {
    color: var(--text-main);
    font-weight: 500;
}

/* =========================================
   BUTTON STYLES
   ========================================= */
.hero-actions {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 2px;
    /* Very slight rounding */
    transition: all 0.5s var(--ease-modern);
    border: 1px solid var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* =========================================
   ANIMATIONS (STAGGERED FADE-IN UP)
   ========================================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s var(--ease-modern) forwards;
    animation-delay: 0.1s;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 1s var(--ease-modern) forwards;
    animation-delay: 0.3s;
}

.hero-description {
    opacity: 0;
    animation: fadeInUp 1s var(--ease-modern) forwards;
    animation-delay: 0.5s;
}

.hero-actions {
    opacity: 0;
    animation: fadeInUp 1s var(--ease-modern) forwards;
    animation-delay: 0.7s;
}

/* =========================================
   MOBILE RESPONSIVENESS (MEDIA QUERIES)
   ========================================= */
@media (max-width: 768px) {
    .hero-section {
        /* Uses 'svh' (Small Viewport Height) to fix the issue where mobile browser address bars cover the bottom of 100vh sections */
        min-height: 100svh;
        padding: 5rem 1.5rem;
    }

    .hero-container {
        gap: 1.2rem;
        /* Tighter spacing between elements on small screens */
    }

    .hero-subtitle {
        letter-spacing: 0.15em;
        /* Slightly tighter tracking so it doesn't break into too many lines */
        line-height: 1.4;
    }

    .hero-title {
        line-height: 1.1;
        /* Tighter line height for large stacked text on mobile */
    }

    .hero-description {
        margin-top: 0.5rem;
        line-height: 1.6;
    }

    .hero-actions {
        width: 100%;
        margin-top: 1.5rem;
    }

    .btn-primary {
        /* Full width button for a better thumb tap-target on mobile */
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
}

/* =========================================
   EXCLUSIVITY SECTION (INFINITE SLIDER)
   ========================================= */
.exclusivity-section.light-marquee {
    background-color: #f4f4f5;
    /* A crisp, light premium gray */
    color: #1a1a1a;
    padding: 1.2rem 0;
    /* Keeps the section small and banner-like */
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    /* Hides the text sliding off-screen */
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;

    /* Subtle fade-in so it doesn't jarringly appear */
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.5s;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    /* The animation that drives the slider */
    animation: scrollMarquee 20s linear infinite;
    will-change: transform;
}

/* Pause the slider when the user hovers over it so they can read */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding-right: 4rem;
    /* Spacing between the duplicated sentences */
}

.exclusivity-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    color: #000000;
}

.exclusivity-title {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #000000;
}

.exclusivity-divider {
    margin: 0 1rem;
    color: #a3a3a3;
    font-weight: 300;
}

.exclusivity-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555555;
    font-weight: 400;
}

/* =========================================
   ANIMATIONS (MARQUEE)
   ========================================= */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translates exactly one-third of the track since we have 3 identical groups */
        transform: translateX(calc(-100% / 3));
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (MARQUEE)
   ========================================= */
@media (max-width: 768px) {
    .exclusivity-section.light-marquee {
        padding: 1rem 0;
    }

    .exclusivity-title,
    .exclusivity-description {
        font-size: 0.9rem;
        /* Scales text down slightly for mobile */
    }

    .marquee-content {
        padding-right: 2rem;
    }
}

/* =========================================
   ELIGIBILITY SECTION STYLES
   ========================================= */

/* Base Section Styling */
.eligibility-section {
    background-color: #0a0a0a;
    /* Deep modern dark background */
    color: var(--text-main);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.eligibility-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(117, 234, 255, 0.03) 0%, rgba(10, 10, 10, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.eligibility-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Typography */
.eligibility-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eligibility-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

.neon-accent {
    color: #75eaff;
    text-shadow: 0 0 15px rgba(117, 234, 255, 0.4);
}

.eligibility-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
}

/* Grid Layout */
.criteria-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
}

/* Individual Cards */
.criteria-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: all 0.4s var(--ease-modern);
    backdrop-filter: blur(10px);
}

.criteria-card:hover,
.criteria-card.active {
    background: rgba(117, 234, 255, 0.04);
    border-color: rgba(117, 234, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Icons */
.card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    transition: color 0.4s var(--ease-modern);
}

.criteria-card:hover .card-icon,
.criteria-card.active .card-icon {
    color: #75eaff;
}

.icon-svg {
    width: 100%;
    height: 100%;
}

/* Card Typography */
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.card-text strong {
    font-family: var(--font-subheading);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
}

.card-subtext {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-style: italic;
}

/* Checkmark Indicator */
.check-mark {
    position: absolute;
    bottom: 1.5rem;
    color: #75eaff;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s var(--ease-modern);
}

.criteria-card:hover .check-mark,
.criteria-card.active .check-mark {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 10px rgba(117, 234, 255, 0.5);
}

/* OR Separator */
.or-separator {
    display: flex;
    align-items: center;
    font-family: var(--font-subheading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .criteria-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .criteria-card {
        width: 100%;
        max-width: 450px;
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }

    .or-separator {
        padding: 0.5rem 0;
    }
}

/* =========================================
   WHY THIS RULE EXISTS STYLES (Light Theme)
   ========================================= */

/* Base Section Styling */
.why-rule-section {
    background-color: #ffffff;
    /* Clean white background */
    color: #1a1a1a;
    padding: 6rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.why-rule-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Header & Philosophy */
.why-rule-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-rule-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #000000;
}

.blue-accent {
    color: #0091ff;
    /* A vibrant blue that pops against the white */
}

.why-rule-description {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: #555555;
}

.why-rule-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/* Individual Benefit Cards */
.benefit-card {
    background: #f8f9fa;
    /* Very subtle light gray */
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s var(--ease-modern);
}

.benefit-card:hover {
    background: #ffffff;
    border-color: #d1e9ff;
    box-shadow: 0 10px 30px rgba(0, 145, 255, 0.08);
    transform: translateY(-5px);
}

/* Minimalist SVGs */
.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: #0091ff;
    transition: transform 0.3s var(--ease-modern);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-text {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .why-rule-section {
        padding: 4rem 1.5rem;
    }

    .why-rule-container {
        gap: 3rem;
    }

    .benefits-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 1.5rem;
    }

    .benefit-icon {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        /* Prevents the icon from squishing */
    }
}

/* =========================================
   EXPERIENCE HIGHLIGHTS STYLES (Dark Theme)
   ========================================= */

/* Base Section */
.highlights-section {
    background-color: #050505;
    /* Extra dark background */
    color: #ffffff;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle atmospheric background glow */
.highlights-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(117, 234, 255, 0.04) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.highlights-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.highlights-header {
    text-align: center;
    margin-bottom: 5rem;
}

.highlights-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.neon-accent {
    color: #75eaff;
    text-shadow: 0 0 15px rgba(117, 234, 255, 0.5);
}

.highlights-subtitle {
    font-family: var(--font-subheading);
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Trail Layout Container */
.trail-wrapper {
    position: relative;
    padding: 2rem 0;
}

/* The Glowing Center Line */
.trail-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(117, 234, 255, 0) 0%,
            rgba(117, 234, 255, 0.5) 20%,
            rgba(117, 234, 255, 0.5) 80%,
            rgba(117, 234, 255, 0) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(117, 234, 255, 0.3);
}

/* Individual Trail Items */
.trail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.trail-item:last-child {
    margin-bottom: 0;
}

/* Nodes (Dots on the line) */
.trail-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #050505;
    border: 3px solid #75eaff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(117, 234, 255, 0.6);
    z-index: 3;
    transition: all 0.4s ease;
}

.trail-item:hover .trail-node {
    background-color: #75eaff;
    transform: translate(-50%, -50%) scale(1.3);
}

/* Cards */
.trail-card {
    width: 45%;
    /* Takes up just under half the width so it sits next to the line */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s var(--ease-modern);
}

/* Alternating Placement */
.trail-item.left {
    flex-direction: row-reverse;
    /* Puts the card on the left */
}

.trail-item.left .trail-card {
    text-align: right;
    flex-direction: row-reverse;
}

.trail-item.right .trail-card {
    text-align: left;
}

/* Hover Effects */
.trail-item:hover .trail-card {
    background: rgba(117, 234, 255, 0.05);
    border-color: rgba(117, 234, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Card Icons */
.card-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 50%;
}

.trail-item:hover .card-icon {
    color: #75eaff;
    background: rgba(117, 234, 255, 0.1);
    transform: scale(1.1);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography */
.trail-text {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    color: #e0e0e0;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .highlights-section {
        padding: 5rem 1.5rem;
    }

    /* Move the line to the far left */
    .trail-line {
        left: 24px;
        transform: none;
    }

    .trail-item {
        margin-bottom: 2.5rem;
        flex-direction: row !important;
        /* Force all to align the same way */
        justify-content: flex-start;
    }

    .trail-node {
        left: 24px;
        transform: translate(-50%, -50%);
    }

    .trail-item:hover .trail-node {
        transform: translate(-50%, -50%) scale(1.3);
    }

    /* Make cards take full remaining width */
    .trail-card {
        width: calc(100% - 60px);
        margin-left: 60px;
        flex-direction: row !important;
        text-align: left !important;
        padding: 1.5rem;
        gap: 1rem;
    }

    .trail-text {
        font-size: 1rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

/* =========================================
   CURIOSITY & CTA SECTION STYLES
   ========================================= */

/* Base Section */
.cta-section {
    background: #000000;
    /* Creates a subtle deep blue gradient radiating from the bottom to ground the section */
    background: radial-gradient(ellipse at bottom, #0a1930 0%, #000000 70%);
    color: #ffffff;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    /* Large gap to separate the quote from the button */
    position: relative;
    z-index: 2;
}

/* =========================================
   CURIOSITY LINE (The Quote)
   ========================================= */
.curiosity-wrapper {
    text-align: center;
    position: relative;
}

/* Large decorative quote marks using pseudo-elements */
.curiosity-wrapper::before {
    content: '“';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(117, 234, 255, 0.1);
    line-height: 1;
    z-index: -1;
}

.curiosity-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    max-width: 800px;
}

.text-highlight {
    color: #ffffff;
    font-weight: 700;
    font-style: normal;
    /* Subtle text glow */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* =========================================
   CALL TO ACTION BLOCK
   ========================================= */
.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(117, 234, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 4rem 3rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Top glow effect on the card */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #75eaff, transparent);
    box-shadow: 0 0 15px 2px rgba(117, 234, 255, 0.4);
}

.cta-title {
    font-family: var(--font-subheading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #25D366;
    /* Official WhatsApp Green */
    color: #ffffff;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s var(--ease-modern);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* =========================================
   COMMUNITY EXCLUSIVITY NOTE
   ========================================= */
.community-note {
    margin-top: 2.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lock-icon {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 1.5rem 4rem;
    }

    .cta-container {
        gap: 4rem;
    }

    .curiosity-wrapper::before {
        font-size: 6rem;
        top: -30px;
    }

    .cta-card {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .cta-description {
        font-size: 1rem;
    }

    .whatsapp-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .community-note {
        font-size: 0.85rem;
        flex-direction: column;
        /* Stacks the lock and text on very small screens */
        gap: 0.3rem;
    }
}

/* =========================================
   VIDEO BACKGROUND STYLES
   ========================================= */

.hero-section {
    position: relative;
    /* CRITICAL: Keeps the absolute video trapped inside this section */
    overflow: hidden;
    /* CRITICAL: Crops the scaled video so it doesn't leak out */
    background-color: #000;
    min-height: 100vh;
    /* Ensures the hero section takes up the full screen */

    /* Make sure your content sits above the absolute backgrounds */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio inverted */

    /* THE FIX: scale(1.3) pushes the YouTube title and controls completely off-screen */
    transform: translate(-50%, -50%) scale(1.3);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Ensure the text container stays above the overlay */
.hero-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    /* Add padding so text doesn't touch the screen edges */
}