:root {
    /* Premium Palette */
    --primary: #FF7B00;
    /* Vibrant Orange */
    --primary-gradient: linear-gradient(135deg, #FF7B00 0%, #FF5500 100%);
    --secondary: #000000;
    --accent: #00E676;
    /* Vibrant Green */

    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #000000;
    /* Pure Black for maximum depth */

    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F1F5F9;

    /* Decoration */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(255, 123, 0, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 100px;

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    /* Critical for mobile scroll fix */
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Double safety */
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Decoration */
.bg-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    /* Constrained for mobile safety */
    height: 600px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Trap any hero overflow */
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: #FFF7ED;
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid #FFE4E6;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    padding: 0 10px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Video Styling */
.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
    z-index: 10;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-shadow {
    position: absolute;
    bottom: -20px;
    left: 4%;
    width: 92%;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

/* Shorts Mode (Vertical Video) */
.shorts-mode {
    max-width: 360px !important;
    margin: 0 auto;
    width: 100%;
    /* Ensure it fills grid cell */
}

.shorts-mode .video-wrapper {
    padding-bottom: 177.77% !important;
    border-radius: 24px;
}

.scroll-indicator {
    margin-top: 40px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* --- INTERACTIVE SLIDER GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    width: 100%;
}

.gallery-item,
.static-gallery-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid #E2E8F0;
    min-height: 300px;
    /* Ensure height */
    transition: transform 0.3s ease;
}

.gallery-item {
    cursor: col-resize;
    user-select: none;
    touch-action: pan-y;
}

.static-gallery-item {
    cursor: default;
}

.gallery-item:hover,
.static-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Make image sit on top, transparently */
.gallery-item img,
.static-gallery-item img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    /* Touches pass through to container */
}

/* Background Layers */
.slider-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    /* White Base */
    z-index: 1;
}

.slider-bg-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* Starts at 50% */
    height: 100%;
    background-color: #000000;
    /* PURE BLACK for Shirt Effect */
    z-index: 2;
    border-right: 2px solid var(--primary);
    /* The Dragger Line */
    will-change: width;
}

/* The Handle Circle - Now High Z-Index */
.slider-handle {
    position: absolute;
    top: 50%;
    /* Left is set by JS now */
    width: 32px;
    height: 32px;
    background: var(--primary);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    z-index: 50;
    /* ABOVE IMAGE (z:10) */
    transform: translate(-50%, -50%);
    /* Centered on the cursor/line */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    /* Let clicks pass through if needed, though dragging handles it */
}

.slider-handle::after {
    content: '↔';
}

/* Hint Animation */
.gallery-item:first-child .slider-handle {
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 123, 0, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
    }
}

/* Feature & Text Sections */
.bg-light {
    background: var(--bg-alt);
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 10px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-problem,
.card-features-main {
    background: var(--bg-main);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #F1F5F9;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #FEF2F2;
    color: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.icon-red {
    background: #FEF2F2;
    color: #EF4444;
}

/* Large Text Emphasis */
.large-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--secondary);
}

.feature-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-box {
    background: var(--bg-main);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: #FFF7ED;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

/* UPDATED CTA BANNER */
.cta-banner {
    background: #F8FAFC;
    /* Subtle gray background */
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 60px;
    /* Space above */
    margin-bottom: 80px;
    /* SPACE BELOW - Pushes away from dark section */
    box-shadow: none;
    border: 1px solid #E2E8F0;
    max-width: 500px;
    /* Constrained width */
    margin-left: auto;
    margin-right: auto;
}

/* Dark Preview Section */
.bg-dark-preview {
    background: var(--bg-dark);
    padding: 80px 0;
    color: white;
    overflow: hidden;
    /* Prevent overflow */
}

.text-white {
    color: white !important;
}

.text-white-muted {
    color: #94A3B8 !important;
}

.tight-grid {
    gap: 16px;
}

/* Pricing */
.bg-gradient-pricing {
    background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 80px 0;
    overflow: hidden;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.premium:hover {
    transform: scale(1.08);
}

.badge-best {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.price-tag {
    margin: 24px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-features {
    text-align: left;
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--text-main);
    font-size: 1rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.btn-cta:hover {
    background: #00C853;
    transform: scale(1.02);
}

.text-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid #E2E8F0;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: #F8FAFC;
}

.guarantee-mini {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Footer & Guarantee */
.guarantee-badge-footer {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #F1F5F9;
}

.guarantee-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

footer {
    padding: 80px 0 40px;
    background: var(--bg-alt);
    text-align: center;
    color: var(--text-muted);
    overflow: hidden;
}

.footer-links a {
    margin: 0 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #F8FAFC;
}

.faq-content {
    padding: 24px;
    padding-top: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    padding-bottom: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    /* ULTRA SAFE MODE */
    .container {
        padding: 0 16px;
        overflow: hidden;
        width: 100%;
    }

    .hero {
        padding: 60px 0 40px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-box-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.premium {
        transform: scale(1);
        margin: 24px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .large-text {
        font-size: 1.25rem;
    }

    /* Force max-width constraint */
    .cta-banner,
    .guarantee-badge-footer,
    .pricing-card,
    .video-wrapper,
    .feature-box,
    .card-problem,
    .card-features-main {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Center CTA specifically */
    .cta-banner {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}