/* ============================================
   BILLIONAIRE UNIVERSITY — Light Theme
   Font: Arial
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; font-family:inherit; color:inherit; }
ul, ol { list-style:none; }

/* --- Variables --- */
:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-dark: #0d1117;
    --bg-dark-alt: #080c12;
    --bg-card: #ffffff;
    --green: #0eb078;
    --green-dark: #0a9060;
    --green-light: #16C784;
    --red: #ff4d6a;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --border: rgba(0,0,0,0.08);
    --gold: #d4a853;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --teal: #0d9488;
    --teal-dark: #065f5b;
    --navy: #0c1929;
    --header-from: #014460;
    --header-to: #0b2338;
}

/* ===== NAV BAR ===== */
.nav-bar {
    position: fixeed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    transition: all var(--transition);
    background-image: linear-gradient(90deg, var(--header-from), var(--header-to));
    border-bottom: 1px solid rgba(1,68,96,0.3);
}
.nav-bar.scrolled {
    background-image: linear-gradient(90deg, var(--header-from), var(--header-to));
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(1,68,96,0.4);
}
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: var(--green);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}
.logo-wordmark {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}
.logo-accent { color: var(--green); }

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}
.nav-link:hover { color: #fff; }

.nav-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 100px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-cta-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(14,176,120,0.25);
}

.nav-mobile-cta { display: none; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.section-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(1,68,96,0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(13,148,136,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.hero-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #0b2338;
}
.hero-subline {
    display: block;
    color: #42b77d;
    font-size: clamp(22px, 4vw, 40px);
    font-style: italic;
    font-weight: 500 !important;
        color: #42b77d;
    text-transform: uppercase;
    justify-content: center;
    padding-top: 4px;
    font-family: monospace;
    font-style: italic;
    font-weight: 400;
    line-height: 68px;
    
}
.hero-paragraph {
    font-size: 16px;
    color: #000000;
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.7;
    font-family: Arial, Helvetica, sans-serif;
}
.hero-paragraph strong { color: #1a1a1a; }
.hero-paragraph-sub {
    font-size: 15px;
    margin-bottom: 32px;
    color: #777;
}
.hero-paragraph-sub strong { color: #333; }

/* Hero Video */
.hero-video-wrapper {
    margin: 0 auto 36px;
    max-width: 900px;
}
.hero-video-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    aspect-ratio: 16/9;
    background: #000;
}
.hero-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hero-video-container:hover .hero-video-thumbnail {
    transform: scale(1.02);
}
.hero-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.hero-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0; left: 0;
}

/* Hero Custom YouTube Player */
.hero-yt-player-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 4;
}
.hero-yt-player-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hero-overlay.is-playing .custom-play-btn { opacity: 0; }
.hero-overlay:active .custom-play-btn,
.hero-overlay.show-btn .custom-play-btn { opacity: 1 !important; }
.hero-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 6;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 20px 14px 10px;
    border-radius: 0 0 var(--radius) var(--radius);
}
.hero-controls .custom-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 8px;
}
.hero-controls .custom-progress-fill {
    height: 100%;
    background: var(--green);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s linear;
}
.hero-controls .custom-controls-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-controls .custom-ctrl-btn {
    background: none; border: none; padding: 4px; cursor: pointer; display: flex; align-items: center; opacity: 0.9;
}
.hero-controls .custom-ctrl-btn svg { width: 18px; height: 18px; }
.hero-controls .custom-ctrl-btn .icon-pause { display: none; }
.hero-controls .custom-ctrl-btn.is-playing .icon-play { display: none; }
.hero-controls .custom-ctrl-btn.is-playing .icon-pause { display: block; }
.hero-controls .custom-mute-btn { margin-left: auto; }
.hero-controls .custom-mute-btn .icon-unmuted { display: none; }
.hero-controls .custom-mute-btn.is-unmuted .icon-muted { display: none; }
.hero-controls .custom-mute-btn.is-unmuted .icon-unmuted { display: block; }
.hero-controls .custom-time {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}
.hero-controls .custom-play-btn {
    width: 64px; height: 64px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.hero-controls .custom-play-btn svg { width: 28px; height: 28px; }

.badge-wrapper.reveal.visible img {
    margin: auto;
    width: 67%;
    margin-bottom: 25px;
    margin-top: 25px !important;
}

/* Badge */
.badge-wrapper { margin-bottom: 32px; }
.badge-outer { display: flex; justify-content: center; }
.badge-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 12px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.badge-avatars { display: flex; }
.avatar-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
    border: 2px solid rgba(1,68,96,0.2);
    flex-shrink: 0;
}
.avatar-img:first-child { margin-left: 0; }
.badge-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.badge-stars { display: flex; gap: 2px; }
.star { color: #014460; font-size: 16px; }
.badge-number { font-size: 16px; font-weight: 900; color: #0b2338; }
.badge-label { font-size: 11px; color: #777; }

/* Hero CTA */
.hero-cta-wrapper { margin-bottom: 20px; }
.cta-button-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}
.cta-button-main:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14,176,120,0.3);
}
.cta-button-main svg { width: 20px; height: 20px; }

/* Telegram CTA Button */
.cta-button-telegram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0088cc, #006daa);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,136,204,0.3);
}
.cta-button-telegram:hover {
    background: linear-gradient(135deg, #006daa, #005590);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,136,204,0.45);
}
.cta-button-telegram svg { width: 24px; height: 24px; flex-shrink: 0; }
.cta-button-telegram-secondary {
    padding: 14px 36px;
    font-size: 14px;
}
.nav-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
}
.nav-telegram-btn:hover {
    background: #006daa;
    box-shadow: 0 6px 20px rgba(0,136,204,0.25);
}

