/* Section specific styles */

/* HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    /* Reduced specific padding for marquee flow */
    background: radial-gradient(circle at top center, #1e1b15 0%, var(--color-bg-deep) 60%);
    overflow: hidden;
}

.pre-headline {
    color: var(--color-gold-glow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    background: rgba(202, 138, 4, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(202, 138, 4, 0.2);
}

.main-headline {
    font-size: 3.5rem;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    /* Tighter for modern font */
}

.sub-headline {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 28px;
    font-weight: 350;
    line-height: 1.7;
}

/* Hero Inline Checklist */
.hero-checklist {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-check-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}

.hero-check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold-glow);
    flex-shrink: 0;
}

/* VSL Label */
.vsl-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* Highlight marker effect */
.highlight-gold {
    background: linear-gradient(180deg, transparent 20%, rgba(202, 138, 4, 0.35) 20%);
    padding: 0 4px;
    border-radius: 2px;
    color: #ffffff;
}

/* VSL Container */
.vsl-container {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-cta {
    margin-top: 32px;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 12px;
    opacity: 0.8;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* LOGO CAROUSEL (Replaces Marquee) */
.logo-carousel-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
    padding: 20px 0;
    background: #ffffff;
    border-top: none;
    border-bottom: none;
}

.logo-carousel-lead {
    text-align: center;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.logo-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade edges */
.logo-carousel-fader {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-fader.left {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.logo-carousel-fader.right {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

.logo-carousel-track {
    display: flex;
    gap: 0.01rem;
    width: max-content;
    animation: logo-scroll 25s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 60px;
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

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

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

@media (max-width: 768px) {
    .logo-carousel-section {
        margin-top: 40px;
        padding: 20px 0;
    }

    .logo-carousel-lead {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .logo-carousel-track {
        gap: 0.2rem;
    }

    .logo-item {
        min-width: 100px;
        height: 50px;
    }

    .logo-item img {
        max-height: 40px;
    }

    .logo-carousel-fader {
        width: 50px;
    }
}

/* DIAGNOSIS/OPPORTUNITY SECTION */
.diagnosis-section {
    padding: var(--section-padding);
}

.diagnosis-card {
    max-width: 1100px;
    margin: 0 auto;
}

.diagnosis-card .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.col-img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(202, 138, 4, 0.2);
}

.image-caption {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .diagnosis-card .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .col-img {
        order: -1;
    }
}

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

.body-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.pain-list {
    list-style: none;
    margin: 2rem 0;
}

.pain-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 1.05rem;
}

.icon-red {
    color: #ef4444;
    min-width: 24px;
}

.result-box {
    background: rgba(202, 138, 4, 0.08);
    /* Lighter gold bg */
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 4px;
    margin-top: 2rem;
}

.icon-gold {
    color: var(--color-gold);
}

/* TESTIMONIAL / CASE STUDY SECTION */
.testimonial-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 2.5rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.client-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.client-result .before {
    color: #64748b;
    font-weight: 400;
    opacity: 0.8;
}

.client-result .arrow-icon {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
}

.client-result .after {
    color: var(--color-gold);
    font-size: 1.6rem;
    font-weight: 700;
}

.client-result .result-note {
    width: 100%;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.25rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Testimonial video specific override */
.testimonial-vsl {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 6px;
}

.testimonial-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.stats-block h4,
.deliverables-block h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stats-block ul,
.deliverables-block ul {
    list-style: none;
}

.stats-block li,
.deliverables-block li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.stat-highlight {
    color: #ffffff;
    font-weight: 600;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem 1.5rem;
    margin: 0 auto;
    max-width: 600px;
    font-style: italic;
    font-size: 1rem;
    color: #94a3b8;
    text-align: left;
    line-height: 1.7;
    border-radius: 0 6px 6px 0;
}

.testimonial-quote .quote-icon {
    display: none;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-result {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .client-result .after {
        font-size: 1.4rem;
    }

    .testimonial-quote {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* SOLUTION SECTION */
.solution-section {
    padding: var(--section-padding);
    background: #020202;
    background-image:
        radial-gradient(at 0% 0%, rgba(202, 138, 4, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(202, 138, 4, 0.03) 0px, transparent 50%);
}

/* HUB ANIMATION */
.hub-animation-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 4rem auto;
}

/* Center Hub */
.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.hub-center .hub-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.4);
    position: relative;
    z-index: 2;
}

.hub-center .hub-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold-glow);
}

.hub-label {
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Pulse Effect behind center */
.hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    animation: hub-pulse-anim 2s infinite;
    z-index: 1;
}

@keyframes hub-pulse-anim {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
        border-width: 2px;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        border-width: 0px;
    }
}

/* SVG Lines */
.hub-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hub-line {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
}

.hub-particle {
    fill: var(--color-gold-glow);
}

/* Orbit Nodes */
.hub-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    transition: transform 0.3s ease;
}

.hub-node:hover {
    transform: scale(1.1);
}

.hub-node .node-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.hub-node .node-icon svg {
    width: 24px;
    height: 24px;
    color: #cbd5e1;
}

.hub-node .node-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Glow effect on node hit for images */
.hub-node.node-hit .node-icon img {
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
}

.hub-node span {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Node Positioning - 6 nodes in hexagonal layout */
/* SVG ViewBox is 800x400. Center is 400,200 */

/* Top Row */
.node-1 {
    top: 30px;
    left: 100px;
}

.node-2 {
    top: 30px;
    right: 100px;
}

/* Middle Row (sides) */
.node-3 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-4 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* Bottom Row */
.node-5 {
    bottom: 30px;
    left: 100px;
}

.node-6 {
    bottom: 30px;
    right: 100px;
}

/* Catch-all Node Style */
.hub-node.node-plus .node-icon {
    background: rgba(202, 138, 4, 0.1);
    border-color: rgba(202, 138, 4, 0.3);
}

.hub-node.node-plus span {
    color: var(--color-gold-glow);
    font-weight: 600;
}

/* Desktop Particle Container */
.desktop-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

/* Desktop Flying Particle */
.desktop-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle,
            #fff 0%,
            var(--color-gold-glow) 40%,
            transparent 70%);
    border-radius: 50%;
    box-shadow:
        0 0 6px 2px var(--color-gold-glow),
        0 0 15px 4px rgba(202, 138, 4, 0.5);
    z-index: 10;
    pointer-events: none;
}

/* Desktop Node Hit Glow */
.hub-node.node-hit {
    z-index: 20;
}

.hub-node.node-hit .node-icon {
    border-color: var(--color-gold) !important;
    box-shadow:
        0 0 15px rgba(202, 138, 4, 0.6),
        0 0 30px rgba(202, 138, 4, 0.3),
        inset 0 0 15px rgba(202, 138, 4, 0.1);
    background: rgba(202, 138, 4, 0.15);
    transform: scale(1.1);
    transition: all 0.15s ease-out;
}

.hub-node.node-hit .node-icon svg {
    color: var(--color-gold-glow) !important;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
}

.hub-node.node-hit span {
    color: var(--color-gold-glow);
}

/* Mobile Hub (Hidden on Desktop) */
.hub-animation-mobile {
    display: none;
}

@media (max-width: 768px) {

    /* Hide Desktop Hub */
    .hub-animation-container {
        display: none;
    }

    /* Show Mobile Hub */
    .hub-animation-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 3rem 0;
        gap: 1.5rem;
    }

    .mobile-hub-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .mobile-hub-center .hub-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
        border: 2px solid var(--color-gold);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 20px rgba(202, 138, 4, 0.4);
        margin-bottom: 8px;
    }

    .mobile-hub-center .hub-icon svg {
        width: 32px;
        height: 32px;
        color: var(--color-gold-glow);
    }

    /* Connection Area for Particles */
    .mobile-connection-area {
        position: relative;
        width: 100%;
        height: 120px;
        overflow: visible;
        display: flex;
        justify-content: center;
    }

    /* Central Vertical Beam (subtle) */
    .mobile-connection-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg,
                rgba(202, 138, 4, 0.6) 0%,
                rgba(202, 138, 4, 0.1) 40%,
                transparent 100%);
        opacity: 0.5;
    }

    /* Flying Particle - Comet Style */
    .flying-particle {
        position: absolute;
        top: 0;
        left: 50%;
        width: 10px;
        height: 10px;
        background: radial-gradient(circle,
                #fff 0%,
                var(--color-gold-glow) 40%,
                transparent 70%);
        border-radius: 50%;
        box-shadow:
            0 0 6px 2px var(--color-gold-glow),
            0 0 15px 4px rgba(202, 138, 4, 0.5),
            0 0 30px 8px rgba(202, 138, 4, 0.2);
        animation: flyToTarget 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        z-index: 10;
    }

    /* Comet Tail */
    .flying-particle::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 50px;
        background: linear-gradient(180deg,
                transparent 0%,
                rgba(202, 138, 4, 0.3) 30%,
                rgba(245, 158, 11, 0.6) 60%,
                var(--color-gold-glow) 100%);
        border-radius: 4px;
        filter: blur(1px);
    }

    /* Glow Halo */
    .flying-particle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: radial-gradient(circle,
                rgba(245, 158, 11, 0.4) 0%,
                transparent 70%);
        border-radius: 50%;
        animation: pulse 0.3s ease-in-out infinite;
    }

    @keyframes pulse {

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

        50% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 0.4;
        }
    }

    @keyframes flyToTarget {
        0% {
            top: -10px;
            left: 50%;
            opacity: 0;
            transform: translateX(-50%) scale(0.3);
        }

        15% {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

        100% {
            top: calc(100% + 10px);
            left: var(--target-x);
            opacity: 0.9;
            transform: translateX(-50%) scale(0.6);
        }
    }

    /* Node Hit Glow Effect - Premium */
    .mobile-hub-node {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.2rem 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-hub-node.node-hit {
        border-color: var(--color-gold) !important;
        box-shadow:
            0 0 15px rgba(202, 138, 4, 0.5),
            0 0 30px rgba(202, 138, 4, 0.3),
            inset 0 0 20px rgba(202, 138, 4, 0.1);
        transform: scale(1.08);
        background: rgba(202, 138, 4, 0.08);
    }

    .mobile-hub-node.node-hit svg {
        color: var(--color-gold-glow) !important;
        filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
    }

    .mobile-marketplaces-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    .node-plus {
        background: rgba(202, 138, 4, 0.08);
        border-color: rgba(202, 138, 4, 0.3);
    }

    .node-plus span {
        color: var(--color-gold-glow) !important;
        font-weight: 700;
    }

    .mobile-hub-node svg {
        width: 28px;
        height: 28px;
        color: rgba(203, 213, 225, 0.9);
        transition: all 0.3s ease;
    }

    .mobile-hub-node img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    /* Glow effect for images on hit */
    .mobile-hub-node.node-hit img {
        filter: brightness(1.2) drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
    }

    .mobile-hub-node span {
        font-size: 0.75rem;
        color: rgba(148, 163, 184, 0.9);
        font-weight: 500;
        letter-spacing: 0.3px;
    }
}


/* COMPARISON SECTION */
.comparison-section {
    padding: var(--section-padding);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comp-card {
    height: 100%;
}

.us-card {
    background: rgba(202, 138, 4, 0.03);
    border-color: rgba(202, 138, 4, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer line */
    padding-bottom: 1rem;
}

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

.comp-list li {
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

/* AUTHORITY SECTION */
.authority-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #0a0a0a 100%);
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-glass-border);
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.15);
}

.bio-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* FILTER SECTION */
.filter-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #080808 100%);
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Filter Cards */
.filter-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.filter-card:hover {
    transform: translateY(-4px);
}

.filter-card-no {
    border-color: rgba(239, 68, 68, 0.15);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.03) 0%, transparent 50%);
}

