/* Page specific styles matching the design */

/* Header */
.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.site-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

.site-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--color-text-main);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Utilities */
.mt-sm {
    margin-top: var(--spacing-sm);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    padding-bottom: var(--spacing-md);
    /* Reduced from xl */
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
}

.hero-content {
    max-width: 900px;
    /* Widened slightly for one-line text */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xs);
}

.text-highlight-pink {
    color: #ec4899;
    /* Pink/Violet solid as requested */
    font-weight: 800;
}

.text-gradient-red {
    background-image: linear-gradient(135deg, #ff5252 0%, #d50000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    display: inline;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
    /* Added margin to lower it */
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    /* Ensure one line */
}

.text-highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-btn {
    min-width: 240px;
    /* Wider */
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
    color: white;
    /* Ensure text creates contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    /* Not 100% round */
    padding: 1rem 3rem;
    /* Larger touch area */
}

/* Trust Marquee */
:root {
    --marquee-height: 100px;
    /* Slightly reduced from 125px for better fit */
    --rail-gap: 80px;
    --logo-max-h: 50px;
    --speed: 40s;
    /* Slower for smoothness */
    /* Dark Theme Adaptation */
    --marquee-bg: rgba(20, 20, 20, 0.5);
    --marquee-border: rgba(255, 255, 255, 0.1);
}

.marquee {
    position: relative;
    width: 100%;
    height: var(--marquee-height);
    overflow: hidden;
    background: var(--marquee-bg);
    border: 1px solid var(--marquee-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    padding: 0;
    /* Remove padding to avoid jump at edges */
    margin-top: var(--spacing-md);
    /* Reduced from lg to md */
    backdrop-filter: blur(8px);
}

.track {
    display: flex;
    align-items: center;
    gap: var(--rail-gap);
    will-change: transform;
    animation: scroll var(--speed) linear infinite;
    /* Ensure width is sufficient. Flex box handles content width. */
}

.track>.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--marquee-height) - 24px);
    min-width: 120px;
}

.logo-item img {
    display: block;
    max-height: var(--logo-max-h);
    width: auto;
    object-fit: contain;
    /* Invert colors for dark mode since logos are likely black */
    filter: brightness(0) invert(1) opacity(0.7);
    transition: opacity 0.3s, filter 0.3s;
}

.logo-item img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) opacity(1);
}

/* Horizontal Marquee Animation */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

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

.email-track {
    display: flex;
    flex-direction: row;
    /* Horizontal */
    gap: 2rem;
    animation: scroll-horizontal 30s linear infinite;
    /* Horizontal scroll */
    width: max-content;
    /* Allow content to expand horizontally */
}

.review-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 10s linear infinite;
    /* Speed increased 20s -> 10s */
    width: max-content;
}

@media (max-width: 768px) {
    .review-track {
        animation: none !important;
        /* Disable marquee */
        width: auto;
        /* Let it flow */
    }

    .review-marquee-container {
        overflow-x: auto !important;
        /* Force enable manual scroll */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        /* Space for scrollbar if visible/touch */
        mask-image: none !important;
        /* Remove fade for usability */
        width: 100%;
        display: block;
        /* Ensure it's block for overflow */
        white-space: nowrap;
        /* Keep items in a row */
    }

    .review-card {
        scroll-snap-align: center;
        flex: 0 0 85vw;
        /* Show mostly one card */
        display: inline-block;
        /* For whitespace nowrap */
        white-space: normal;
        /* Reset for text inside card */
        margin-right: 1rem;
        vertical-align: top;
    }
}

.email-marquee-container {
    overflow-x: hidden;
    /* Hide horizontal overflow */
    max-width: 100%;
}

.email-card {
    flex: 0 0 auto;
    width: 280px;
    /* Fixed width for better horizontal flow */
}

.email-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

