:root {
    /* Color Palette */
    --primary-bg: #14478F;
    --secondary-bg: #0D3266;
    --accent-color: #F7B500;
    /* Gold/Yellow */
    --accent-hover: #E5A400;
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --text-dark: #0A2447;
    --white: #FFFFFF;
    --light-blue-bg: #F0F4F8;
    --card-bg: #FFFFFF;
    --trust-green: #28A745;

    /* Spacing & Borders */
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    padding-bottom: 120px;
    /* Space for sticky bar on desktop */
}

@media (max-width: 992px) {
    body {
        padding-bottom: 180px;
        /* Space for stacked sticky bar on mobile */
    }
}

/* Utility to prevent scrolling */
.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

/* Remove bottom space for thanks page specifically */
.thanks-page {
    padding-bottom: 20px !important;
}

h1,
h2,
h3,
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

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

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

/* --- MARQUEE --- */
.marquee-container {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee span {
    display: inline-block;
    padding-left: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    animation: wiggle 3s infinite;
}

@media (max-width: 768px) {
    .btn {
        padding: 15px 10px;
        font-size: 17px;
    }
}

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-4deg);
    }

    20% {
        transform: rotateZ(3deg);
    }

    25% {
        transform: rotateZ(-2deg);
    }

    30% {
        transform: rotateZ(1deg);
    }

    35% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(0);
    }
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(247, 181, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: radial-gradient(circle at 70% 30%, #1A59B0 0%, #14478F 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('ai_finance_abstract_bg_1777708752995.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

/* Subtle glow effects */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 89, 176, 0.4) 0%, rgba(20, 71, 143, 0) 70%);
    top: 10%;
    right: -10%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-headline {
    font-size: 43px;
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 900;
    max-width: 700px;
    color: var(--white);
}

.hero-headline .line-3 {
    color: var(--accent-color);
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(247, 181, 0, 0.3);
}

.hero-headline .line-3::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 105%;
    height: 6px;
    background: var(--accent-color);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-headline .line-3::after {
        height: 3px;
    }
}


.hero-info-row {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    /* More white background */
    backdrop-filter: blur(15px);
    border: 1.5px solid var(--accent-color);
    /* Golden border */
    padding: 14px 28px;
    border-radius: 16px;
    margin: 10px 0 35px;
    color: #0D3266;
    /* Blue text color */
    font-weight: 800;
    /* Bolder */
    font-size: 22px;
    /* Increased font size */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
}

.hero-info-row::before {
    content: 'LIVE';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #FF3B30;
    /* Vibrant red */
    color: white;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
    z-index: 5;
}

.hero-info-row i {
    color: #0D3266;
    /* Matching blue for the icon */
    font-size: 22px;
    /* Matching icon size */
}

@media (max-width: 768px) {
    .hero-info-row {
        padding: 10px 20px;
        font-size: 18px;
        /* Increased from 16px */
        margin-bottom: 25px;
        box-shadow: none !important;
        /* Remove shadow on mobile as requested */
        backdrop-filter: none !important;
        /* Fix potential dark edges on mobile browsers */
        background: rgba(255, 255, 255, 0.95);
        /* Keep it almost solid white */
    }

    .hero-info-row::before {
        top: -8px;
        right: -5px;
        font-size: 9px;
        padding: 3px 10px;
    }
}

.hero-subheadline {
    font-size: 21px;
    line-height: 1.55;
    color: var(--white);
    margin-bottom: 35px;
    max-width: 640px;
}

.hero-subheadline strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-cta .btn {
    width: 500px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-subtext-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    max-width: 500px;
}

.valued-at {
    color: var(--accent-color);
    font-weight: 800;
    background: rgba(247, 181, 0, 0.1);
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
}

