:root {
    --primary-bg: #050505;
    --secondary-bg: #0a0a0a;
    --accent-orange: #ff6b00;
    --accent-gold: #ffac30;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glow-color: rgba(255, 107, 0, 0.6);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

@keyframes bg-pan {
    0% {
        background-position: 0% 50%;
    }

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

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

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    /* Nearly full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
    pointer-events: none;
    z-index: 1;
}

.header-logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

@media(max-width: 768px) {
    .header-logo {
        max-width: 140px;
        margin-bottom: 25px;
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.micro-copy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* --- CTA BUTTON (PREMIUM STANDARD) --- */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Full width by default for mobile */
    max-width: 480px;
    /* Safe max width for desktop */
    background: linear-gradient(180deg, #FF8800 0%, #FF5500 100%);
    /* Rich Orange Gradient */
    color: #ffffff;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    /* Ensure font consistency */
    font-size: 1.1rem;
    padding: 18px 24px;
    border-radius: 12px;
    /* Modern rounded corners */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtle highlight border */
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.35);
    /* Glow shadow */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.5);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

.cta-button.pulse {
    animation: pulse-glow 2s infinite;
}

.large-cta {
    font-size: 1.25rem;
    padding: 22px 32px;
    border-radius: 14px;
}

/* Ensure container centers it */
.center-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* --- VSL SECTION --- */
.vsl-container {
    padding: 60px 0;
    background-color: var(--secondary-bg);
    text-align: center;
}

.pre-vsl-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-main);
}

/* Simple Orange Video Frame */
.video-frame-orange {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
    aspect-ratio: 9 / 16;
    border: 4px solid var(--accent-orange);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
    /* Soft branded glow */
    background: #000;
}

.video-frame-orange iframe,
.video-frame-orange video {
    width: 100%;
    height: 100%;
    display: block;
}

.sv-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
}

.sv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.sv-btn {
    position: absolute;
    border: 0;
    cursor: pointer;
    user-select: none;

    display: grid;
    place-items: center;

    width: 64px;
    height: 64px;
    border-radius: 999px;

    background: #ff7a00;
    box-shadow: 0 10px 28px rgba(255, 122, 0, 0.35);
    color: #0b0b0b;

    font-size: 22px;
    font-weight: 800;
    transition: transform 0.12s ease, filter 0.12s ease;
}

.sv-btn svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-mute svg {
    width: 20px;
    height: 20px;
}

/* Play some/none depending on state */
.sv-play {
    opacity: 1;
    transition: transform 0.12s ease, filter 0.12s ease, opacity 0.18s ease;
}

.sv-wrap.is-playing .sv-play {
    opacity: 0;
    pointer-events: none;
}

.sv-wrap.is-playing.is-hover .sv-play {
    opacity: 1;
    pointer-events: auto;
}

.sv-btn:hover {
    filter: brightness(1.05);
}

.sv-btn:active {
    transform: scale(0.98);
}

.sv-play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sv-play:hover {
    transform: translate(-50%, -50%) scale(1.03);
}

.sv-play:active {
    transform: translate(-50%, -50%) scale(0.98);
}

.sv-mute:hover {
    transform: scale(1.03);
}

.sv-mute:active {
    transform: scale(0.98);
}

.sv-mute {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 18px;
    opacity: 0;
    pointer-events: auto;
}

.sv-mute:hover,
.sv-mute:focus-visible {
    opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
    .sv-mute {
        display: none;
    }
}

.video-wrapper {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}

/* Background Glow Effect - Intensified */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, rgba(100, 50, 0, 0.1) 50%, rgba(0, 0, 0, 0) 80%);
    filter: blur(50px);
    z-index: -1;
    animation: glow-pulse 4s infinite alternate;
}

.vsl-video-frame {
    aspect-ratio: 9 / 16;
    width: min(92vw, 560px);
    margin: 0 auto;
    border-radius: 18px;
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.18);
}

@media (max-width: 640px) {
    .vsl-video-frame {
        width: 92vw;
        max-width: 92vw;
    }
}

.vsl-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.vsl-sound-toggle {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(14, 14, 14, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.vsl-sound-toggle:hover {
    transform: translateY(-1px);
    background: rgba(20, 20, 20, 0.92);
}

.vsl-sound-toggle.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
}

@keyframes glow-pulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}





.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: linear-gradient(45deg, #111, #1a1a1a);
    cursor: pointer;
}