/* ===== LOGO SLIDER ===== */
.section-media {
    padding: 36px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #f5f5f5;
}
.logo-fade-wrapper { position: relative; }
.logo-fade-wrapper::before,
.logo-fade-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.logo-fade-wrapper::before { left: 0; background: linear-gradient(to right, #f5f5f5, transparent); }
.logo-fade-wrapper::after { right: 0; background: linear-gradient(to left, #f5f5f5, transparent); }
.logo-slider-wrapper { overflow: hidden; }
.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: slideLogos 30s linear infinite;
    width: max-content;
}
.logo-img {
    height: 48px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.logo-img:hover { opacity: 0.8; }
.logo-img-tall { height: 40px; }

@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== STORIES / MEMBER VIDEOS ===== */
.section-testimonial {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    margin: auto;
    max-width: 1100px;
}
.container-stories {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.stories-heading {
    text-align: center;
    margin-bottom: 40px;
}
.heading-medium {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b2338;
}
.heading-underline {
    width: 80px; height: 3px;
    background: #014460;
    margin: 12px auto 0;
    border-radius: 2px;
}
.heading-underline-light { background: rgba(255,255,255,0.4); }

.stories-mask {
    overflow: hidden;
    max-height: 580px;
    transition: max-height 0.6s ease;
}
.stories-mask.expanded { max-height: 4000px; }
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.story-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #f0f0f0;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.08);
    transition: border-color var(--transition), transform var(--transition);
}
.story-card:hover {
    border-color: rgba(1,68,96,0.3);
    transform: translateY(-2px);
}
.story-card img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.story-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.story-card:hover .story-play-btn {
    background: #014460;
    transform: translate(-50%, -50%) scale(1.1);
}
.story-play-btn svg { margin-left: 3px; }

.show-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 28px auto 0;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    color: #014460;
    border: 1px solid rgba(1,68,96,0.3);
    border-radius: 100px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.show-more-btn:hover {
    background: rgba(1,68,96,0.06);
    border-color: #014460;
}
.show-more-btn.expanded svg { transform: rotate(180deg); }

/* ===== MID CTA — "JOIN MY FREE TRADING GROUP" ===== */
.section-midcta {
    padding: 0;
    position: relative;
    overflow: hidden;
}
.midcta-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: stretch;
    min-height: 460px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: url('../assets/bu-10.jpeg') center/cover no-repeat;
}
.midcta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, #0a2a3a 0%, #0d3040 30%, rgba(13,48,64,0.85) 55%, rgba(13,48,64,0.4) 100%);
    pointer-events: none;
    z-index: 0;
}
.midcta-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}


/* Main Container */
.midcta-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: linear-gradient(90deg, #0b2a3c 0%, #0b2a3c 55%, rgba(11,42,60,0.6) 75%, transparent 100%) !important;
    border-radius: 20px !important;
    padding: 60px 50px !important;
    position: relative !important;
    overflow: hidden !important;
    color: #fff !important;
}

/* Left Content */
.midcta-content {
    max-width: 600px !important;
    z-index: 2 !important;
}

/* Heading */
.midcta-heading {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

.midcta-heading-accent {
    display: block !important;
    color: #00d084 !important;
    font-style: normal !important;
}

/* Paragraphs */
.midcta-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    color: #e6e6e6 !important;
}

/* Button */
.midcta-cta-btn {
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 14px 28px !important;
    background: #2ecc71 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.midcta-cta-btn:hover {
    background: #27ae60 !important;
    transform: translateY(-2px) !important;
}

/* Phone Section */
.midcta-phone {
    max-width: 320px !important;
    position: relative !important;
    z-index: 2 !important;
}

.midcta-phone img:not(.phone-frame-overlay) {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transform: rotate(8deg) !important;
}

/* Background Image Overlay */
.midcta-container::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 60% !important;
    height: 100% !important;
    background: url('YOUR-BG.jpg') no-repeat center right / cover !important;
    opacity: 0.3 !important;
    z-index: 1 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .midcta-container {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 25px !important;
    }

    .midcta-phone {
        margin-top: 30px !important;
    }

    .midcta-phone img:not(.phone-frame-overlay) {
        transform: rotate(0deg) !important;
        max-width: 250px !important;
        margin: auto !important;
    }
    .phone-mockup-wrapper {
        transform: rotate(0deg) scale(1) !important;
        margin: 0 auto !important;
    }

    .midcta-heading {
        font-size: 30px !important;
    }
}



.midcta-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.15;
    font-style: normal;
}
.midcta-heading-accent {
    color: var(--green);
    font-style: italic;
    -webkit-text-fill-color: var(--green);
}
.heading-medium-white {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}
.midcta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}
.midcta-text:last-of-type {
    margin-bottom: 28px;
}
.midcta-text strong { color: #fff; font-weight: 700; }
.midcta-cta-btn {
    display: inline-block;
    align-self: center;
    padding: 16px 40px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(14,176,120,0.3);
    font-style: italic;
}
.midcta-cta-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14,176,120,0.45);
}
.cta-button-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}
.cta-button-secondary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14,176,120,0.25);
}