.hero .valued-at {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.scarcity-hero {
    color: var(--accent-color);
    text-transform: uppercase;
}

.trust-strip {
    margin-top: 40px;
    font-size: 14px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

/* --- VIDEO CARD PREMIUM --- */
.video-card {
    width: 540px;
    height: 320px;
    background: rgba(13, 50, 102, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .video-card {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        /* Reduced shadow for mobile */
        border-radius: 16px;
    }
}

.video-card iframe {
    position: relative;
    z-index: 5;
    border: none;
}

.video-label {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
}

.play-btn {
    position: relative;
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(247, 181, 0, 0.5);
    z-index: 10;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(247, 181, 0, 0.7);
}

/* --- SECTION HEADINGS --- */
.eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 40px;
    color: var(--text-main);
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-cta {
    margin-top: 50px;
}


@media (max-width: 768px) {
    .section-cta {
        margin-top: 30px;
    }
}

/* --- LOGO SLIDER SECTION --- */
.logo-slider-section {
    background: #ffffff;
    padding: 30px 0 30px 0;
    overflow: hidden;
    border-top: 1px solid rgba(20, 71, 143, 0.08);
}

/* Specific styling for the Featured In logo slider section */
.logo-slider-section.featured-logos-section {
    background: #f4f7fc;
    padding: 35px 0;
    border-top: 1.5px solid rgba(20, 71, 143, 0.05);
    border-bottom: 1.5px solid rgba(20, 71, 143, 0.05);
}

.featured-logos-section .featured-heading {
    color: #0b3c7d;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.logo-slider-track-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.featured-logos-section .logo-slider-track-wrapper {
    max-width: 800px;
}

@media (min-width: 992px) {
    .featured-logos-section .logo-slider-track-wrapper {
        max-width: 1100px;
    }
}

.logo-slider-track-wrapper::before,
.logo-slider-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-track-wrapper::before {
    left: 0;
}

.logo-slider-track-wrapper::after {
    right: 0;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: logo-scroll 28s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.featured-logos-section .logo-slide img {
    height: 64px;
    max-width: 180px;
}

@media (min-width: 992px) {
    .featured-logos-section .logo-slide img {
        height: 72px;
        max-width: 200px;
    }
}

.logo-slide img:hover {
    transform: scale(1.08);
}

/* --- DISCOVERY SECTION --- */
.discovery {
    padding: 70px 0;
    background-color: var(--white);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(20, 71, 143, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(247, 181, 0, 0.03) 0%, transparent 40%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.discovery .eyebrow {
    color: var(--accent-color);
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
}

.discovery .container {
    max-width: 1200px;
}

.discovery .section-heading {
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 10px;
    font-size: 48px;
    line-height: 1.1;
}

.discovery-subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
    display: block;
}

.secrets-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto 40px;
    text-align: left;
}

.discovery-point {
    display: flex;
    gap: 20px;
    background: #F0F7FF;
    padding: 22px 25px;
    border-radius: 12px;
    border-left: 6px solid var(--primary-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    align-items: center;
    position: relative;
}

.discovery-point:hover {
    transform: translateX(10px);
    background: #E6F0FF;
}

.point-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-bg);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(20, 71, 143, 0.2);
}

.point-number {
    display: none;
}

.point-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 800;
}

.point-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
}

.point-content p strong {
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .secrets-list {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .discovery .section-heading {
        font-size: 34px;
    }
}

/* --- AI OUTCOMES SECTION --- */
.ai-outcomes {
    padding: 90px 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.ai-outcomes::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 181, 0, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.ai-outcomes::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 89, 176, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.ai-outcomes .section-heading {
    color: var(--white);
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 44px;
    line-height: 1.15;
}

.ai-outcomes-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 55px;
    line-height: 1.65;
    display: block;
}

.ai-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ai-outcome-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 181, 0, 0.25);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ai-outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ffdd57);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-outcome-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ai-outcome-card:hover::before {
    opacity: 1;
}

.ai-outcome-icon {
    width: 64px;
    height: 64px;
    background: rgba(247, 181, 0, 0.12);
    border: 1.5px solid rgba(247, 181, 0, 0.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent-color);
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.ai-outcome-card:hover .ai-outcome-icon {
    background: rgba(247, 181, 0, 0.22);
    transform: scale(1.08);
}

.ai-outcome-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.ai-outcome-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .ai-outcomes-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .ai-outcomes .section-heading {
        font-size: 32px;
    }

    .ai-outcomes {
        padding: 70px 0;
    }
}