.play-button {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    position: relative;
    margin-bottom: 15px;
    opacity: 0.4;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid white;
}

.vsl-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--text-muted);
}

.check-icon {
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 8px;
}

/* --- CARDS & GRID & SECTIONS --- */
.market-status,
.why-it-works,
.learning-path,
.authority,
.target-audience,
.guarantee,
.final-cta,
.visual-proof,
.market-proof,
.deliverables,
.faq,
.final-transition {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

@media(max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.card.floating {
    animation: float 6s ease-in-out infinite;
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- WHY IT WORKS --- */
.why-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.why-list .bullet {
    min-width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    margin-top: 6px;
    margin-right: 20px;
    box-shadow: 0 0 10px var(--accent-orange);
}

/* --- LEARNING PATH --- */
.learning-box {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 60px 40px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.module .mod-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.module h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.module p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- AUDIENCE & SPLIT LAYOUT --- */
.split-layout {
    display: flex;
    gap: 40px;
}

.split-layout.align-center {
    align-items: center;
}

@media(max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
}

.audience-column {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
}

.for-who {
    background: rgba(0, 255, 100, 0.05);
    border: 1px solid rgba(0, 255, 100, 0.1);
}

.not-for-who {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.audience-column h3 {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.audience-column ul {
    list-style: none;
}

.audience-column li {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* --- GUARANTEE --- */
.guarantee {
    text-align: center;
    background: #0c0c0c;
}

.guarantee-badge {
    margin-bottom: 20px;
}

.guarantee p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* --- FINAL CTA & FOOTER --- */
.final-cta {
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), transparent 70%);
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.8rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    margin: 0 10px;
    color: #666;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent-orange);
}

/* --- PARTICLES CONTAINER --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* --- NEW SECTIONS - VISUAL PROOF & AUTHORITY UPDATE --- */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: -40px auto 50px;
    /* pull closer to title, push content away */
}

/* Video Cards */
.video-card {
    padding: 0;
    /* Remove padding to make card cleaner */
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center caption */
}

.card-video-frame {
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 16px;
    /* Smooth corners */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.3);
    /* Base glow border */
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.1);
    /* Subtle default glow */
    margin-bottom: 12px;
    width: 100%;
    max-width: 300px;
    /* Limit width on desktop */
    transition: all 0.3s ease;
}

.card-video-frame:hover {
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.6);
    transform: translateY(-5px);
}

.video-placeholder.small {
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.play-button.small {
    width: 60px;
    height: 60px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    transition: transform 0.2s;
}

.play-button.small::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    /* Triangle size */
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 5px;
    /* Visual center adjustment */
}

.video-card:hover .play-button.small {
    transform: scale(1.1);
}

.card-caption {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}

/* Authority Updates */
.auth-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-image-wrapper {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
    position: relative;
}

.auth-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--accent-orange), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.auth-real-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.auth-image-wrapper:hover .auth-real-image {
    transform: scale(1.03);
}

.auth-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-bullets-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.auth-bullets {
    list-style: none;
}

.auth-bullets li {
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

/* --- MARKET PROOF SECTION (NEWS) --- */
/* --- MARKET PROOF SECTION (NEWS MOBILE MOCKUP) --- */
/* --- MARKET PROOF SECTION (NEWS MOBILE MOCKUP) --- */
.news-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 30px 0;
    width: 100%;
    overflow: visible;
}

.phone-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Mobile First Adjustments */
.phone-mockup {
    width: 80%;
    /* Safer width */
    max-width: 320px;
    aspect-ratio: 9/15;
    /* Shorter ratio to end near influencer image */
    height: auto;
    background: #000;
    border-radius: 32px;
    border: 5px solid #1a1a1a;
    box-shadow: inset 0 0 0 2px #333, 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 0 auto;
}

/* Enhancements for small screens */
@media (max-width: 480px) {
    .phone-mockup {
        width: 85vw;
        /* Optimize for tiny screens */
        border-width: 4px;
        border-radius: 28px;
    }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 20px;
    background: #1a1a1a;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

/* Screen Image - STRICT FULL VISIBILITY */
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* CRITICAL: Show full vertical content */
    object-position: top center;
    display: block;
}