.filter-card-no:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
}

.filter-card-yes {
    border-color: rgba(202, 138, 4, 0.2);
    background: linear-gradient(145deg, rgba(202, 138, 4, 0.05) 0%, transparent 50%);
}

.filter-card-yes:hover {
    border-color: rgba(202, 138, 4, 0.4);
    box-shadow: 0 10px 40px rgba(202, 138, 4, 0.15);
}

/* Card Header */
.filter-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-icon-badge svg {
    width: 24px;
    height: 24px;
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge-gold {
    background: rgba(202, 138, 4, 0.15);
    color: var(--color-gold-glow);
}

.filter-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.filter-card-no .filter-card-header h3 {
    color: #f87171;
}

.filter-card-yes .filter-card-header h3 {
    color: var(--color-gold-glow);
}

/* Filter List Items */
.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.filter-list li:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.filter-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.filter-list li span {
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.5;
}

.filter-list li strong {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-card {
        padding: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}


/* FAQ SECTION */
.faq-section {
    padding: var(--section-padding);
    background: #080808;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-glass-border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--color-text-primary);
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--color-gold-glow);
}

/* FOOTER */
.cta-final {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(0deg, #1A1202 0%, var(--color-bg-deep) 100%);
}

footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .hero-checklist {
        gap: 12px 20px;
    }

    .hero-check-item {
        font-size: 0.85rem;
    }

    .hero-section {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .hub-animation-container {
        height: 250px;
        transform: scale(0.45);
        /* Smaller scale for mobile */
        transform-origin: top center;
        /* Stick to top */
        margin: 2rem auto 0;
        left: 50%;
        translate: -50% 0;
        /* Center horizontally explicitly */
        width: 800px;
        /* Force original width for scale to work */
        max-width: none;
        /* Override max-width */
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }

    .bio-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

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

    .marquee-track {
        gap: 2rem;
    }

    .marquee-item {
        font-size: 1rem;
    }
}