.audience {
    padding: 120px 0;
    background-color: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.audience::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(20, 71, 143, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.audience .eyebrow {
    color: var(--primary-bg);
    opacity: 0.6;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.audience .section-heading {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 48px;
}

.audience-subtitle {
    color: #000000;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(20, 71, 143, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.audience-card::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(247, 181, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.audience-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(247, 181, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.audience-card::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(247, 181, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(247, 181, 0, 0.2);
    border-color: var(--accent-color);
}

.audience-icon {
    width: 54px;
    height: 54px;
    background: #FFF9E6;
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(247, 181, 0, 0.2);
    border: 1px solid rgba(247, 181, 0, 0.1);
}

.audience-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.audience-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
}

.audience-card p strong {
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.audience-card p b {
    color: var(--text-dark);
}

.warning-strip {
    max-width: 1000px;
    margin: 70px auto 40px;
    background: linear-gradient(90deg, #FFF5F5 0%, #FFF9F9 100%);
    border: 1px solid #FED7D7;
    padding: 24px 45px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: #C53030;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    box-shadow: 0 10px 25px rgba(197, 48, 48, 0.05);
}

.warning-strip i {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-strip strong {
    color: #9B2C2C;
}

@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-card.featured {
        grid-column: span 1;
    }
}

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

    .warning-strip {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 25px;
    }
}

/* --- INSTRUCTOR SECTION --- */
.instructor {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .instructor-grid {
        gap: 20px;
    }
}

.instructor-content {
    padding-top: 0;
}

.instructor-content .section-heading {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
}

.instructor-visual {
    position: sticky;
    top: 120px;
    /* Offset for sticky bar/nav */
}

.image-frame {
    position: relative;
    border: 8px solid var(--accent-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    display: block;
}

.credibility-list {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cred-item {
    background: var(--white);
    color: var(--primary-bg);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cred-item span {
    color: var(--primary-bg);
    font-weight: 900;
}

.instructor-positioning {
    margin: 28px 0 8px;
    padding: 20px 24px;
    background: rgba(247, 181, 0, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
}

.positioning-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.positioning-text strong {
    color: var(--accent-color);
}

.instructor-value-props {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: none;
}

.value-prop {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.prop-icon {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 5px;
}

.value-prop p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
}

.prop-icon {
    color: var(--accent-color);
    font-size: 18px;
    line-height: 1.4;
}

.value-prop p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.instructor-bullets {
    list-style: none;
    margin-top: 20px;
}

.instructor-bullets li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.instructor-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* --- SCARCITY STRIP --- */
.scarcity-strip-full {
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 20px;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
}

/* --- BONUSES SECTION --- */
.bonuses {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.bonuses .section-heading {
    color: var(--text-dark);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.bonus-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(247, 181, 0, 0.2);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(247, 181, 0, 0.12);
    border-color: var(--accent-color);
}

.bonus-card.featured {
    grid-column: span 2;
    background: var(--secondary-bg);
    color: var(--white);
    border-color: var(--accent-color);
    padding: 45px 35px;
}

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

    .bonus-card.featured {
        grid-column: span 2;
    }
}

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

    .bonus-card.featured {
        grid-column: span 1;
        padding: 35px 25px;
    }
}

.bonus-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FF4D4D;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    z-index: 10;
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 800;
}

.bonus-card.featured h3 {
    color: var(--accent-color);
    font-size: 28px;
}

.bonus-card.featured p {
    color: #ffffff;
    font-size: 16px;
}

.bonus-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

.total-value {
    margin-top: 60px;
    font-size: 25px;
    font-weight: 900;
    color: var(--accent-color);
    background: var(--secondary-bg);
    padding: 22px 50px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(247, 181, 0, 0.3);
    animation: pulse-gold-alt 2s infinite ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .total-value {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 20px;
        line-height: 1.4;
        margin-top: 20px;
    }
}

@keyframes pulse-gold-alt {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(247, 181, 0, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 60px rgba(247, 181, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(247, 181, 0, 0.3);
    }
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-blue-bg);
    color: var(--text-dark);
}

.testimonials .section-heading {
    color: var(--text-dark);
}

.trustpilot-badge {
    margin-bottom: 40px;
}

.stars {
    color: var(--trust-green);
}

.testimonial-perspective-container {
    perspective: 2000px;
    margin: 10px 0;
    overflow: hidden;
}

.perspective-track {
    height: 450px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.perspective-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.perspective-card.center {
    opacity: 1;
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.1);
    pointer-events: auto;
}

.perspective-card.side.left {
    opacity: 0.5;
    z-index: 10;
    transform: translate(-50%, -50%) rotateY(35deg) translateX(-320px) scale(0.8);
    pointer-events: auto;
}

.perspective-card.side.right {
    opacity: 0.5;
    z-index: 10;
    transform: translate(-50%, -50%) rotateY(-35deg) translateX(320px) scale(0.8);
    pointer-events: auto;
}

.trust-card-mockup {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.trust-card-mockup.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 50px 120px rgba(247, 181, 0, 0.18);
}

.mock-stars {
    color: #00b67a;
    font-size: 22px;
    margin-bottom: 25px;
}

.trust-card-mockup p {
    font-size: 17px;
    line-height: 1.6;
    color: #2D3748;
    font-style: italic;
    margin-bottom: 30px;
}

.mock-user {
    font-weight: 800;
    font-size: 15px;
    color: var(--secondary-bg);
}

@media (max-width: 992px) {
    .perspective-track {
        height: 390px;
    }

    .perspective-card {
        max-width: 340px;
    }

    .perspective-card.side {
        display: none;
    }

    .perspective-card.center {
        transform: translate(-50%, -50%) scale(1);
    }

    .trust-card-mockup {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .perspective-card {
        max-width: 290px;
    }

    .trust-card-mockup {
        max-width: 290px;
        padding: 25px 15px;
    }
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.faq .section-heading {
    color: var(--text-dark);
}

.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(247, 181, 0, 0.3);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(247, 181, 0, 0.1);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    color: var(--secondary-bg);
}

.faq-question i {
    font-size: 16px;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #F7FAFC;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.perspective-card.hidden {
    display: none;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.slider-btn {
    background: var(--white);
    border: 1px solid #E2E8F0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #000000;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .fa-plus::before {
    content: "\f068";
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 36, 71, 0.95), rgba(10, 36, 71, 0.95)), url('ai_finance_abstract_bg_1777708752995.png');
    background-size: cover;
    background-position: center;
}

.final-cta-box {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
}

.final-cta-heading {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--white);
}

.final-cta-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 50px;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-giant {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(247, 181, 0, 0.4);
}

.btn-giant:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(247, 181, 0, 0.6);
}

.btn-giant .main-text {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
    white-space: nowrap;
}

.btn-giant .sub-text {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.urgency-label {
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
}

.hero {
    overflow: hidden;
}

.registration-form input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    font-size: 16px;
    width: 100%;
}

.registration-form .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #718096;
}

/* --- STICKY BAR --- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    padding: 15px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0 auto;
    padding: 0 20px;
}

.fomo-badge {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    color: #E53E3E;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.1);
    white-space: nowrap;
}

.seats-left i {
    margin-right: 8px;
    color: #F6AD55;
}

.timer-countdown {
    font-family: monospace;
    font-size: 20px;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-dark) !important;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(247, 181, 0, 0.3);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .sticky-wrapper {
        flex-direction: column;
        gap: 12px;
        max-width: 420px;
    }

    .fomo-badge {
        width: 100%;
        justify-content: space-between;
    }

    .sticky-btn {
        width: 100%;
    }

    .fomo-badge {
        padding: 6px 15px;
        font-size: 14px;
        gap: 10px;
    }

    .timer-countdown {
        font-size: 18px;
    }

    .sticky-btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0;
    background-color: #071933;
    font-size: 13px;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.footer-info {
    margin-bottom: 40px;
}

.footer-info strong {
    font-size: 20px;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.copyright {
    margin-bottom: 20px;
    margin-top: 20px;
}

.disclaimer {
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.8;
}

/* --- FOMO NOTIFICATION --- */
.fomo-notification {
    position: fixed;
    bottom: 25px;
    /* Clear and professional placement */
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    /* Higher than sticky bar (1000) */
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--accent-color);
}

@media (max-width: 992px) {
    .fomo-notification {
        display: none !important;
    }
}

.fomo-notification.active {
    transform: translateX(0);
}

.fomo-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fomo-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fomo-text span {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-dark);
}