/* Scroll Bug Fixes & Mobile Standardization */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        touch-action: manipulation;
    }

    /* Centralize ALL CTAs types */
    .cta-button,
    .cta-link,
    .btn-full-mobile,
    .center-cta a {
        margin-left: auto !important;
        margin-right: auto !important;
        display: inline-flex;
        text-align: center;
        justify-content: center;
    }

    .center-cta {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Glowing Rings Animation - Optimized */
.phone-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent-orange);
    box-shadow: 0 0 20px var(--accent-orange);
    opacity: 0;
    will-change: transform, opacity;
    animation: ripple-glow 5s infinite linear;
}

.glow-circle:nth-child(1) {
    width: 320px;
    height: 320px;
    animation-delay: 0s;
}

.glow-circle:nth-child(2) {
    width: 480px;
    height: 480px;
    animation-delay: 1.3s;
}

.glow-circle:nth-child(3) {
    width: 640px;
    height: 640px;
    animation-delay: 2.6s;
    border-width: 1px;
    opacity: 0.5;
}

@keyframes ripple-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
        border-width: 4px;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-width: 0px;
    }
}

/* Cleanup unused classes */
.news-frame,
.news-card-wrapper,
.mosaic-wrapper,
.mosaic-image {
    display: none;
}

.news-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.news-real-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    /* Slightly tighter radius to fit inside frame */
    display: block;
}

.news-lead {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-main);
}

.news-details {
    margin-bottom: 30px;
}

.news-list {
    list-style: none;
    margin-top: 15px;
}

.news-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: block;
}

.news-highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-left: 3px solid var(--accent-orange);
    border-radius: 4px;
    font-style: italic;
    color: white;
    margin-bottom: 20px;
}

.credibility-note {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transition-text {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* --- DELIVERABLES SECTION --- */
.deliverables-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.deliverables-list {
    list-style: none;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.deliverables-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.deliverables-list .icon {
    font-size: 1.8rem;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.deliverables-list .text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.deliverables-list .text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- FAQ SECTION --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- FINAL TRANSITION --- */
.final-transition .big-impact-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- AUTHORITY 2.0 (REFINED) --- */
.auth-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    margin: 5px 0 25px;
    border-radius: 2px;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
}

.quick-proof-list {
    list-style: none;
    margin-bottom: 30px;
}

.quick-proof-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.quick-proof-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.replica-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-orange);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.replica-card h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.auth-stats {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-chip {
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.05);
    /* Glow sutil */
}

.auth-chip i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

.micro-cta {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.checklist-item {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-item i {
    color: var(--accent-orange);
}

/* --- NEW SECTIONS & REFINEMENTS --- */

/* Image Proof Section */
.image-proof {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05), transparent 70%);
}

/* Image Grid - Mobile optimized */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Force 2 columns on mobile */
    gap: 15px;
    /* Tighter gap for mobile */
    margin: 40px 0;
}

/* Desktop override */
@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

.img-card {
    aspect-ratio: 4/5;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Subtle glow on rest state if desired, or just hover */
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    /* Orange glow on hover */
    border-color: rgba(255, 107, 0, 0.3);
}

.img-card:hover img {
    transform: scale(1.05);
}

/* News Mockup Specifics */
.img-card.news-mockup {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.img-card.news-mockup img {
    object-fit: contain !important;
    padding: 0 !important;
    border-radius: 20px;
}

/* Mini Carousel for Image Card */
.img-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

/* Navigation Dots */
.carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

/* Arrows (Optional, but user said 'visible carousel') */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    /* Hidden by default, shown on hover */
    transition: opacity 0.3s;
    z-index: 2;
}

.img-card:hover .carousel-arrow {
    opacity: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.img-placeholder {
    font-size: 2rem;
    opacity: 0.3;
}

/* CTA Utils */
.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cta-link {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.cta-link:hover {
    border-bottom-color: var(--accent-orange);
    letter-spacing: 0.5px;
}

.pulse-small {
    animation: pulse-glow 2.5s infinite;
}

.mt-40 {
    margin-top: 40px;
}

/* Carousel Crop Utilities */
.crop-product {
    object-fit: cover !important;
    object-position: 80% center !important;
    /* Slightly less extreme than 100% to catch more product */
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    /* Gentle zoom to ensure framing */
    transform-origin: 80% center;
}

.crop-influencer {
    object-fit: cover !important;
    object-position: 0% center !important;
    /* Focus on Left (Influencer) */
    width: 100%;
    height: 100%;
}

/* Enhancements for separation */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0;
}

/* --- AUTHORITY 3.0 (PREMIUM REFINED) --- */

/* Scroll Animations */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease-out;
}

.zoom-visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

/* --- AUTHORITY 3.0 (GRID LAYOUT) --- */

.authority {
    padding: 60px 0;
    overflow: hidden;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    /* Mobile Order: Title -> Image -> Metrics -> Bio -> Rest */
}

.grid-area-header {
    order: 1;
    text-align: center;
}

.grid-area-image {
    order: 2;
}

.grid-area-metrics {
    order: 3;
}

.grid-area-bio {
    order: 4;
}

.grid-area-rest {
    order: 5;
}

/* Mobile Image Adjustments */
.grid-area-image .creator-showcase {
    margin: 0 auto;
    /* Center on mobile */
    max-width: 100%;
}

/* Specific text alignments for mobile */
.grid-area-header,
.grid-area-bio,
.grid-area-rest {
    text-align: center;
    /* Center text on mobile */
}

.auth-numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-numbers-grid .auth-num-item {
    text-align: center;
    border-left: none;
    /* Remove side border on mobile */
    border-top: 2px solid rgba(255, 107, 0, 0.3);
    /* Top border instead */
    padding-top: 15px;
    padding-left: 0;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .authority {
        padding: 100px 0;
    }

    .authority-grid {
        grid-template-columns: 45% 1fr;
        /* Image tighter, text wider */
        gap: 60px;
        align-items: start;
        grid-template-areas:
            "image header"
            "image bio"
            "image metrics"
            "image rest";
    }

    .grid-area-image {
        grid-area: image;
        order: unset;
    }

    .grid-area-header {
        grid-area: header;
        order: unset;
        text-align: left;
    }

    .grid-area-bio {
        grid-area: bio;
        order: unset;
        text-align: left;
    }

    .grid-area-metrics {
        grid-area: metrics;
        order: unset;
    }

    .grid-area-rest {
        grid-area: rest;
        order: unset;
        text-align: left;
    }

    .grid-area-image .creator-showcase {
        margin: 0;
    }

    .auth-numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .auth-numbers-grid .auth-num-item {
        text-align: left;
        border-left: 2px solid rgba(255, 107, 0, 0.3);
        border-top: none;
        padding-top: 0;
        padding-left: 15px;
    }
}

/* Shared Components (Styling) */
.auth-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    margin: 5px auto 25px;
    /* Center on mobile */
    border-radius: 2px;
}