@media (prefers-reduced-motion: reduce) {
    .track {
        animation: none;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}

/* Problem Section */
/* Problem Section */
.problem-section {
    padding-top: 60px;
    padding-bottom: 40px;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.problem-visual {
    padding-bottom: 0;
    /* Removing excess padding */
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    /* Add spacing below animation on mobile since it's now in flow */
}

@media (max-width: 768px) {
    .problem-content {
        text-align: center;
    }

    .problem-visual {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .problem-list {
        align-items: center;
        text-align: left;
        margin-top: 0.5rem;
    }

    .mobile-hide {
        display: none !important;
    }

    .mobile-show {
        display: block !important;
    }

    .leak-wrapper {
        pointer-events: none;
    }

    /* SEO-Safe Mobile Reordering (Replaces JS) */
    .two-col-grid {
        display: flex;
        flex-direction: column;
    }

    .problem-content,
    .solution-content,
    .outcome-content,
    .agitation-content {
        display: contents;
    }

    /* Visuals render in the middle */
    .problem-visual,
    .solution-visual,
    .outcome-visual,
    .agitation-visual {
        order: 3;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    /* Content Ordering */
    .problem-content .label-small,
    .solution-content .label-small,
    .outcome-content .label-small,
    .agitation-content .label-small {
        order: 1;
        width: 100%;
        /* Ensure full width in flex col */
        text-align: center;
    }

    .problem-content .headline-md,
    .solution-content .headline-md,
    .outcome-content .headline-md,
    .agitation-content .headline-md {
        order: 2;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .problem-content .body-text,
    .solution-content .body-text,
    .outcome-content .body-text,
    .agitation-content .body-text {
        order: 4;
        width: 100%;
        text-align: center;
    }

    .problem-content ul,
    .solution-content ul,
    .outcome-content ul,
    .agitation-content ul {
        order: 5;
        width: 100%;
    }
}

/* Problem Section (Agitation) */
.agitation-section {
    padding: 40px 0 60px;
    position: relative;
    margin-top: -2px;
    /* Overlap to remove thin line */
    background: linear-gradient(to bottom, #0a0a0a 0%, #0a0a0a 10%, #0f172a 100%);
    z-index: 1;
}

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

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.text-white {
    color: white;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-muted);
    /* "Over 30%..." is slightly muted except emphasizing 'Dead' */
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-headline .text-white {
    color: white;
}

.section-subtext {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

/* Decay Visualization Container */
.decay-container {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Subtle Grid Background */
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
}

.decay-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.decay-readout {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    z-index: 20;
}

.decay-readout .label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.decay-readout .value {
    font-family: 'Courier New', monospace;
    color: #ef4444;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.badge-spam {
    background: rgba(30, 41, 59, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: monospace;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.caption-text {
    text-align: center;
    font-weight: 600;
    margin-top: var(--spacing-xs);
    /* Reduced from sm */
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.label-small {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.headline-md {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-lg) 0;
    background: #050505;
}

.problem-content {
    /* No special grid here, parent handles it */
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    /* Reset List Styles */
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.problem-list>div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /* Reset List Item Styles */
    margin: 0 !important;
    padding: 0 !important;
}

.body-text {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.icon-x svg,
.icon-check svg {
    min-width: 24px;
    /* User req: Fix alignment (was pushing it down) */
    margin-top: 0;
}

.problem-list p,
.solution-list p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    padding-top: 40px;
    /* Reduced from 80px */
    padding-bottom: 60px;
    /* Blend from Agitation to Dark */
    background: linear-gradient(to bottom, #0f172a 0%, #0a0a0a 20%, #0a0a0a 100%);
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.solution-list>div {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.solution-list strong {
    color: white;
}

/* Outcome Section */
.outcome-section {
    padding: 60px 0;
    text-align: center;
    border-top: none !important;
    /* Force remove any border */
    /* Ensure background matches */
    /* Ensure background matches */
    background: #0a0a0a;
}

.cta-wrapper {
    margin-top: 5rem;

    /* Increased specific spacing */
    margin-bottom: 2rem;
}


@media (max-width: 768px) {
    .cta-wrapper {
        margin-top: 2rem !important;
        margin-bottom: 1rem !important;
    }

    /* Reduce spacing specifically for the social proof container mentioned in uploaded_image_2 */
    .social-proof-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .sp-cta-wrapper {
        margin-bottom: 1rem !important;
        /* Reduce space below 'Unlock Now' button */
    }
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-value::after {
    content: "+";
    color: #3b82f6;
    /* Blue accent */
    font-size: 2.5rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    margin-top: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.stat-arrow {
    display: none;
    /* Hidden on mobile/stacked */
    color: var(--color-text-muted);
    opacity: 0.5;
}

@media (min-width: 768px) {
    .stat-arrow {
        display: block;
    }
}

/* Badge Item Styling */
.sp-badge {
    /* Existing styles... */
}

.badge-item {
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    min-width: 80px;
    text-align: center;
    padding-bottom: 1.5rem;
    /* Shape compensation */
}

/* Testimonials Section (Scrollable) */
/* Testimonials Section (Scrollable) */
.video-testimonials-section {
    padding: 0 0 2rem;
    /* Removed top padding (was 2rem) */
    /* Reduced bottom padding further */
    background: #0a0a0a;
    width: 100%;
    overflow: hidden;
    border-top: none !important;
    /* Ensure no line */
    position: relative;
    z-index: 20;
    margin-top: -1rem;
    /* Pull up closer to badges */
}

/* Horizontal Scroll Container */
/* Video Marquee Container */
.video-marquee-container {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Video Track (The moving part) */
.video-track {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
    /* Auto-scroll desktop */
    padding: 0 var(--spacing-md) 0;
}

/* Pause on hover */
.video-track:hover {
    animation-play-state: paused;
}

/* Video Card Styling */
.video-card {
    flex: 0 0 300px;
    /* Fixed width */
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1rem;
    /* Inner padding */
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments for video grid spacing */
/* Mobile adjustments for video track (Manual Scroll) */
@media (max-width: 768px) {
    .video-marquee-container {
        overflow: visible;
        mask-image: none;
    }

    .video-track {
        display: flex;
        animation: none !important;
        /* Disable marquee */
        width: auto;
        /* Allow flow */
        overflow-x: auto;
        /* Enable manual scroll */
        scroll-snap-type: x mandatory;

        /* Spacing fixes */
        margin-bottom: 1.5rem !important;
        /* Restore some spacing */
        padding-bottom: 0 !important;

        /* Edge-to-edge centering */
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .video-track::-webkit-scrollbar {
        display: none;
    }

    .video-testimonials-section {
        padding-bottom: 0 !important;
    }

    /* Hide the duplicate set on mobile */
    .video-track .video-card:nth-child(n+9) {
        display: none !important;
    }
}

/* Text Review Card Styling */
.review-card {
    flex: 0 0 450px;
    /* Increased width to show 3-4 at a time */
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-stars {
    color: #fbbf24;
    /* Amber-400 */
    letter-spacing: 2px;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    /* Slate-200 */
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: auto;
}

.author-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Infinite Scroll Marquee */
/* Trust Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    /* Reset List Styles */
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Reset List Styles */
    padding: 0;
    margin: 0;
}

.logo-item img {
    height: 32px;
    width: auto;
    /* User req: Logos are black SVGs, need invert to be visible on dark bg */
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%) invert(1);
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%) invert(1);
}

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

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

.marquee-disclaimer {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.6;
}

/* Video Marquee (Infinite Scroll) */
.video-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
    /* Hide scrollbars */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

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

.video-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollVideo 60s linear infinite;
    /* Slower for videos */
    /* Reset List Styles */
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* Reuse Video Card Styles but adjust for slider */
.video-track .video-card {
    width: 300px;
    flex-shrink: 0;
    /* Reset List Styles */
    margin: 0;
    padding: 0;
}

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

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

/* User asked to remove Text Testimonials grid and make it infinite scroll too */
.review-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
    margin-top: 2rem;
}

.review-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollReviews 80s linear infinite;
    /* Even slower for reading */
    /* Reset List Styles */
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.review-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 400px;
    /* Fixed width for scrolling */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Reset List Styles */
    margin: 0;
    /* list-style is handled by parent UL */
}

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

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


/* FAQ Section */
.faq-section {
    padding: 1.5rem 0;
    /* Tight spacing as requested */
    background: #0a0a0a;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.faq-headline {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    list-style: none;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    transition: transform 0.3s ease;
}

.faq-icon::after {
    width: 100%;
    height: 2px;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

details[open] .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    /* Form X or just hide vertical? */
    /* Actually for a Plus to X, typically we just rotate the whole icon 45deg.
       If vertical line rotates, it matches horizontal?
       Let's just rotate the container 45deg.
       + becomes x.
    */
}

.faq-answer {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Pause on hover for readability */
.review-marquee-container:hover .review-track {
    animation-play-state: paused;
}

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

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

/* Wrapper for Image */
.video-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    /* Vertical video ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle inner border */
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Play Button Overlay */
.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
    /* Optical center */
}

.video-card:hover .play-button {
    background: rgba(139, 92, 246, 0.8);
    /* Primary color */
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Label / Client Info */
.video-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    text-align: left;
}

.client-role-xs {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.3;
}

/* Simple Footer */
/* Simple Footer */
.simple-footer {
    background-color: transparent;
    padding: 4rem 0;
    /* Reduced from var(--spacing-xl) */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .simple-footer {
        padding-top: 2rem;
        /* Reduced from 3rem */
        padding-bottom: 2rem;
        /* Balanced bottom padding */
    }

    .footer-cta {
        margin-bottom: 2.5rem !important;
    }

    .footer-cta h2 {
        margin-bottom: 1rem !important;
    }
}

.footer-cta {
    margin-bottom: 5rem;
    /* Increased from 3rem for better spacing */
}

.footer-cta h2 {
    margin-bottom: 2rem !important;
    /* Slightly increased from 1.5rem */
    font-size: 2.5rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    /* Reduced from 5rem */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.legal-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: white;
}

.separator {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-links a:hover {
    color: white;
}

/* Marquee Disclaimer */
.marquee-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    opacity: 0.7;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Email Carousel Speed Update & Mobile Fixes */
.email-track {
    animation-duration: 20s !important;
    /* Significantly slower (was ~8s) */
}

@media (max-width: 768px) {
    .email-track {
        animation-duration: 25s !important;
        /* Even slower for mobile read speed */
        pointer-events: none !important;
    }

    .email-card,
    .email-card img {
        pointer-events: none !important;
        /* Strictly disable interaction */
    }
}

/* Legal Pages Styling */
.legal-section {
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    padding-bottom: var(--spacing-xl);
    background: #0a0a0a;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(8px);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: white;
    font-weight: 600;
}

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

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}