.midcta-phone {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 40px 0 0;
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 460px;
    transform: rotate(9deg) scale(1.1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.phone-frame-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    z-index: 2 !important;
    pointer-events: none !important;
    border: none !important;
    border-radius: 0 !important;
    rotate: 0deg !important;
    transform: none !important;
    filter: none !important;
    max-height: none !important;
}

.phone-video {
    position: absolute;
    /* top: 4.5%; */
    left: 7%;
    width: 86%;
    height: 100%;
    border: 7px solid rgb(27, 27, 27);
    object-fit: cover;
    border-radius: 15px;
    z-index: 5;
}

.midcta-phone img {
    max-height: 460px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    object-fit: contain;
}

/* ===== MEMBER RESULTS GALLERY ===== */
.section-results {
    padding: 80px 0;
    background-image: linear-gradient(118deg, #004561, #0f172a);
    color: #ffffff;
}
.customh2{
    color: #000;
}
h2.heading-medium {
    color: white;
    font-size: 56px;
    font-weight: 600 !important;
}
.results-container { max-width: 100%; }
.results-heading {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}
.results-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}
.scroll-row { overflow: hidden; }
.scroll-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
}
.scroll-track-reverse { animation: scrollRight 40s linear infinite; }
.scroll-track img {
    width: 220px; height: 280px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.08);
    transition: border-color var(--transition);
}
.scroll-track img:hover {
    border-color: rgba(1,68,96,0.3);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== VS COMPARISON ===== */
.section-vs {
    padding: 80px 0;
    background: #ffffff;
}
.vs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.vs-section-heading {
    text-align: center;
    margin-bottom: 48px;
}
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 40%, #2d1525 70%, #3a1020 100%);
}
.vs-col {
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.vs-col-yes {
    background: transparent;
    border: none;
    box-shadow: none;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.vs-col-yes::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,180,120,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.vs-col-no {
    background: transparent;
    border: none;
    box-shadow: none;
}
.vs-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vs-heading-yes { color: #ffffff; }
.vs-heading-no { color: #ffffff; }
.vs-accent-green { color: #0eb078; }
.vs-accent-red { color: #ff4d6a; font-style: italic; }
.vs-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.vs-item svg { flex-shrink: 0; margin-top: 2px; }
.vs-item p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== COURSE ===== */
.section-course {
    padding: 80px 0;
}
.course-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.course-main-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.08);
}
.eapps-instagram-feed-title {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 60px;
    padding: 24px 10px;
    text-align: center;
    text-transform: uppercase;
}
.heading-course {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #0b2338;
}
.lifestyle-heading h2 {
    color: black;
}
.text-accent { color: #014460; }
.course-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}
.course-module {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color var(--transition);
}
.course-module:hover { border-color: rgba(1,68,96,0.3); }
.course-module-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    transition: background var(--transition);
    color: #0b2338;
}
.course-module-header:hover { background: rgba(1,68,96,0.04); }
.module-icons { flex-shrink: 0; color: #014460; }
.module-icons .icon-minus { display: none; }
.course-module.open .module-icons .icon-plus { display: none; }
.course-module.open .module-icons .icon-minus { display: block; }
.module-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
.module-part {
    color: #014460;
    font-size: 12px;
    letter-spacing: 2px;
}
.course-module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.course-module.open .course-module-body { max-height: 200px; }
.course-module-body p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===== WHY FREE ===== */
.section-whyfree {
    padding: 80px 0;
    background: #ffffff;
}
.whyfree-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.whyfree-box {
    text-align: center;
    background: linear-gradient(135deg, var(--header-from) 0%, var(--header-to) 100%);
    border: 1px solid rgba(1,68,96,0.3);
    border-radius: 20px;
    padding: 50px 40px;
    color: #fff;
}
.whyfree-box .heading-medium-white {
    color: #fff;
    margin-bottom: 8px;
}
.whyfree-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 32px;
    text-align: left;
}
.whyfree-text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    flex: 1;
}
.whyfree-text strong { color: #fff; }
.whyfree-img-desktop {
    width: 240px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}
.whyfree-img-mobile { display: none; }
.whyfree-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}
.whyfree-verified svg { flex-shrink: 0; }

/* ===== FOUNDER ===== */
.section-founder {
    padding: 48px 0 0;
    background: #f5f5f5;
    overflow: hidden;
}
.faq-heading.reveal.visible h2 {
    color: #0b2338;
}
@media (max-width: 479px) {
    .midcta-phone {
        padding: 16px 16px 0;
        transform: rotate(351deg) !important;
        display: none;
        
    }
    a.midcta-cta-btn {
        margin-bottom: 50px;
    }
}
img.founder-portrait {
    margin-bottom: 35px;
}
.founder-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.founder-header {
    text-align: center;
    margin-bottom: 32px;
}
.founder-header .heading-medium { color: #0b2338; }
.founder-subtitle {
    display: block;
    font-size: clamp(13px, 2vw, 16px);
    color: #777;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 4px;
}
.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.founder-facts { }
.founder-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.founder-point:last-child { margin-bottom: 0; }
.founder-point svg { flex-shrink: 0; margin-top: 2px; fill: #014460; }
.founder-point p { font-size: 15px; color: #555; line-height: 1.6; }
.founder-point p strong { color: #1a1a1a; }
.founder-portrait {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    display: block;
}

/* Founder Gallery */
.founder-gallery {
    margin-top: 0;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--header-from) 0%, var(--header-to) 100%);
    overflow: hidden;
}
.founder-gallery .heading-medium-white { color: #fff; }
.founder-gallery-heading {
    text-align: center;
    margin-bottom: 32px;
}
.gallery-row {
    overflow: hidden;
    margin-bottom: 12px;
}
.gallery-track {
    display: flex;
    gap: 12px;
    width: max-content;
}
.gallery-track-left { animation: scrollLeft 35s linear infinite; }
.gallery-track-right { animation: scrollRight 35s linear infinite; }
.gallery-track img {
    width: 200px; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}
.gallery-cta-wrapper {
    text-align: center;
    margin-top: 32px;
}
.gallery-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}
.gallery-cta-btn:hover {
    background: #fff;
    color: #014460;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

/* ===== FAQ ===== */
.section-faq {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-heading {
    text-align: center;
    margin-bottom: 40px;
}
.faq-wrapper {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 10px 30px;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    text-align: left;
    transition: color var(--transition);
    color: #0b2338;
}
.faq-question:hover { color: #014460; }
.faq-icons { flex-shrink: 0; color: #014460; }
.faq-icons .icon-minus { display: none; }
.faq-item.open .faq-icons .icon-plus { display: none; }
.faq-item.open .faq-icons .icon-minus { display: block; }
.faq-question h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 0 20px 44px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.faq-answer strong { color: #1a1a1a; }

/* ===== FOOTER ===== */
.footer {
    background: #0b2338;
    color: #fff;
    border-top: 1px solid rgba(1,68,96,0.3);
}
.footer-top {
    text-align: center;
    padding: 80px 24px 60px;
}
.footer-cta-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.cta-button-footer { margin: 0 auto; }
.footer-center {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-handle {
    font-size: 18px;
    font-weight: 800;
    color: #4fc3f7;
    margin-top: 4px;
}
.footer-links-wrap { display: flex; gap: 60px; }
.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a, .footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: #4fc3f7; }
.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Large desktops (1440px+) */
@media (min-width: 1440px) {
    .hero-container { max-width: 1100px; }
    .container-stories { max-width: 1300px; }
    .midcta-container { max-width: 1300px; }
    .vs-container { max-width: 1100px; }
    .course-container { max-width: 1200px; gap: 80px; }
    .whyfree-wrapper { max-width: 1000px; }
    .founder-container { max-width: 1100px; }
    .faq-container { max-width: 900px; }
    .scroll-track img { width: 260px; height: 330px; }
    .gallery-track img { width: 240px; height: 240px; }
}

/* Tablets / small desktops */
@media (max-width: 991px) {
    .nav-bar { padding: 10px 16px; }
    .nav-bar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
    .nav-logo img { width: 55px !important; }
    .nav-links { display: none !important; }
    .nav-hamburger { display: none !important; }
    .nav-cta-wrap { display: block; }
    .nav-cta-btn { padding: 8px 18px; font-size: 12px; }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .section-hero { padding: 80px 0 40px; }

    .midcta-container { grid-template-columns: 1fr; gap: 0; margin: 40px 20px; min-height: auto; }
    .midcta-container::before {
        background: linear-gradient(to bottom, #0a2a3a 0%, #0d3040 50%, rgba(13,48,64,0.85) 100%);
    }
    .midcta-content { padding: 40px 30px; }
    .midcta-phone { justify-content: center; padding: 20px 20px 0; }
    .midcta-phone img { max-height: 400px; }
    .phone-mockup-wrapper { width: 260px; height: 380px; transform: rotate(0deg) scale(1); margin: 0 auto; }

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

    .course-container { grid-template-columns: 1fr; gap: 40px; }
    .course-image-side { max-width: 500px; margin: 0 auto; }

    .founder-content { grid-template-columns: 1fr; gap: 24px; }
    .founder-portrait { max-height: 300px; max-width: 400px; margin: 0 auto; }

    .whyfree-content { flex-direction: column; }
    .whyfree-img-desktop { display: none; }
    .whyfree-img-mobile {
        display: block;
        width: 100%; max-width: 300px;
        margin: 24px auto 0;
        border-radius: var(--radius);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .footer-center { flex-direction: column; gap: 32px; }
}

/* Tablets portrait */
@media (max-width: 767px) {
    .section-hero { padding: 60px 0 24px; }
    .hero-container { padding: 0 20px; }
    .hero-heading { font-size: clamp(26px, 7vw, 38px); margin-bottom: 8px; }
    .hero-subline { font-size: clamp(18px, 5vw, 28px); }
    .hero-paragraph { font-size: 15px; margin-bottom: 14px; }
    .hero-video-wrapper { margin-bottom: 20px; }
    .badge-wrapper { margin-bottom: 16px; }
    .hero-cta-wrapper { margin-bottom: 12px; }

    .badge-inner {
        flex-direction: row;
        border-radius: 100px;
        padding: 14px 28px;
        gap: 16px;
        width: 100%;
        max-width: 420px;
        justify-content: center;
    }
    .badge-avatars:last-child { display: none; }

    .section-testimonial { padding: 60px 0; }
    .container-stories { padding: 0 16px; }
    .stories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stories-mask { max-height: 400px; }
    .story-play-btn { width: 44px; height: 44px; }
    .story-play-btn svg { width: 16px; height: 16px; }

    .section-results { padding: 60px 0; }
    .scroll-track img { width: 180px; height: 230px; }

    .section-vs { padding: 60px 0; }
    .vs-col { padding: 24px; }
    .vs-heading { font-size: 12px; }
    .vs-item p { font-size: 14px; }

    .gallery-track img { width: 160px; height: 160px; }

    .footer-links-wrap { flex-direction: column; gap: 24px; }
}

/* Mobile */
@media (max-width: 479px) {
    .nav-bar { padding: 12px 16px; }
    .logo-wordmark { display: none; }

    .section-hero { padding: 50px 0 16px; }
    .hero-container { padding: 0 16px; }
    .hero-heading { font-size: 26px; margin-bottom: 6px; }
    .hero-subline { font-size: 20px; line-height: 1.3; }
    .hero-paragraph { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
    .hero-video-wrapper { margin: 0 auto 16px; }
    .hero-video-container { border-radius: var(--radius-sm); }
    .badge-wrapper { margin-bottom: 12px; }
    .badge-wrapper.reveal.visible img { width: 55%; margin-bottom: 10px; margin-top: 10px !important; }
    .hero-cta-wrapper { margin-bottom: 10px; }

    .badge-inner { padding: 12px 20px; gap: 12px; max-width: 360px; }
    .avatar-img { width: 30px; height: 30px; }
    .badge-number { font-size: 14px; }

    .cta-button-main { padding: 12px 24px; font-size: 13px; gap: 8px; }
    .cta-button-main svg { width: 16px; height: 16px; }
    .cta-button-telegram { padding: 12px 24px; font-size: 12px; gap: 8px; }
    .cta-button-telegram svg { width: 20px; height: 20px; }

    .section-media { padding: 24px 0; }
    .logo-fade-wrapper::before,
    .logo-fade-wrapper::after { width: 60px; }

    .section-testimonial { padding: 48px 0; }
    .container-stories { padding: 0 12px; }
    .stories-heading { margin-bottom: 24px; }
    .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stories-mask { max-height: 320px; }
    .story-play-btn { width: 36px; height: 36px; }
    .story-play-btn svg { width: 14px; height: 14px; }
    .show-more-btn { padding: 10px 24px; font-size: 12px; margin-top: 20px; }

    .midcta-container { margin: 20px 12px; border-radius: 14px; }
    .midcta-content { padding: 30px 20px; }
    .midcta-heading { font-size: 22px; }
    .midcta-text { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
    .midcta-phone { padding: 16px 16px 0; }
    .midcta-phone img { max-height: 340px; }
    .phone-mockup-wrapper { width: 220px; height: 320px; }
    .cta-button-secondary { padding: 12px 28px; font-size: 13px; }

    .section-results { padding: 48px 0; }
    .scroll-track img { width: 140px; height: 180px; }
    .scroll-track { gap: 10px; }

    .section-vs { padding: 48px 0; }
    .vs-container { padding: 0 12px; }
    .vs-col { padding: 20px 16px; }
    .vs-heading { font-size: 11px; margin-bottom: 20px; padding-bottom: 12px; }
    .vs-item { gap: 10px; margin-bottom: 16px; }
    .vs-item svg { width: 20px; height: 20px; }
    .vs-item p { font-size: 13px; }

    .section-course { padding: 48px 0; }
    .course-container { padding: 0 16px; gap: 28px; }
    .heading-course { font-size: 22px; }
    .course-intro { font-size: 14px; margin-bottom: 24px; }
    .course-module-header { padding: 16px; gap: 12px; }
    .module-title { font-size: 12px; }
    .module-part { font-size: 11px; }
    .module-icons svg { width: 22px; height: 22px; }

    .section-whyfree { padding: 48px 0; }
    .whyfree-wrapper { padding: 0 16px; }
    .whyfree-box { padding: 30px 20px; }
    .whyfree-text { font-size: 14px; line-height: 1.7; }
    .whyfree-img-mobile { max-width: 240px; }
    .whyfree-verified { font-size: 12px; margin-top: 24px; }

    .section-founder { padding: 32px 0 0; }
    .founder-container { padding: 0 16px; }
    .founder-header { margin-bottom: 20px; }
    .founder-point { gap: 10px; margin-bottom: 14px; }
    .founder-point svg { width: 20px; height: 20px; }
    .founder-point p { font-size: 14px; }
    .founder-portrait { max-height: 260px; max-width: 100%; }
    .founder-gallery { margin-top: 32px; padding: 40px 0; }
    .gallery-track img { width: 130px; height: 130px; }
    .gallery-track { gap: 8px; }
    .gallery-cta-btn { padding: 12px 28px; font-size: 12px; }

    .section-faq { padding: 48px 0; }
    .faq-container { padding: 0 16px; }
    .faq-wrapper { padding: 5px 16px; }
    .faq-question { padding: 16px 0; gap: 12px; }
    .faq-question h4 { font-size: 12px; }
    .faq-icons svg { width: 22px; height: 22px; }
    .faq-answer p { padding: 0 0 16px 34px; font-size: 13px; }

    .footer-top { padding: 48px 16px 40px; }
    .footer-cta-heading { font-size: 22px; margin-bottom: 20px; }
    .footer-center { padding: 28px 16px; }
    .footer-handle { font-size: 16px; }
    .footer-links a, .footer-legal a { font-size: 13px; }
    .footer-bottom p { font-size: 12px; }
    .eui-widget-title.es-widget-title.eapps-instagram-feed-title {
    font-size: 25px !important;
}
.results-heading.reveal.visible h2 {
    font-size: 30px;
}
.founder-header.reveal.visible h2 {
    font-size: 30px;
}
.faq-heading.reveal.visible h2 {
    font-size: 30px;
}
}

/* Small mobile (360px and below) */
@media (max-width: 360px) {
    .nav-logo img { width: 45px !important; }
    .section-hero { padding: 44px 0 12px; }
    .hero-heading { font-size: 22px; }
    .hero-subline { font-size: 16px; line-height: 1.2; }
    .hero-paragraph { font-size: 12px; margin-bottom: 8px; }
    .hero-video-wrapper { margin-bottom: 12px; }
    .badge-wrapper { margin-bottom: 8px; }
    .badge-wrapper.reveal.visible img { width: 50%; margin-bottom: 8px; margin-top: 8px !important; }
    .cta-button-main { padding: 10px 18px; font-size: 11px; }
    .cta-button-telegram { padding: 10px 20px; font-size: 11px; gap: 6px; }
    .cta-button-telegram svg { width: 16px; height: 16px; }
    .avatar-img { width: 26px; height: 26px; }
    .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .stories-mask { max-height: 280px; }
    .scroll-track img { width: 120px; height: 160px; }
    .gallery-track img { width: 110px; height: 110px; }
    .vs-col { padding: 16px 14px; }
    .vs-item p { font-size: 12px; }
    .footer-cta-heading { font-size: 20px; }
}

/* ===== MOBILE VIDEO SECTION (Mobile Only) ===== */
.section-mobile-video {
    display: none;
}

@media (max-width: 767px) {
    .section-mobile-video {
        display: block;
        padding: 32px 16px;
        background: #0d1117;
    }
    .mobile-video-container {
        max-width: 350px;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
    }
    .mobile-video-player {
        position: relative;
        width: 100%;
        padding-bottom: 177.78%;
        border-radius: 16px;
        overflow: hidden;
        background: #000;
    }
    .mobile-video-player iframe {
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        height: calc(100% + 120px);
        border: 0;
        pointer-events: none;
    }

    /* Center overlay play/pause button */
    .custom-player-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s;
    }
    .custom-player-overlay.is-playing .custom-play-btn {
        opacity: 0;
    }
    .custom-player-overlay:active .custom-play-btn,
    .custom-player-overlay.show-btn .custom-play-btn {
        opacity: 1 !important;
    }
    .custom-play-btn {
        width: 64px; height: 64px;
        background: rgba(0,0,0,0.5);
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s, transform 0.2s;
        backdrop-filter: blur(4px);
    }
    .custom-play-btn svg {
        width: 28px; height: 28px;
    }
    .custom-play-btn .icon-pause { display: none; }
    .custom-player-overlay.is-playing .custom-play-btn .icon-play { display: none; }
    .custom-player-overlay.is-playing .custom-play-btn .icon-pause { display: block; }

    /* Bottom controls bar */
    .custom-player-controls {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        z-index: 6;
        background: linear-gradient(transparent, rgba(0,0,0,0.85));
        padding: 20px 12px 12px;
    }
    .custom-progress-bar {
        width: 100%;
        height: 4px;
        background: rgba(255,255,255,0.2);
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 8px;
        position: relative;
    }
    .custom-progress-fill {
        height: 100%;
        background: var(--green);
        border-radius: 4px;
        width: 0%;
        transition: width 0.3s linear;
    }
    .custom-controls-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .custom-ctrl-btn {
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        opacity: 0.9;
    }
    .custom-ctrl-btn svg { width: 18px; height: 18px; }
    .custom-ctrl-btn .icon-pause { display: none; }
    .custom-ctrl-btn.is-playing .icon-play { display: none; }
    .custom-ctrl-btn.is-playing .icon-pause { display: block; }

    /* Mute button */
    .custom-mute-btn { margin-left: auto; }
    .custom-mute-btn .icon-unmuted { display: none; }
    .custom-mute-btn.is-unmuted .icon-muted { display: none; }
    .custom-mute-btn.is-unmuted .icon-unmuted { display: block; }

    .custom-time {
        font-size: 11px;
        color: rgba(255,255,255,0.8);
        font-family: Arial, sans-serif;
        letter-spacing: 0.5px;
    }
}

/* ===== SOCIAL MEDIA FOLLOW SECTION ===== */
.section-social {
    background: linear-gradient(160deg, var(--header-from) 0%, var(--header-to) 60%, var(--bg-dark-alt) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--green);
}
.section-social::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(14,176,120,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.section-social::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(1,68,96,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.social-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.social-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.social-accent {
    color: var(--green-light);
    font-style: normal;
    font-weight: 900;
}
.social-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    line-height: 1.6;
}
.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: all var(--transition);
    min-width: 300px;
    justify-content: center;
    position: relative;
}
.social-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Instagram */
.social-btn-ig {
    color: #fff;
    border: 2px solid rgba(225,48,108,0.5);
    background: rgba(225,48,108,0.08);
}
.social-btn-ig svg { stroke: #E1306C; fill: none; }
.social-btn-ig:hover {
    background: linear-gradient(135deg, #E1306C, #833AB4);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225,48,108,0.3);
}
.social-btn-ig:hover svg { stroke: #fff; }

/* TikTok */
.social-btn-tt {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}
.social-btn-tt svg { fill: #fff; stroke: none; }
.social-btn-tt:hover {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,244,238,0.25);
}

/* YouTube */
.social-btn-yt {
    color: #fff;
    border: 2px solid rgba(255,0,0,0.35);
    background: rgba(255,0,0,0.08);
}
.social-btn-yt svg { fill: #FF0000; stroke: none; }
.social-btn-yt:hover {
    background: #FF0000;
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.3);
}
.social-btn-yt:hover svg { fill: #fff; }

/* Divider line between section */
.social-divider {
    width: 60px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    margin: 0 auto 32px;
}
.eapps-instagram-feed-title-container {
    display: none;
}

@media (max-width: 479px) {
    .section-social { padding: 48px 16px; }
    .social-heading { font-size: 24px; }
    .social-subtext { font-size: 13px; margin-bottom: 28px; }
    .social-btn { padding: 13px 24px; font-size: 14px; min-width: 260px; }
    .lifestyle-heading h2 {
    font-size: 23px;
}
.instagram-heading h2 {
    font-size: 22px;
    margin-left: -155px !important;
}
}

/* =================================================================
   LIFESTYLE VIDEOS SECTION (YouTube Shorts grid)
   ================================================================= */
.section-lifestyle {
    padding: 90px 0 110px;
    background:
        radial-gradient(ellipse at top left, rgba(14,176,120,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(1,68,96,0.10) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}
.section-lifestyle::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
    opacity: 0.5;
}
.lifestyle-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.lifestyle-heading {
    text-align: center;
    margin-bottom: 48px;
}
.lifestyle-heading .heading-medium { display: inline-block; }
.lifestyle-subtext {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lifestyle-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #0b2338;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(12,25,41,0.15), 0 2px 6px rgba(12,25,41,0.08);
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s ease;
    isolation: isolate;
}
.lifestyle-card::after {
    /* Subtle highlight border */
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 4;
}
.lifestyle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(12,25,41,0.28), 0 4px 12px rgba(14,176,120,0.15);
}
.lifestyle-card.is-hidden {
    display: none;
}
.lifestyle-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    background: #000;
}
/* Scale the iframe up so the YouTube brand strip/logo at corners is cropped
   off by the parent's overflow:hidden. */
.lifestyle-player,
.lifestyle-video-wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 118%;
    height: 118%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
/* Top-right fade so the mute button always has contrast */
.lifestyle-card .fade-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.85;
}
/* Bottom fade adds polish */
.lifestyle-card .fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
}
/* Loading shimmer until the player is ready */
.lifestyle-card:not(.is-ready) .lifestyle-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        #0b2338 10%,
        #123152 30%,
        #0b2338 50%);
    background-size: 200% 100%;
    animation: lifestyleShimmer 1.6s linear infinite;
    z-index: 1;
}
@keyframes lifestyleShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* Mute/Unmute button */
.lifestyle-mute-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    padding: 0;
}
.lifestyle-mute-btn:hover {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.06);
}
.lifestyle-mute-btn svg {
    width: 20px; height: 20px;
    fill: #fff;
    pointer-events: none;
}
.lifestyle-mute-btn .icon-unmuted { display: none; }
.lifestyle-mute-btn.is-unmuted .icon-muted { display: none; }
.lifestyle-mute-btn.is-unmuted .icon-unmuted { display: inline-block; }
.lifestyle-mute-btn.is-unmuted {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(14,176,120,0.22);
}

/* See More / See Less button */
.lifestyle-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}
.lifestyle-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    border-radius: 100px;
    border: 2px solid #014460;
    background: transparent;
    color: #014460;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.lifestyle-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, #014460 0%, var(--green) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.lifestyle-more-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(1,68,96,0.22);
}
.lifestyle-more-btn:hover::before { opacity: 1; }
.lifestyle-more-btn .more-icon {
    transition: transform 0.3s ease;
}
.lifestyle-more-btn.is-expanded .more-icon { transform: rotate(180deg); }

/* Swipe hint only visible on mobile (shown in the mobile media query) */
.lifestyle-hint { display: none; }

/* --- Responsive breakpoints --- */
@media (max-width: 1100px) {
    .lifestyle-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 780px) {
    .section-lifestyle { padding: 60px 0 72px; }
    .lifestyle-heading { margin-bottom: 24px; }
    .lifestyle-card { border-radius: 14px; }
    .lifestyle-mute-btn { width: 34px; height: 34px; top: 8px; right: 8px; }
    .lifestyle-mute-btn svg { width: 16px; height: 16px; }

    /* MOBILE SLIDER: horizontal scroll-snap, 2 cards visible, swipe for more.
       All cards stay in the DOM so the user can reach every video. */
    .lifestyle-container { padding: 0; position: relative; }
    .lifestyle-heading { padding: 0 20px; }
    .lifestyle-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        padding: 6px 16px 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }
    .lifestyle-grid::-webkit-scrollbar { display: none; }
    .lifestyle-grid > .lifestyle-card {
        flex: 0 0 calc((100% - 12px - 32px) / 2);
        scroll-snap-align: start;
    }
    /* Override desktop "hidden beyond initial 8" — the slider needs every
       card reachable by swipe. */
    .lifestyle-grid > .lifestyle-card.is-hidden { display: block; }
    /* See-More button is irrelevant on the slider */
    .lifestyle-more-wrap { display: none; }
    /* Fade-out hint on the right edge so users see there's more to swipe */
    .lifestyle-container::after {
        content: '';
        position: absolute;
        right: 0;
        top: calc(100% - 55%);
        bottom: 18px;
        width: 28px;
        background: linear-gradient(-90deg, rgba(245,247,250,0.95) 0%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }
    .lifestyle-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        color: var(--text-muted);
        font-size: 12px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .lifestyle-hint svg {
        width: 14px; height: 14px;
        animation: lifestyleSwipeHint 1.6s ease-in-out infinite;
    }
    @keyframes lifestyleSwipeHint {
        0%,100% { transform: translateX(0); opacity: 0.6; }
        50%     { transform: translateX(4px); opacity: 1; }
    }
}
@media (max-width: 479px) {
    .section-lifestyle { padding: 48px 0 60px; }
    .lifestyle-heading { padding: 0 14px; }
    .lifestyle-subtext { font-size: 13.5px; }
    .lifestyle-grid {
        padding: 6px 12px 16px;
        gap: 10px;
        scroll-padding-left: 12px;
    }
    .lifestyle-grid > .lifestyle-card {
        flex: 0 0 calc((100% - 10px - 24px) / 2);
    }
}

/* =================================================================
   INSTAGRAM SECTION (moved just above footer)
   ================================================================= */
.section-instagram {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    border-top: 1px solid var(--border);
}
.instagram-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.instagram-heading {
    text-align: center;
    margin-bottom: 40px;
}
.instagram-subtext {
    max-width: 520px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 780px) {
    .section-instagram { padding: 56px 0 64px; }
    .instagram-heading { margin-bottom: 28px; }
}
@media (max-width: 479px) {
    .section-instagram { padding: 44px 0 56px; }
    .instagram-container { padding: 0 14px; }
    .instagram-subtext { font-size: 13.5px; }
}

/* =================================================================
   WHY FREE — mobile image merged edge-to-edge into the box background
   Negative margins escape the box padding so the image spans full width
   and meets the box's rounded bottom. A top-fade mask blends the image
   smoothly into the dark gradient so it looks merged, not pasted-on.
   ================================================================= */
@media (max-width: 991px) {
    .whyfree-box { overflow: hidden; }
    .whyfree-box .whyfree-img-mobile {
        display: block;
        width: calc(100% + 80px);
        max-width: none;
        margin: 28px -40px -50px;
        border: 0;
        border-radius: 0;
        object-fit: cover;
        -webkit-mask-image: linear-gradient(180deg,
            transparent 0%,
            rgba(0,0,0,0.35) 18%,
            #000 55%,
            #000 100%);
        mask-image: linear-gradient(180deg,
            transparent 0%,
            rgba(0,0,0,0.35) 18%,
            #000 55%,
            #000 100%);
    }
}
@media (max-width: 479px) {
    .whyfree-box .whyfree-img-mobile {
        width: calc(100% + 40px);
        max-width: none;
        margin: 24px -20px -30px;
    }
}

/* =================================================================
   TELEGRAM CTA POPUP (opens 5s after page load)
   ================================================================= */
.cta-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 18, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cta-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.cta-popup {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
        radial-gradient(ellipse at top left, rgba(14,176,120,0.16) 0%, transparent 55%),
        linear-gradient(150deg, #014460 0%, #0b2338 55%, #080c12 100%);
    border: 1px solid rgba(14,176,120,0.25);
    border-radius: 20px;
    padding: 34px 30px 28px;
    color: #fff;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.2,.9,.2,1), opacity 0.35s ease;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.cta-popup-overlay.is-open .cta-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.cta-popup::-webkit-scrollbar { width: 6px; }
.cta-popup::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }

.cta-popup-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    padding: 0;
    z-index: 2;
}
.cta-popup-close:hover {
    background: var(--green);
    border-color: var(--green);
    transform: rotate(90deg);
}
.cta-popup-close svg { pointer-events: none; }

.cta-popup-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 4px 0 22px;
    text-align: center;
}
.cta-popup-stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.92);
}
.cta-popup-stat svg { color: var(--green-light); flex-shrink: 0; }
.cta-popup-stat strong {
    color: var(--green-light);
    font-weight: 800;
    letter-spacing: 0.4px;
}

.cta-popup-official {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
}
.cta-popup-official svg { color: var(--green-light); flex-shrink: 0; }
.cta-popup-official em {
    font-style: normal;
    color: rgba(255,255,255,0.9);
}

.cta-popup-url {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 15px;
    color: var(--green-light);
    text-align: center;
    letter-spacing: 0.4px;
    padding: 6px 12px;
    background: rgba(14,176,120,0.08);
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    word-break: break-all;
}
.cta-popup-hint {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    text-align: center;
    line-height: 1.55;
    margin: 10px 0 22px;
}

.cta-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow:
        0 10px 28px rgba(14,176,120,0.35),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.cta-popup-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.cta-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(14,176,120,0.45),
        0 0 0 1px rgba(255,255,255,0.2) inset;
    filter: brightness(1.06);
}
.cta-popup-btn:hover::before { transform: translateX(100%); }
.cta-popup-btn .arrow { transition: transform 0.25s ease; }
.cta-popup-btn:hover .arrow { transform: translateX(4px); }

.cta-popup-strong {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}
.cta-popup-strong .fire {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.cta-popup-strong strong { color: #fff; }

.cta-popup-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 13px 15px;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    background: rgba(14,176,120,0.05);
    border: 1px solid rgba(14,176,120,0.22);
    border-radius: 10px;
}
.cta-popup-notice svg { color: var(--green-light); flex-shrink: 0; margin-top: 1px; }
.cta-popup-notice strong { color: var(--green-light); }

/* --- Responsive --- */
@media (max-width: 640px) {
    .cta-popup-overlay { padding: 14px; }
    .cta-popup {
        padding: 28px 20px 22px;
        border-radius: 18px;
    }
    .cta-popup-close { width: 34px; height: 34px; top: 10px; right: 10px; }
    .cta-popup-stat { font-size: 14px; }
    .cta-popup-url { font-size: 13.5px; }
    .cta-popup-btn { font-size: 15px; padding: 14px 18px; gap: 10px; }
    .cta-popup-strong { font-size: 12.5px; padding: 10px 12px; }
    .cta-popup-notice { font-size: 12px; padding: 11px 13px; }
}
@media (max-width: 380px) {
    .cta-popup { padding: 24px 16px 20px; }
    .cta-popup-stat { font-size: 13px; gap: 8px; }
    .cta-popup-stat svg { width: 18px; height: 18px; }
    .cta-popup-url { font-size: 12.5px; padding: 5px 8px; }
    .cta-popup-hint { font-size: 11.5px; margin: 8px 0 18px; }
    .cta-popup-btn { font-size: 14px; padding: 13px 16px; }
}

body.cta-popup-open { overflow: hidden; }