.fomo-text p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-headline {
        margin: 0 auto 20px;
        font-size: 42px;
    }

    .hero-info-row,
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        align-items: center;
        width: 100%;
    }

    .video-card {
        margin: 0 auto;
        width: 100%;
        max-width: 540px;
    }

    .instructor-grid,
    .testimonials-layout,
    .final-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .hero-content {
        display: contents;
    }

    .hero-badge {
        order: 1;
        margin: 0 auto 20px;
    }

    .hero-headline {
        order: 2;
        font-size: 23px;
        margin: 0 auto 20px;
        max-width: 100%;
    }

    .hero-headline br {
        display: none;
    }

    .hero-visual {
        order: 3;
        margin: 0 auto 30px;
        width: 100%;
    }

    .video-card {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        max-width: 540px;
        margin: 0 auto;
    }

    .hero-info-row {
        order: 4;
        margin: 0 auto 20px;
    }

    .hero-subheadline {
        order: 5;
        font-size: 15px;
        margin: 0 auto 25px;
        max-width: 100%;
    }

    .hero-cta {
        order: 6;
        width: 100%;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        font-size: 17px;
        padding: 15px 10px;
        height: auto;
        min-height: 60px;
    }

    .btn-subtext-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .trust-strip {
        order: 7;
        margin-top: 10px;
    }

    .section-heading {
        font-size: 28px;
    }

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

    .final-cta {
        padding: 40px 0;
    }

    .final-cta-box {
        padding: 40px 20px;
    }

    .final-cta-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .final-cta-heading br {
        display: none;
    }

    .final-cta-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-giant {
        width: 100%;
        padding: 15px 15px;
    }

    .btn-giant .main-text {
        font-size: 17px;
        margin-bottom: 3px;
    }

    .btn-giant .sub-text {
        font-size: 13px;
    }

    /* Instructor Mobile Overrides */
    .instructor {
        padding: 40px 0;
    }

    .instructor-visual {
        position: static !important;
        margin-bottom: 15px;
    }

    .instructor-content .section-heading {
        text-align: center;
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .image-frame {
        border-width: 5px;
    }

    .credibility-list {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }

    .cred-item {
        width: 100%;
        padding: 12px 18px;
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.5;
        display: block;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        justify-content: flex-start;
    }

    .cred-item span {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .instructor-bio {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .instructor-cta {
        display: flex;
        justify-content: center;
        margin-top: 30px !important;
    }

    .instructor-cta .btn {
        width: 100%;
        max-width: 500px;
    }

    /* Testimonials Mobile Overrides */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials .eyebrow {
        font-size: 13px;
        margin-bottom: 5px;
        display: block;
    }

    .testimonials .section-heading {
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .trustpilot-badge {
        margin-bottom: 30px;
        font-size: 14px;
    }

    /* Bonuses Mobile Overrides */
    .bonuses {
        padding: 50px 0;
    }

    .bonuses .eyebrow {
        margin-bottom: 5px;
        display: block;
    }

    .bonuses .section-heading {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 1.3;
    }

    .bonuses .section-heading br {
        display: none;
    }

    .bonuses .subtitle {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .bonuses-grid {
        margin-top: 30px;
        gap: 15px;
    }

    .bonus-card {
        padding: 25px 20px;
    }

    .bonus-card.featured {
        padding: 30px 20px;
    }

    .bonus-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .bonus-card.featured h3 {
        font-size: 22px;
    }

    .bonus-card p {
        font-size: 15px;
        line-height: 1.4;
    }

    .bonus-card.featured p {
        font-size: 15px;
    }

    .bonus-value {
        margin-bottom: 8px;
        font-size: 13px;
    }

    /* Audience Mobile Overrides */
    .audience {
        padding: 60px 0;
    }

    .audience .section-heading {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .audience-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .audience-card {
        padding: 20px;
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 15px;
        align-items: center;
        text-align: left;
    }

    .audience-icon {
        grid-row: 1;
        grid-column: 1;
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .audience-card h3 {
        grid-row: 1;
        grid-column: 2;
        font-size: 18px;
        margin-bottom: 0;
        text-align: left;
    }

    .audience-card p {
        grid-row: 2;
        grid-column: 1 / span 2;
        font-size: 15px;
        margin-top: 15px;
        text-align: left;
    }

    .warning-strip {
        margin: 40px auto 20px;
        padding: 20px;
        border-radius: 20px;
        font-size: 14px;
        gap: 15px;
    }

    .warning-strip i {
        font-size: 20px;
    }

    /* Discovery Mobile Overrides */
    .discovery {
        padding: 50px 0;
    }

    .discovery .eyebrow {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .discovery .section-heading {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .discovery-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .secrets-list {
        margin-top: 20px;
        gap: 12px;
    }

    .discovery-point {
        padding: 15px;
        border-left-width: 4px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 15px;
        align-items: center;
        text-align: left;
    }

    .point-icon {
        grid-row: 1;
        grid-column: 1;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .point-content {
        display: contents;
    }

    .point-content h3 {
        grid-row: 1;
        grid-column: 2;
        font-size: 17px;
        margin-bottom: 0;
    }

    .point-content p {
        grid-row: 2;
        grid-column: 1 / span 2;
        font-size: 14px;
        line-height: 1.5;
        margin-top: 12px;
    }

    .discovery-point:hover {
        transform: none;
    }


    /* FAQ Mobile Overrides */
    .faq {
        padding: 50px 0;
    }

    .faq-accordion {
        margin-top: 30px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .faq-item:hover {
        transform: none;
    }

    /* Disable hover translate on mobile */
}

/* --- REGISTRATION POPUP CSS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 50, 102, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    padding: 40px 35px;
    margin: auto;
    /* Center when flex and allow scrolling */
    transform: scale(0.8) translateY(50px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #F0F4F8;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #E2E8F0;
    color: var(--primary-bg);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-eyebrow {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.modal-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-header p {
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-bg);
}

.form-group input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-bg);
    box-shadow: 0 0 0 4px rgba(20, 71, 143, 0.05);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code-container {
    position: relative;
    display: inline-block;
}

.country-code {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    color: #000000;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    user-select: none;
}

.country-code:hover {
    background: #EDF2F7;
    border-color: #CBD5E0;
}

.country-code::after {
    content: '▼';
    font-size: 9px;
    color: #718096;
    transition: transform 0.2s ease;
}

.country-code.active::after {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2100;
    width: 250px;
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 8px 0;
}

.country-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    padding: 10px 16px;
    font-size: 14px;
    color: #2D3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.country-option:hover {
    background: #F7FAFC;
    color: var(--primary-bg);
}

.country-option.selected {
    font-weight: bold;
    color: var(--primary-bg);
    background: #F0F4F8;
}

.custom-country-code-container {
    padding: 8px 12px;
    border-top: 1px solid #EDF2F7;
    margin-top: 5px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.custom-country-code-input {
    flex: 1;
    padding: 6px 10px !important;
    font-size: 13px !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 6px !important;
    height: 32px !important;
    width: 100% !important;
}

.custom-country-code-btn {
    background: var(--primary-bg);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.custom-country-code-btn:hover {
    background: var(--secondary-bg);
}


.form-note {
    font-size: 11px;
    color: #718096;
}

.modal-form button {
    margin-top: 5px;
    padding: 16px;
    font-size: 17px;
    font-weight: 900;
    border: none;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.modal-footer p {
    font-size: 12px;
    color: #718096;
    margin-bottom: 12px;
}

.modal-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF5F5;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    color: #C53030;
    font-weight: 700;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #F56565;
    border-radius: 50%;
    position: relative;
}

.live-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F56565;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .modal-container {
        padding: 25px 20px;
        margin: 10px;
        border-radius: 20px;
        max-width: 95%;
    }

    .modal-header {
        margin-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .modal-header p {
        font-size: 13px;
        line-height: 1.3;
    }

    .modal-eyebrow {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .modal-form {
        gap: 10px;
    }

    .form-group {
        gap: 4px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input {
        padding: 10px 15px;
        font-size: 14px;
    }

    .country-code {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-note {
        font-size: 10px;
    }

    .modal-form button {
        padding: 16px;
        font-size: 15px;
        margin-top: 5px;
    }

    .modal-footer {
        margin-top: 15px;
    }

    .modal-footer p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .modal-scarcity {
        padding: 4px 12px;
        font-size: 10px;
    }
}

/* --- THANK YOU PAGE STYLES --- */
.thanks-page {
    background-color: var(--primary-bg);
}

.thanks-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at center, #1A59B0 0%, #14478F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thanks-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 181, 0, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    box-shadow: 0 0 40px rgba(247, 181, 0, 0.4);
    animation: success-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
}

.thanks-hero p {
    font-size: 22px;
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.next-steps {
    padding: 60px 0 100px;
    background: #f7f9fc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(20, 71, 143, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(20, 71, 143, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #F0F7FF;
    color: var(--primary-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.02);
}

.step-link {
    color: var(--primary-bg);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.step-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .thanks-hero h1 {
        font-size: 40px;
    }

    .thanks-hero p {
        font-size: 18px;
    }
}

/* --- SOCIAL BRANDING & INSTRUCTIONS --- */
.telegram-btn {
    background-color: #0088cc;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.telegram-btn:hover {
    background-color: #0077b5;
    transform: scale(1.02);
}

.facebook-btn {
    background-color: #1877F2;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.facebook-btn:hover {
    background-color: #166fe5;
    transform: scale(1.02);
}

.youtube-btn {
    background-color: #FF0000;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.youtube-btn:hover {
    background-color: #cc0000;
    transform: scale(1.02);
}

/* Instructions Styling */
.instructions-container {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.instructions-container h2 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instruction-list {
    list-style: none;
    padding: 0;
}

.instruction-list li {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
    padding-left: 40px;
    position: relative;
}

.instruction-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--primary-bg);
}

.instruction-note {
    font-size: 16px;
    color: #718096;
    margin-top: 10px;
    display: block;
}

@media (max-width: 768px) {
    .instructions-container {
        padding: 25px;
    }

    .instruction-list li {
        font-size: 16px;
    }

    .steps-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* --- COMPACT CREATIVE DASHBOARD --- */
.thanks-hero {
    background: linear-gradient(-45deg, #14478F, #0D3266, #1A59B0, #14478F) !important;
    background-size: 400% 400% !important;
    animation: gradient-bg 15s ease infinite !important;
    min-height: auto !important;
    padding: 50px 0 30px !important;
}

.thanks-hero h1 {
    font-size: 38px !important;
    margin-bottom: 12px !important;
    color: #F7B500 !important;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(247, 181, 0, 0.4);
    animation: hero-glow 3s ease-in-out infinite alternate;
}

.thanks-promo-highlight {
    background: #FFFFFF;
    border: 1px solid rgba(20, 71, 143, 0.1);
    padding: 25px 40px;
    border-radius: 30px;
    display: inline-block;
    margin: 30px auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float-thanks 4s ease-in-out infinite;
    overflow: hidden;
}

.thanks-promo-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(45deg, transparent, rgba(20, 71, 143, 0.2), transparent, rgba(20, 71, 143, 0.2), transparent);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-border 3s linear infinite;
}

.thanks-promo-highlight p {
    margin: 0 !important;
    font-size: 22px !important;
    color: var(--primary-bg) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.line-1,
.line-2 {
    display: block;
    line-height: 1.4;
    text-align: center;
}

.line-1 {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.ai-magic-icon {
    font-size: 28px;
    color: var(--primary-bg);
    filter: drop-shadow(0 0 5px rgba(20, 71, 143, 0.2));
    animation: pulse-icon 2s infinite;
}

.prompts-count {
    color: #E5A400;
    /* Slightly darker gold for better contrast on white */
    font-weight: 900;
    font-size: 30px;
    text-shadow: 0 0 10px rgba(229, 164, 0, 0.2);
    display: inline-block;
    padding: 0 5px;
}

.free-badge-creative {
    color: #28A745;
    /* Vibrant Green */
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    margin-left: 10px;
    display: inline-block;
    padding: 2px 10px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    animation: pop-green 1.5s infinite;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

@keyframes pop-green {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
        text-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.free-badge-creative::after {
    display: none;
    /* Remove old underline */
}

@keyframes float-thanks {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .thanks-promo-highlight {
        padding: 20px;
        width: 90%;
        border-radius: 20px;
    }

    .thanks-promo-highlight::before {
        border-radius: 20px;
    }

    .thanks-promo-highlight p {
        font-size: 16px !important;
        gap: 10px;
    }

    .prompts-count {
        font-size: 22px;
    }
}

@keyframes hero-glow {
    from {
        text-shadow: 0 0 10px rgba(247, 181, 0, 0.3);
    }

    to {
        text-shadow: 0 0 30px rgba(247, 181, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.success-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.15);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.progress-container {
    margin: 25px auto 0 !important;
    max-width: 300px !important;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F7B500, #FFE08A, #F7B500);
    background-size: 200% 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(247, 181, 0, 0.5);
    animation: progress-shimmer 2s linear infinite;
}

@keyframes progress-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Balanced width */
    gap: 25px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    align-items: stretch;
    /* Equal height */
}

.instructions-modern {
    background: white;
    padding: 40px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.instruction-list li {
    font-size: 15px !important;
    margin-bottom: 22px !important;
    /* Adjusted for 4 points */
    padding-left: 50px !important;
    position: relative;
    min-height: 35px;
}

.instruction-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    background: var(--secondary-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

/* --- CREATIVE COMMUNITY CARD --- */
.community-card {
    background: white;
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 40px 80px rgba(20, 71, 143, 0.1);
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: visible;
    /* To allow badge to overflow if needed */
}

.badge-most-important {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #F7B500;
    color: var(--text-dark);
    font-weight: 900;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(247, 181, 0, 0.3);
}

.community-card h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.community-card .subtext {
    font-size: 16px;
    color: #718096;
    margin-bottom: 35px;
}

.stacked-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.btn-stacked {
    display: grid !important;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 15px;
    padding: 15px 30px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left !important;
    /* Left align text */
}

.btn-stacked i {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-stacked:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

.btn-whatsapp-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    color: white !important;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    text-align: center !important;
    animation: wiggle 3s infinite;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.btn-whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .btn-whatsapp-cta {
        padding: 15px 20px !important;
        font-size: 15px !important;
    }

    .btn-whatsapp-cta i {
        font-size: 20px;
    }
}

.urgency-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #A0AEC0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .community-card {
        padding: 40px 20px;
    }

    .btn-stacked {
        font-size: 14px !important;
    }
}

@media (max-width: 992px) {
    .thanks-hero {
        padding: 30px 0 20px !important;
    }

    .thanks-hero h1 {
        font-size: 28px !important;
        margin-bottom: 5px !important;
    }

    .thanks-hero p {
        font-size: 14px !important;
    }

    .progress-container {
        margin-top: 10px !important;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        margin-top: 10px !important;
        gap: 15px !important;
        display: flex !important;
        flex-direction: column;
    }

    .community-card {
        order: 1;
        margin-bottom: 15px !important;
        padding: 30px 15px !important;
    }

    .community-card h3 {
        font-size: 22px !important;
    }

    .community-card .subtext {
        margin-bottom: 20px !important;
        font-size: 14px !important;
    }

    .stacked-buttons {
        gap: 10px !important;
    }

    .btn-stacked {
        padding: 14px !important;
        font-size: 13px !important;
    }

    .instructions-modern {
        order: 2;
        padding: 25px 15px !important;
    }

    .instruction-list li {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .footer {
        padding: 20px 0 !important;
    }

    .footer p {
        font-size: 12px !important;
    }

    .disclaimer {
        font-size: 10px !important;
        margin-top: 10px !important;
    }

    .disclaimer p {
        margin-bottom: 5px !important;
    }

    .disclaimer p:last-child {
        margin-bottom: 0 !important;
    }

    /* Remove extra space at bottom of thanks page */
    .thanks-page {
        padding-bottom: 10px !important;
    }
}

/* --- RATING & STARS --- */
.rating-gold,
.stars {
    color: var(--accent-color) !important;
    font-weight: 800;
}

.highlight-accent {
    color: var(--accent-color);
}

/* --- GREEN RATING --- */
.rating-green,
.stars-green {
    color: #28A745 !important;
    font-weight: 800;
}

/* --- CALENDAR CTA BUTTON --- */
.btn-calendar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FFFFFF !important;
    background: var(--secondary-bg);
    border: 2px solid var(--secondary-bg);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(13, 50, 102, 0.2);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.btn-calendar-cta:hover {
    background: var(--accent-color);
    color: var(--text-dark) !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 181, 0, 0.35);
}

.btn-calendar-cta i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .btn-calendar-cta {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* --- COUNTRY CODE EDITING --- */
.country-code.editing {
    outline: 2px solid var(--primary-bg) !important;
    background: #FFFFFF !important;
    cursor: text !important;
    min-width: 60px;
    display: inline-block;
    text-align: center;
}

.country-code.editing::after {
    display: none !important;
}