@media (min-width: 768px) {
    .auth-separator {
        margin: 5px 0 25px;
    }

    /* Left on desktop */
}

/* Image Showcase */
.creator-showcase {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.creator-img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* Stats on Image (Mobile Enhancements) */
.creator-stats-overlay {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.stat-badge {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.stat-badge i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.stat-number {
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: #ccc;
    display: block;
}

/* Text Blocks */
.auth-bio {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.num-big {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.num-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Core Box & Rest */
.core-message-box {
    background: linear-gradient(145deg, rgba(25, 25, 25, 1), rgba(10, 10, 10, 1));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-left: 4px solid var(--accent-orange);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    /* Always left text inside box */
}

.core-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.core-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checklist-refined {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
    text-align: left;
}

@media (min-width: 768px) {
    .checklist-refined {
        grid-template-columns: 1fr 1fr;
    }
}

.check-item-ref {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
}

.check-item-ref i {
    color: var(--accent-orange);
}

.auth-cta-wrapper {
    margin-top: 10px;
}

.btn-full-mobile {
    width: 100%;
    text-align: center;
    background: #ff7a00;
    color: #fff;
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

@media (min-width: 768px) {
    .btn-full-mobile {
        width: auto;
        display: inline-block;
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* --- FINAL CONVERSION SECTION (SPECIAL OFFER) --- */
.special-offer {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, #000 100%);
    text-align: center;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

/* Container Constraint for Mobile Focus */
@media (max-width: 480px) {
    .special-offer .container {
        max-width: 420px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 1. Alert Box (Strong) */
.offer-alert-box.strong {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid #ff4d4d;
    color: #ff9999;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.1);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-alert-box.strong i {
    font-size: 1.2rem;
    color: #ff4d4d;
    margin-bottom: 4px;
}

.offer-alert-box.strong strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

/* 2. Timer */
.offer-timer-wrapper {
    margin-bottom: 35px;
}

.offer-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.timer-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-box span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: monospace;
}

.timer-box small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    color: #444;
    font-weight: 300;
    margin-top: -10px;
}

.timer-warning {
    font-size: 0.85rem;
    color: #ff4444;
    line-height: 1.4;
    max-width: 300px;
    margin: 0 auto;
}

/* 3. Decision Block */
.decision-block {
    margin-bottom: 35px;
}

.decision-block h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.decision-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 4. Visual Proof Grid (Mobile Scroll / Desktop Grid) */
.final-proof-grid {
    display: flex;
    gap: 12px;
    margin: 30px auto 40px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 800px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.final-proof-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.final-proof-grid img {
    width: 70%;
    /* Shows part of next image on mobile to encourage scroll */
    max-width: 200px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    scroll-snap-align: center;
}

/* 5. Checklist */
.offer-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    margin: 0 auto 30px;
    text-align: left;
    max-width: 100%;
}

.offer-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.4;
}

.offer-checklist li:last-child {
    margin-bottom: 0;
}

.offer-checklist li i {
    color: var(--accent-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.offer-checklist li strong {
    color: #fff;
}

/* 6. CTA & Security */
.final-cta-wrapper {
    margin: 30px 0 40px;
}

.final-cta-wrapper .cta-button {
    width: 100%;
    max-width: 400px;
    /* Comfort width */
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 7. Guarantee (Compact Card) */
.final-guarantee-block {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 20px;
    max-width: 420px;
    margin: 0 auto 40px;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.guarantee-seal-img {
    width: 100px;
}

.final-guarantee-block h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.final-guarantee-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 8. Closing */
.final-closing p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-link-simple {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

/* DESKTOP ADJUSTMENTS */
@media (min-width: 768px) {
    .special-offer {
        padding: 100px 0;
    }

    .offer-alert-box.strong {
        flex-direction: row;
        align-items: center;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .decision-block h2 {
        font-size: 2rem;
    }

    .final-proof-grid {
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 25px;
    }

    .final-proof-grid img {
        width: 160px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .offer-summary-card {
        padding: 30px;
        max-width: 600px;
    }

    .guarantee-content {
        flex-direction: row;
        text-align: left;
        padding: 10px;
    }

    .final-cta-wrapper .cta-button {
        width: auto;
        padding: 0 50px;
    }

}

/* Collage Image Override (Global) */
.final-proof-grid.single-collage {
    overflow-x: hidden !important;
    display: block !important;
    padding-bottom: 0 !important;
    margin: 30px auto !important;
}

.final-proof-grid.single-collage img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* VSL Strategic CTA (Refined) */
.vsl-cta-block {
    margin-top: 30px;
    padding: 0 10px;
    text-align: center;
    background: transparent;
    border: none;
}

.aggressive-headline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.vsl-cta-block .cta-button {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.security-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.security-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-row i {
    color: var(--accent-orange);
}

/* Shock Card Specifics */
.shock-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.shock-card-inner {
    border-radius: 12px;
    background: #000;
    /* Dark background for letterbox */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Force ratio to match others */
    aspect-ratio: 4/5;
    width: 100%;
}

.shock-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Fit whole image */
}

.shock-caption {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
    padding: 2px 0;
    font-weight: 500;
}

/* --- MOBILE STICKY CTA --- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    padding: 15px 20px 25px;
    /* Extra bottom padding for safe area */
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }
}

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

.sticky-btn {
    width: 100%;
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    cursor: pointer;
    margin-bottom: 10px;
    transition: transform 0.2s;
    animation: pulse-glow 2s infinite;
}

.sticky-btn:active {
    transform: scale(0.98);
}

.sticky-micro-copy {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.9;
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Padding compensation for the section */
.special-offer.has-sticky-padding {
    padding-bottom: 180px !important;
}

/* --- VIDEO CAROUSEL (Shorts Style) --- */
.video-carousel-wrapper {
    position: relative;
    width: 100%;
    /* max-width removed to fit grid */
    /* margin removed to fit grid */
    border-radius: 16px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.video-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.video-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.video-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    position: relative;
    background: #000;
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.indicator {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-orange);
    transform: scale(1.3);
}


/* Subtle Video Card CTA */
.cta-link-video {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.cta-link-video:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Video Placeholder Styles */
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: linear-gradient(135deg, #111, #1a1a1a);
    cursor: default;
}

.video-placeholder .play-button.small {
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    /* Muted button */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder .play-button.small::after {
    border-left-color: rgba(255, 255, 255, 0.5);
}

/* --- MASTER MOBILE OPTIMIZATION & REVIEWS --- */
@media (max-width: 768px) {

    /* 1. Global Spacing & Typography Compactness */
    .hero {
        min-height: auto;
        padding: 50px 20px 40px;
        /* Reduced top/bottom padding */
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    /* Compact Section Padding */
    .vsl-container,
    .market-status,
    .why-it-works,
    .learning-path,
    .authority,
    .target-audience,
    .guarantee,
    .final-cta,
    .visual-proof,
    .market-proof,
    .deliverables,
    .faq,
    .final-transition,
    .special-offer {
        padding: 40px 0 !important;
        /* Force tight spacing */
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        line-height: 1.2;
        padding: 0 10px;
    }

    .section-subtitle {
        margin-top: -20px;
        margin-bottom: 30px;
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* 2. Centralization & Alignment */
    .split-layout {
        flex-direction: column;
        text-align: center !important;
        gap: 30px;
    }

    .audience-column,
    .news-text,
    .auth-text {
        text-align: center !important;
        padding: 0 !important;
        /* Remove extra padding in columns */
        align-items: center !important;
    }

    .news-list,
    .auth-bullets {
        display: inline-block;
        /* Allows list to be centered as a block */
        text-align: left;
        /* Keep list item text readable */
        margin: 0 auto;
    }

    p,
    .card p,
    .module p {
        text-align: center;
        /* Default text center on mobile for flow */
    }

    /* Exception: Lists should be left-aligned but centered block */
    ul {
        text-align: left;
    }

    /* 3. VSL & Video Frames */
    .video-wrapper,
    .video-frame-orange {
        width: 100% !important;
        max-width: 100% !important;
        /* Full width on mobile */
        margin-bottom: 30px;
    }

    .video-frame-orange {
        border-width: 3px;
        /* Slightly thinner border on small screens */
    }

    /* 4. CTA Fixes */
    .cta-button {
        width: 100%;
        max-width: 100%;
        /* Full stretch */
        font-size: 1rem;
        padding: 16px 10px;
        /* Comfortable touch area */
        white-space: normal;
        /* Allow text wrap if needed */
        line-height: 1.3;
    }

    .center-cta {
        margin-top: 30px;
        /* Reduced from 40px */
        width: 100%;
    }

    /* 5. Specific Sections Compactness */
    .cards-grid,
    .modules-grid,
    .faq-grid {
        gap: 20px;
        /* Tighter grid */
        grid-template-columns: 1fr;
        /* Force single column */
    }

    .card,
    .learning-box,
    .faq-item {
        padding: 25px 20px;
    }

    .faq-item h3 {
        text-align: left;
        /* Keep FAQ headers readable */
    }

    .faq-item p {
        text-align: left;
    }

    /* Authority Image */
    .auth-image-wrapper {
        margin: 0 auto;
    }

    /* Targets */
    .audience-column ul li {
        text-align: left;
    }

    /* Deliverables */
    .deliverables-list li {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    /* Sticky Bar Visibility */
    .sticky-cta-bar {
        display: block !important;
        /* Ensure it appears */
        padding-bottom: 30px;
        /* iPhone Safe Area */
    }

    /* Ensure no horizontal overflow */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }
}/* Pricing Display */
.price-display-block {
    text-align: center;
    margin: 30px 0 20px;
    animation: fadeIn 1s ease-out;
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-old .strike {
    text-decoration: line-through;
    color: #888;
}

.price-new {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.highlight-price {
    font-size: 3.5rem;
    color: var(--accent-orange);
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.25);
    font-weight: 900;
    letter-spacing: -1px;
    display: block;
    margin-top: 5px;
}

.highlight-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    vertical-align: middle;
    margin-right: 5px;
    letter-spacing: 0;
}

@media(max-width: 768px) {
    .highlight-price {
        font-size: 2.8rem;
    }
}/* Strategic Price Display */
.price-container-strategic {
    text-align: center;
    margin: 20px 0 25px;
    position: relative;
    display: inline-block;
}

.price-tag-badge {
    background: #ff0000;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

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

.price-old-strategic {
    color: #888;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: -5px;
    display: block;
}

.price-main-strategic {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    /* Gradient Text */
    background: linear-gradient(180deg, #ffffff 20%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 136, 0, 0.3));
    letter-spacing: -2px;
}

.price-currency {
    font-size: 2.5rem;
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    top: 15px;
    color: var(--accent-orange);
    -webkit-text-fill-color: var(--accent-orange);
}

.price-installments-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}

.price-installments-text strong {
    color: #fff;
}