/* Section specific styles */

/* HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.pre-headline {
    color: var(--color-gold-glow);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--color-gold-tint);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--color-gold-border);
    width: fit-content;
    max-width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-headline {
    font-size: clamp(3.15rem, 4.9vw, 4.45rem);
    margin-bottom: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -2px;
    line-height: 1.01;
    /* Tighter for modern font */
}

.sub-headline {
    font-size: 1.02rem;
    color: var(--color-text-primary);
    max-width: 640px;
    margin: 0 auto 24px;
    font-weight: 400;
    line-height: 1.62;
}

/* Hero Inline Checklist */
.hero-checklist {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.7rem 1.3rem;
    width: fit-content;
    margin: 0 auto 24px;
}

.hero-check-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
    line-height: 1.35;
}

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

/* VSL Label */
.vsl-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Highlight marker effect */
.highlight-gold {
    background: linear-gradient(180deg, transparent 60%, rgba(185, 133, 32, 0.12) 60%);
    padding: 0 2px;
    border-radius: 2px;
    color: var(--color-heading);
}

/* VSL Container */
.vsl-container {
    width: min(100%, 780px);
    max-width: 780px;
    margin: 0 auto 32px;
    padding: 8px;
    background: var(--color-glass-strong);
    border: 1px solid var(--color-glass-strong-border);
    box-shadow: var(--shadow-strong);
    border-radius: 20px;
}

.mux-vsl-container {
    position: relative;
    overflow: hidden;
}

.mux-vsl-shell {
    width: 100%;
}

.mux-vsl-card {
    position: relative;
    aspect-ratio: var(--mux-video-aspect, 16 / 9);
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    isolation: isolate;
}

.mux-vsl-card__poster,
.mux-vsl-card__preview,
.mux-vsl-card mux-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mux-vsl-card__poster,
.mux-vsl-card__preview,
.mux-vsl-card__preview img,
.mux-vsl-card__preview video {
    display: block;
    object-fit: cover;
    object-position: center;
}

.mux-vsl-card__poster {
    transform: scale(1.02);
    transition: opacity 420ms ease, transform 420ms ease;
}

.mux-vsl-card__preview {
    opacity: 0;
    transition: opacity 420ms ease, transform 420ms ease;
    transform: scale(1.035);
}

.mux-vsl-card__preview img,
.mux-vsl-card__preview video {
    width: 100%;
    height: 100%;
}

.mux-vsl-card.is-preview-ready .mux-vsl-card__poster {
    opacity: 0.12;
    transform: scale(1.01);
}

.mux-vsl-card.is-preview-ready .mux-vsl-card__preview {
    opacity: 1;
    transform: scale(1);
}

.mux-vsl-card__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 44%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.04));
    z-index: 1;
    pointer-events: none;
}

.mux-vsl-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0) 45%, rgba(6, 6, 6, 0.28) 100%);
    z-index: 2;
    pointer-events: none;
}

.mux-vsl-card__status,
.mux-vsl-card__eyebrow {
    position: absolute;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mux-vsl-card__eyebrow {
    top: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.82);
}

.mux-vsl-card__status {
    top: 18px;
    background: rgba(185, 133, 32, 0.16);
    border: 1px solid rgba(185, 133, 32, 0.26);
    color: #f4d999;
}

.mux-vsl-card__status--fallback {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
}

.mux-vsl-card__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.mux-vsl-trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: center;
}

.mux-vsl-trigger:focus-visible {
    outline: 2px solid rgba(185, 133, 32, 0.8);
    outline-offset: -4px;
}

.mux-vsl-trigger__panel {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    width: min(100%, 340px);
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(233, 121, 78, 0.9), rgba(221, 105, 58, 0.9));
    box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.85);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.mux-vsl-trigger:hover .mux-vsl-trigger__panel,
.mux-vsl-trigger:focus-visible .mux-vsl-trigger__panel {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 28px 54px -28px rgba(0, 0, 0, 0.9);
}

.mux-vsl-trigger__notice {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.mux-vsl-trigger__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mux-vsl-trigger__icon svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mux-vsl-trigger__action {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.mux-vsl-resume {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 4;
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: center;
}

.mux-vsl-resume__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    line-height: 1.05;
    color: #fff;
}

.mux-vsl-resume__time {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

.mux-vsl-resume__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.mux-vsl-resume__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font: inherit;
    cursor: pointer;
}

.mux-vsl-resume__button--primary {
    border-color: rgba(212, 168, 70, 0.34);
    background: linear-gradient(135deg, rgba(212, 168, 70, 0.95), rgba(177, 119, 18, 0.95));
    color: #090909;
    font-weight: 700;
}

.mux-vsl-fallback {
    position: relative;
    aspect-ratio: var(--mux-video-aspect, 16 / 9);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.mux-vsl-fallback iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.mux-vsl-setup {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 4;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    line-height: 1.45;
}

.mux-vsl-placeholder {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at top, rgba(185, 133, 32, 0.16), transparent 52%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(7, 7, 7, 0.98));
}

.mux-vsl-placeholder__inner {
    max-width: 420px;
    display: grid;
    gap: 0.75rem;
}

.mux-vsl-placeholder__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #fff;
}

.vsl-inline-note {
    margin: -18px auto 28px;
    max-width: 780px;
    text-align: center;
    font-size: 0.86rem;
    color: var(--color-text-muted);
}

.mux-inline-player {
    position: relative;
    display: grid;
    gap: 12px;
}

.mux-inline-player__surface {
    position: relative;
    aspect-ratio: var(--mux-video-aspect, 3 / 5);
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.mux-inline-player__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 360ms ease, transform 360ms ease;
}

.mux-inline-player__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mux-inline-player__preview,
.mux-inline-player__mount,
.mux-inline-player__surface mux-player {
    position: absolute;
    inset: 0;
}

.mux-inline-player__preview {
    opacity: 0;
    transition: opacity 360ms ease;
}

.mux-inline-player__preview img,
.mux-inline-player__preview video,
.mux-inline-player__preview mux-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mux-inline-player.is-preview-ready .mux-inline-player__poster {
    opacity: 0.08;
    transform: scale(1.01);
}

.mux-inline-player.is-preview-ready .mux-inline-player__preview {
    opacity: 1;
}

.mux-inline-player__trigger {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0.78rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.64);
    color: rgba(255, 255, 255, 0.92);
    font: inherit;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.mux-inline-player__trigger-play {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mux-inline-player__trigger-play svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mux-inline-player__trigger-label {
    font-size: 0.92rem;
    line-height: 1;
}

.mux-inline-player.is-playing .mux-inline-player__badge {
    display: none;
}

.mux-inline-player.is-playing .mux-inline-player__surface {
    cursor: pointer;
}

.mux-inline-player__trigger.is-hidden,
.mux-inline-player.is-playing .mux-inline-player__trigger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
}

.mux-inline-player__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
}

.mux-inline-player__controls[hidden] {
    display: none;
}

.mux-inline-player__time {
    min-width: 42px;
    font-size: 0.8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.76);
}

.mux-inline-player__time--end {
    text-align: right;
}

.mux-inline-player__progress {
    flex: 1 1 auto;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.mux-inline-player__progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f3cf83 0%, #d19a2f 100%);
    box-shadow: 0 0 16px rgba(209, 154, 47, 0.34);
    transition: width 180ms linear;
}

.mux-player-vturb {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    --controls-backdrop-color: rgba(0, 0, 0, 0.12);
    --seek-forward-button: none;
    --seek-backward-button: none;
    --airplay-button: none;
    --pip-button: none;
    --cast-button: none;
    --playback-rate-button: none;
}

.mux-player-vturb--preview,
.mux-player-vturb--stage,
.mux-player-vturb--inline {
    pointer-events: none;
    --controls: none;
    --top-controls: none;
    --bottom-controls: none;
    --center-controls: none;
    --media-control-bar-display: none;
    --media-time-range-display: none;
    --media-time-display-display: none;
    --media-duration-display-display: none;
    --media-preview-time-display-display: none;
    --controls-backdrop-color: transparent;
}

.mux-player-vturb--preview {
    transform: scale(1.01);
}

.mux-player-vturb--inline {
    --media-object-fit: cover;
    --media-object-position: center;
}

.mux-vsl-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 18px;
}

.mux-vsl-overlay[hidden] {
    display: none;
}

.mux-vsl-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mux-vsl-overlay__surface {
    position: relative;
    z-index: 1;
    width: min(100%, 1220px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mux-vsl-overlay__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(11, 11, 11, 0.72);
    color: rgba(255, 255, 255, 0.86);
    font: inherit;
    cursor: pointer;
}

.mux-vsl-overlay__player {
    position: relative;
    width: min(100%, calc((100vh - 28px) * 16 / 9));
    max-width: 1220px;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 28px);
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.72);
}

.mux-vsl-stage {
    --mux-stage-side-inset: 12px;
    --mux-stage-bottom-inset: 8px;
    --mux-stage-progress-height: 4px;
    --mux-stage-control-size: 38px;
    --mux-stage-control-gap: 12px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.mux-vsl-stage-anchor {
    position: relative;
    width: 100%;
    aspect-ratio: var(--mux-video-aspect, 16 / 9);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.001);
}

.mux-vsl-stage--floating {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 32;
    overflow: visible;
    background: transparent;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: top, left, width, height, opacity, transform;
}

.mux-vsl-stage.is-layout-animating {
    transition:
        top 300ms cubic-bezier(0.22, 1, 0.36, 1),
        left 300ms cubic-bezier(0.22, 1, 0.36, 1),
        width 300ms cubic-bezier(0.22, 1, 0.36, 1),
        height 300ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 220ms ease,
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mux-vsl-stage.is-visual-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0) scale(0.985);
}

.mux-vsl-stage--inline {
    aspect-ratio: var(--mux-video-aspect, 16 / 9);
}

.mux-vsl-stage__frame {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 28px 62px -32px rgba(0, 0, 0, 0.82);
}

.mux-vsl-stage__media,
.mux-vsl-stage__media mux-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mux-vsl-stage__media {
    cursor: pointer;
}

.mux-vsl-stage__media mux-player {
    --media-object-fit: cover;
    --media-object-position: center;
}

.mux-vsl-stage__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.38) 100%);
}

.mux-vsl-stage__pause-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.52) 100%);
    color: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.mux-vsl-stage__pause-overlay::before {
    content: "";
    position: absolute;
    inset: -18%;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 46%),
        radial-gradient(circle at center, rgba(233, 121, 78, 0.34) 0%, rgba(233, 121, 78, 0) 64%);
    opacity: 0;
    transform: scale(0.92);
    filter: blur(10px);
}

.mux-vsl-stage__pause-card {
    display: grid;
    gap: 0.65rem;
    justify-items: center;
    width: min(100%, 360px);
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(233, 121, 78, 0.92), rgba(221, 105, 58, 0.92));
    box-shadow: 0 24px 54px -30px rgba(0, 0, 0, 0.85);
    text-align: center;
    transform: translateY(12px) scale(0.94);
    opacity: 0;
    will-change: transform, box-shadow;
}

.mux-vsl-stage__pause-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.mux-vsl-stage__pause-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    will-change: transform, text-shadow;
}

.mux-vsl-stage__pause-action::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.22rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    transform: scaleX(0.56);
    transform-origin: center;
}

.mux-vsl-stage[data-pause-prompt-visible="true"] .mux-vsl-stage__pause-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mux-vsl-stage[data-pause-prompt-visible="true"] .mux-vsl-stage__pause-overlay::before {
    opacity: 0.82;
}

.mux-vsl-stage[data-pause-prompt-visible="true"] .mux-vsl-stage__pause-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mux-vsl-stage[data-pause-prompt-visible="true"] .mux-vsl-stage__controls {
    opacity: 0.7;
}

.mux-vsl-stage[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-overlay {
    animation: muxPauseOverlayReveal 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mux-vsl-stage[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-overlay::before {
    animation:
        muxPauseGlowReveal 320ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseGlowBreath 3.2s ease-in-out 320ms infinite;
}

.mux-vsl-stage[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-card {
    animation:
        muxPauseCardReveal 320ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseCardPulse 2.2s ease-in-out 360ms infinite;
}

.mux-vsl-stage[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-action {
    animation:
        muxPauseActionReveal 300ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseActionLive 1.5s ease-in-out 420ms infinite;
}

.mux-vsl-stage[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-action::after {
    animation: muxPauseActionLine 1.5s ease-in-out 420ms infinite;
}

.mux-vsl-stage__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.7);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.mux-vsl-stage__close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mux-vsl-stage__controls {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    min-height: calc(var(--mux-stage-control-size) + 18px);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0.32) 100%);
}

.mux-vsl-stage__progress {
    position: absolute;
    left: var(--mux-stage-side-inset);
    right: calc(var(--mux-stage-side-inset) + var(--mux-stage-control-size) + var(--mux-stage-control-gap));
    bottom: var(--mux-stage-bottom-inset);
    height: var(--mux-stage-progress-height);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.26);
}

.mux-vsl-stage__progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f3cf83 0%, #d19a2f 100%);
    box-shadow: 0 0 18px rgba(209, 154, 47, 0.42);
    transition: width 220ms linear;
}

.mux-vsl-stage__control {
    position: absolute;
    right: var(--mux-stage-side-inset);
    bottom: calc(var(--mux-stage-bottom-inset) - 11px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--mux-stage-control-size);
    height: var(--mux-stage-control-size);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.7);
    color: rgba(255, 255, 255, 0.96);
    font: inherit;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 30px -22px rgba(0, 0, 0, 0.88);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.mux-vsl-stage[data-controls-visible="true"] .mux-vsl-stage__control {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mux-vsl-stage__control:hover,
.mux-vsl-stage__control:focus-visible {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(14, 14, 14, 0.84);
    box-shadow: 0 18px 32px -22px rgba(0, 0, 0, 0.94);
}

.mux-vsl-stage__control:active {
    transform: translateY(0) scale(0.94);
}

.mux-vsl-stage__control:disabled {
    cursor: default;
}

.mux-vsl-stage__control:focus-visible {
    outline: 2px solid rgba(243, 207, 131, 0.72);
    outline-offset: 2px;
}

.mux-vsl-stage__control[hidden] {
    display: none;
}

.mux-vsl-stage__control-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mux-vsl-stage__control-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mux-vsl-stage[data-stage-layout="fullscreen"] {
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    z-index: 1400;
    background: #000;
}

.mux-vsl-stage[data-stage-layout="fullscreen"] .mux-vsl-stage__frame {
    border-radius: 0;
    box-shadow: none;
}

.mux-vsl-stage[data-stage-layout="fullscreen"] .mux-vsl-stage__media mux-player {
    --media-object-fit: contain;
    --media-object-position: center;
}

.mux-vsl-stage[data-stage-layout="fullscreen"] .mux-vsl-stage__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 0.22) 100%);
}

.mux-vsl-stage[data-stage-layout="fullscreen"] .mux-vsl-stage__controls {
    --mux-stage-side-inset: max(18px, env(safe-area-inset-left));
    --mux-stage-bottom-inset: max(8px, calc(8px + env(safe-area-inset-bottom)));
    --mux-stage-control-gap: 14px;
    min-height: calc(var(--mux-stage-control-size) + max(20px, env(safe-area-inset-bottom)));
}

.mux-vsl-stage[data-stage-layout="fullscreen"] .mux-vsl-stage__control {
    right: max(18px, env(safe-area-inset-right));
}

.mux-vsl-stage.is-sticky {
    z-index: 1200;
    background: transparent;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__frame {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 34px 76px -30px rgba(0, 0, 0, 0.9);
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__pause-overlay {
    padding: 16px;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__pause-card {
    width: min(100%, 220px);
    gap: 0.5rem;
    padding: 0.9rem 0.95rem;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__pause-title {
    font-size: 0.84rem;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__pause-action {
    font-size: 0.8rem;
}

.mux-vsl-stage.is-sticky[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-sticky-motion="reduced"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-overlay::before {
    animation:
        muxPauseGlowReveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseGlowBreathSticky 2.6s ease-in-out 280ms infinite;
}

.mux-vsl-stage.is-sticky[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-sticky-motion="reduced"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-card {
    animation:
        muxPauseCardReveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseCardPulseSticky 1.9s ease-in-out 320ms infinite;
}

.mux-vsl-stage.is-sticky[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-sticky-motion="reduced"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-action {
    animation:
        muxPauseActionReveal 260ms cubic-bezier(0.22, 1, 0.36, 1) both,
        muxPauseActionLiveSticky 1.7s ease-in-out 360ms infinite;
}

.mux-vsl-stage.is-sticky[data-pause-prompt-visible="true"][data-pause-motion="pulse-cta"][data-pause-sticky-motion="reduced"][data-pause-motion-reduced="false"] .mux-vsl-stage__pause-action::after {
    animation: muxPauseActionLineSticky 1.7s ease-in-out 360ms infinite;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mux-vsl-stage.is-sticky .mux-vsl-stage__controls {
    --mux-stage-side-inset: 10px;
    --mux-stage-bottom-inset: 7px;
    --mux-stage-progress-height: 3px;
    --mux-stage-control-size: 34px;
    --mux-stage-control-gap: 10px;
    min-height: calc(var(--mux-stage-control-size) + 14px);
}

body.video-overlay-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mux-vsl-trigger {
        padding: 16px;
    }

    .vsl-inline-note {
        margin: -18px auto 24px;
        padding: 0 10px;
    }

    .mux-vsl-overlay {
        padding: 10px;
    }

    .mux-vsl-overlay__player {
        border-radius: 16px;
        width: min(100%, calc((100vh - 16px) * 16 / 9));
        max-height: calc(100vh - 16px);
    }

    .mux-vsl-overlay__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .mux-vsl-trigger__panel {
        width: min(100%, 260px);
        gap: 0.65rem;
        padding: 0.9rem 0.95rem;
    }

    .mux-vsl-trigger__notice {
        font-size: 0.84rem;
    }

    .mux-vsl-trigger__icon,
    .mux-vsl-trigger__icon svg {
        width: 56px;
        height: 56px;
    }

    .mux-vsl-trigger__action {
        font-size: 0.92rem;
    }

    .mux-vsl-resume {
        inset: auto 12px 12px 12px;
        gap: 0.7rem;
        padding: 0.85rem;
    }

    .mux-vsl-resume__actions {
        width: 100%;
    }

    .mux-vsl-resume__button {
        flex: 1 1 0;
        min-width: 0;
    }

    .mux-inline-player__trigger {
        inset: auto 12px 12px 12px;
        min-height: 44px;
        padding: 0.72rem 0.9rem;
    }

    .mux-inline-player__controls {
        gap: 10px;
        padding: 0 2px;
    }

    .mux-inline-player__trigger-label {
        font-size: 0.88rem;
    }

    .mux-vsl-stage__controls {
        --mux-stage-side-inset: 10px;
        --mux-stage-bottom-inset: 7px;
        --mux-stage-control-size: 34px;
        --mux-stage-control-gap: 10px;
        min-height: calc(var(--mux-stage-control-size) + 14px);
    }

    .mux-vsl-stage__pause-overlay {
        padding: 18px;
    }

    .mux-vsl-stage__pause-card {
        width: min(100%, 280px);
        padding: 0.95rem 1rem;
    }

    .mux-vsl-stage__pause-title {
        font-size: 0.92rem;
    }

    .mux-vsl-stage__pause-action {
        font-size: 0.84rem;
    }

    .mux-vsl-stage__control {
        bottom: calc(var(--mux-stage-bottom-inset) - 9px);
    }

    .mux-vsl-stage.is-sticky .mux-vsl-stage__frame {
        border-radius: 16px;
    }

    .mux-vsl-stage__close {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mux-vsl-card__preview {
        display: none;
    }

    .mux-vsl-trigger__panel {
        transition: none;
    }

    .mux-vsl-stage__pause-overlay,
    .mux-vsl-stage__pause-overlay::before,
    .mux-vsl-stage__pause-card,
    .mux-vsl-stage__pause-action,
    .mux-vsl-stage__pause-action::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

.mux-vsl-stage[data-pause-motion-reduced="true"] .mux-vsl-stage__pause-overlay,
.mux-vsl-stage[data-pause-motion-reduced="true"] .mux-vsl-stage__pause-overlay::before,
.mux-vsl-stage[data-pause-motion-reduced="true"] .mux-vsl-stage__pause-card,
.mux-vsl-stage[data-pause-motion-reduced="true"] .mux-vsl-stage__pause-action,
.mux-vsl-stage[data-pause-motion-reduced="true"] .mux-vsl-stage__pause-action::after {
    animation: none !important;
}

.mux-vsl-stage[data-pause-motion-reduced="true"][data-pause-prompt-visible="true"] .mux-vsl-stage__pause-overlay::before {
    opacity: 0.6;
    transform: none;
}

@keyframes muxPauseOverlayReveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes muxPauseGlowReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.82;
        transform: scale(1);
    }
}

@keyframes muxPauseGlowBreath {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.94;
    }
}

@keyframes muxPauseGlowBreathSticky {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.56;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.76;
    }
}

@keyframes muxPauseCardReveal {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes muxPauseCardPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 24px 54px -30px rgba(0, 0, 0, 0.85);
    }

    50% {
        transform: translateY(-1px) scale(1.022);
        box-shadow: 0 30px 64px -28px rgba(0, 0, 0, 0.9);
    }
}

@keyframes muxPauseCardPulseSticky {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 22px 44px -30px rgba(0, 0, 0, 0.82);
    }

    50% {
        transform: translateY(-1px) scale(1.014);
        box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.86);
    }
}

@keyframes muxPauseActionReveal {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes muxPauseActionLive {
    0%,
    100% {
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        transform: translateY(-2px);
        text-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
    }
}

@keyframes muxPauseActionLiveSticky {
    0%,
    100% {
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        transform: translateY(-1px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.14);
    }
}

@keyframes muxPauseActionLine {
    0%,
    100% {
        transform: scaleX(0.56);
        opacity: 0.72;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes muxPauseActionLineSticky {
    0%,
    100% {
        transform: scaleX(0.64);
        opacity: 0.7;
    }

    50% {
        transform: scaleX(0.92);
        opacity: 0.92;
    }
}

.hero-cta {
    margin: 0 auto 8px;
    max-width: 420px;
}

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

.hero-bg-glow {
    position: absolute;
    top: -28%;
    left: 50%;
    transform: translateX(-50%);
    width: 960px;
    height: 960px;
    background: radial-gradient(circle, rgba(185, 133, 32, 0.045) 0%, transparent 72%);
    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: var(--color-logo-strip-bg);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.logo-carousel-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-logo-strip-text);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

.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, var(--color-logo-strip-fade) 0%, transparent 100%);
}

.logo-carousel-fader.right {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-logo-strip-fade) 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 {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    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-item {
        min-width: 100px;
        height: 45px;
    }

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

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

.diagnosis-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.35rem 2.2rem 2.45rem;
    border-radius: 26px;
}

.diagnosis-card .row {
    display: block;
    max-width: 720px;
    margin: 0 auto;
}

.col-text {
    display: flex;
    flex-direction: column;
}

.col-text .section-title {
    max-width: 680px;
    margin: 0 auto 1.15rem;
}

.proof-media {
    width: min(100%, 560px);
    margin: 0 auto 1.45rem;
}

.diagnosis-card .body-text,
.diagnosis-card .proof-stats,
.diagnosis-card .result-box {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.stats-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-image);
    border: 1px solid var(--color-gold-border);
}

.image-caption {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
    margin: 0.55rem 0 0;
}

@media (max-width: 768px) {
    .diagnosis-card .row {
        display: block;
    }

    .proof-media {
        width: 100%;
        margin-bottom: 1.25rem;
    }

    .diagnosis-card .proof-stats {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .proof-stat {
        grid-template-columns: 104px 1fr;
        align-items: start;
        gap: 0.85rem;
        padding: 1rem 1rem 0.95rem;
    }

    .proof-stat strong {
        margin: 0;
        font-size: 1.55rem;
        line-height: 0.95;
    }

    .proof-stat span {
        font-size: 0.96rem;
        line-height: 1.4;
    }

    .result-box {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 0.75rem;
        padding: 1rem;
        margin-top: 1.25rem;
        border-radius: 14px;
    }

    .result-box p {
        font-size: 0.96rem;
        line-height: 1.55;
    }
}

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

.body-text {
    font-size: 1.04rem;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.72;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.4rem 0 0;
}

.proof-stat {
    padding: 1rem;
    border-radius: 18px;
    background: color-mix(in srgb, var(--color-bg-surface) 78%, transparent);
    border: 1px solid var(--color-border-soft);
    min-width: 0;
    display: grid;
    gap: 0.35rem;
}

.proof-stat strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-head);
    font-size: 1.38rem;
    line-height: 1;
}

.proof-stat span {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.45;
}

.icon-red {
    color: var(--color-danger);
    min-width: 24px;
}

.result-box {
    background: color-mix(in srgb, var(--color-gold) 7%, transparent);
    border: 1px solid var(--color-gold-border);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    margin-top: 2rem;
}

.result-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 420px) {
    .diagnosis-card .proof-stat {
        grid-template-columns: 92px 1fr;
    }

    .diagnosis-card .proof-stat strong {
        font-size: 1.45rem;
    }

    .diagnosis-card .proof-stat span {
        font-size: 0.92rem;
    }
}

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

/* TESTIMONIAL / CASE STUDY SECTION */
.testimonial-section {
    padding: var(--section-padding);
    background: var(--gradient-section-alt);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.4rem 2.2rem;
    text-align: center;
    border-radius: 26px;
}

.testimonial-header {
    max-width: 620px;
    margin: 0 auto 2rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    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: var(--color-heading);
}

.client-result .before {
    color: var(--color-text-muted);
    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: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.25rem;
}

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

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

.testimonial-vsl .mux-vsl-shell,
.testimonial-vsl .mux-inline-player,
.testimonial-vsl .mux-vsl-fallback,
.testimonial-vsl .mux-vsl-card {
    --mux-video-aspect: 3 / 5;
}

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

.stats-block h3,
.deliverables-block h3 {
    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: var(--color-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.stat-highlight {
    color: var(--color-heading);
    font-weight: 600;
}

.testimonial-quote {
    background: color-mix(in srgb, var(--color-bg-surface) 74%, transparent);
    border: 1px solid var(--color-gold-border);
    padding: 1.25rem 1.5rem;
    margin: 0 auto;
    max-width: 560px;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: left;
    line-height: 1.7;
    border-radius: 18px;
}

.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;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        max-width: 690px;
    }

    .testimonial-content {
        display: grid;
        grid-template-columns: minmax(0, 268px) minmax(0, 248px);
        justify-content: center;
        align-items: stretch;
        gap: 1.25rem;
        max-width: 548px;
        margin: 0 auto 1.75rem;
    }

    .testimonial-vsl {
        max-width: 268px;
        margin: 0;
    }

    .testimonial-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.9rem;
        max-width: none;
        margin: 0;
    }

    .stats-block h3,
    .deliverables-block h3 {
        font-size: 0.68rem;
        margin-bottom: 0.45rem;
        letter-spacing: 1.25px;
    }

    .stats-block li,
    .deliverables-block li {
        font-size: 0.82rem;
        margin-bottom: 0.45rem;
        line-height: 1.42;
    }

    .testimonial-quote {
        max-width: 548px;
    }
}

/* 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-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 4rem auto;
}

.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;
}

.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: 0;
    }
}

.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-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 span {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.node-1 {
    top: 30px;
    left: 100px;
}

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

.node-3 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

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

.node-5 {
    bottom: 30px;
    left: 100px;
}

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

.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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.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;
}

.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);
}

.hub-animation-mobile {
    display: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 2.5rem auto 0;
}

.process-step {
    text-align: left;
    padding: 1.5rem;
    border-radius: 22px;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--color-gold-tint);
    border: 1px solid var(--color-gold-border);
    color: var(--color-gold-glow);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.process-step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: var(--color-heading);
}

.process-step p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hub-animation-container {
        display: none;
    }

    .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);
    }

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

    .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 {
        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;
    }

    .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);
    }

    .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);
        }

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

        100% {
            top: 100px;
            left: var(--target-x);
            opacity: 0;
            transform: translateX(-50%) scale(0.8);
        }
    }

    .mobile-marketplaces-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 340px;
    }

    .mobile-hub-node {
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-height: 110px;
        justify-content: center;
        transition: all 0.2s ease;
        position: relative;
    }

    .mobile-hub-node svg {
        width: 28px;
        height: 28px;
        color: #cbd5e1;
    }

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

    .mobile-hub-node.node-hit {
        border-color: var(--color-gold);
        box-shadow: 0 0 20px rgba(202, 138, 4, 0.5), inset 0 0 20px rgba(202, 138, 4, 0.1);
        transform: scale(1.02);
    }

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

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

    .mobile-hub-node.node-plus {
        background: linear-gradient(145deg, rgba(202, 138, 4, 0.08) 0%, rgba(202, 138, 4, 0.12) 100%);
        border-color: rgba(202, 138, 4, 0.25);
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}


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

.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%;
    padding: 2rem;
}

.us-card {
    background: color-mix(in srgb, var(--color-gold) 4%, var(--color-bg-surface));
    border-color: var(--color-gold-border);
}

.you-card {
    background: color-mix(in srgb, var(--color-bg-surface) 94%, transparent);
}

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

.icon-header-gold,
.icon-header-white {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

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

.icon-header-white {
    color: var(--color-heading);
}

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

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0.95rem 1rem;
    font-size: 1.02rem;
    color: var(--color-text-primary);
    background: var(--color-panel-dark);
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    line-height: 1.5;
}

.comp-list li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    color: var(--color-gold-glow);
}

.comparison-note {
    max-width: 760px;
    margin: 2rem auto 0;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* AUTHORITY SECTION */
.authority-section {
    padding: var(--section-padding);
    background: var(--gradient-section-soft);
}

.bio-content {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    max-width: 920px;
    margin: 0 auto;
    padding: 2.2rem;
    border-radius: 20px;
}

.bio-text .section-title {
    margin-bottom: 1rem;
}

.bio-highlights {
    display: block;
    margin: 0 0 1rem;
    color: var(--color-text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-transform: uppercase;
}

.bio-highlights span {
    display: inline;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.bio-highlights span + span::before {
    content: '•';
    margin: 0 0.55rem 0 0.35rem;
    color: var(--color-text-muted);
}

.profile-img {
    width: 230px;
    height: 230px;
    border-radius: 26px;
    object-fit: cover;
    border: 1px solid var(--color-gold-border);
    box-shadow: var(--shadow-image);
}

.bio-text p {
    margin-bottom: 1rem;
    font-size: 1.02rem;
    color: var(--color-text-primary);
    line-height: 1.72;
}

/* FILTER SECTION */
.filter-section {
    padding: var(--section-padding);
    background: var(--gradient-section-soft-2);
}

.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: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Filter Cards */
.filter-card {
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--color-border-soft);
    background: color-mix(in srgb, var(--color-bg-surface) 82%, transparent);
    transition: all 0.3s ease;
}

.filter-card:hover {
    transform: none;
}

.filter-card-no {
    border-color: var(--color-border-soft);
    background: color-mix(in srgb, var(--color-bg-surface) 82%, transparent);
}

.filter-card-no:hover {
    border-color: var(--color-border-soft);
    box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.24);
}

.filter-card-yes {
    border-color: var(--color-border-soft);
    background: color-mix(in srgb, var(--color-bg-surface) 82%, transparent);
}

.filter-card-yes:hover {
    border-color: var(--color-border-soft);
    box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.24);
}

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

.filter-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: color-mix(in srgb, var(--color-bg-surface) 76%, transparent);
    border: 1px solid var(--color-border-soft);
    color: var(--color-text-secondary);
}

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

.badge-red {
    background: color-mix(in srgb, var(--color-bg-surface) 76%, transparent);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-soft);
}

.badge-gold {
    background: color-mix(in srgb, var(--color-bg-surface) 76%, transparent);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-soft);
}

.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: var(--color-heading);
}

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

/* 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: color-mix(in srgb, var(--color-bg-surface) 74%, transparent);
    border-radius: 10px;
    border: 1px solid var(--color-border-subtle);
    transition: all 0.2s ease;
}

.filter-list li:hover {
    background: color-mix(in srgb, var(--color-bg-surface) 78%, transparent);
    transform: none;
}

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

.filter-list li span {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.5;
}

.filter-list li strong {
    color: var(--color-heading);
}

.qualifier-note {
    max-width: 760px;
    margin: 2rem auto 0;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.filter-section .icon-red,
.filter-section .icon-gold,
.filter-section .filter-icon-badge svg {
    color: var(--color-text-secondary);
}

/* 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;
    }

    .authority-stats,
    .process-steps {
        grid-template-columns: 1fr;
    }
}


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

.faq-item {
    background: color-mix(in srgb, var(--color-bg-surface) 78%, transparent);
    margin-bottom: 1rem;
    border-radius: 18px;
    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: transparent;
    color: var(--color-text-primary);
    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);
}

.faq-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.cta-final {
    padding: 100px 20px;
    text-align: center;
    background: var(--gradient-footer-cta);
}

.footer-note {
    max-width: 620px;
    margin: 0.5rem auto 0;
}

footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border-subtle);
}

@media (max-width: 768px) {
    .main-headline {
        font-size: clamp(1.86rem, 9.3vw, 2.42rem);
        max-width: 100%;
        margin-bottom: 14px;
        letter-spacing: -1.4px;
        line-height: 0.99;
    }

    .sub-headline {
        font-size: 0.92rem;
        max-width: 100%;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .hero-checklist {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 auto 18px;
    }

    .hero-check-item {
        display: none;
    }

    .hero-checklist::before {
        content: 'Fazemos tudo por você';
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        color: var(--color-text-primary);
        text-align: center;
    }

    .hero-section {
        padding-top: 26px;
        padding-bottom: 36px;
    }

    .hero-content {
        max-width: 100%;
    }

    .pre-headline {
        width: 100%;
        max-width: 100%;
        padding: 9px 11px;
        margin-bottom: 14px;
        font-size: 0.69rem;
        letter-spacing: 1px;
        line-height: 1.35;
        border-radius: 12px;
    }

    .hero-cta {
        max-width: 100%;
        margin-bottom: 14px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 17px 24px;
        font-size: 1rem;
        letter-spacing: 0.4px;
    }

    .microcopy {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .vsl-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .vsl-container {
        margin-bottom: 22px;
        border-radius: 18px;
    }

    .section-title {
        line-height: 1.08;
    }

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

    .bio-content {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .profile-img {
        width: 100%;
        max-width: 220px;
        height: auto;
        aspect-ratio: 1 / 1.08;
        align-self: center;
    }

    .bio-highlights {
        display: flex;
        flex-direction: column;
        gap: 0.22rem;
    }

    .bio-highlights span {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 0.78rem;
    }

    .bio-highlights span + span::before {
        content: '';
        margin: 0;
    }

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

    .body-text,
    .comp-list li,
    .bio-text p,
    .faq-answer {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .diagnosis-card,
    .testimonial-card,
    .comp-card,
    .filter-card {
        border-radius: 22px;
    }

    .faq-question {
        padding: 1.15rem 1.1rem;
        font-size: 1rem;
        line-height: 1.35;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.1rem 1.1rem 1.1rem;
    }

    .cta-final {
        padding: 72px 20px;
    }

    .process-step {
        padding: 1.25rem;
    }

    .comparison-note,
    .qualifier-note,
    .footer-note {
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 900px;
    }

    .main-headline {
        max-width: 780px;
    }

    .sub-headline {
        max-width: 690px;
    }

    .vsl-container {
        max-width: 780px;
    }
}

html[data-theme='light'] .highlight-gold {
    background: linear-gradient(180deg, transparent 62%, rgba(149, 102, 19, 0.12) 62%);
}

html[data-theme='light'] .hero-bg-glow {
    background: radial-gradient(circle, rgba(149, 102, 19, 0.035) 0%, rgba(149, 102, 19, 0.012) 36%, transparent 72%);
}

html[data-theme='light'] .sub-headline {
    color: #314154;
}

html[data-theme='light'] .vsl-label,
html[data-theme='light'] .microcopy,
html[data-theme='light'] .vsl-inline-note {
    color: #607084;
}

html[data-theme='light'] .mux-vsl-card__eyebrow {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(100, 116, 139, 0.18);
    color: #44566c;
}

html[data-theme='light'] .mux-vsl-card__status--fallback,
html[data-theme='light'] .mux-inline-player__badge,
html[data-theme='light'] .mux-vsl-overlay__close {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(100, 116, 139, 0.16);
    color: #344256;
}

html[data-theme='light'] .mux-vsl-setup {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 116, 139, 0.16);
    color: #46596f;
}

html[data-theme='light'] .pre-headline {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(149, 102, 19, 0.18);
    color: #a16d18;
}

html[data-theme='light'] .logo-carousel-section {
    background: #ffffff;
}

html[data-theme='light'] .logo-carousel-wrapper {
    border-top: 1px solid rgba(100, 116, 139, 0.08);
    border-bottom: 1px solid rgba(100, 116, 139, 0.08);
}

html[data-theme='light'] .logo-item img {
    opacity: 1;
    filter: none;
}

html[data-theme='light'] .hub-node .node-icon img,
html[data-theme='light'] .hub-svg-node-card image {
    filter: none;
    opacity: 1;
}

html[data-theme='light'] .logo-carousel-wrapper::before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

html[data-theme='light'] .logo-carousel-wrapper::after {
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

html[data-theme='light'] .stats-image,
html[data-theme='light'] .profile-img {
    background: #fff;
}

html[data-theme='light'] .filter-card-no {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 250, 246, 0.97) 100%);
}

html[data-theme='light'] .filter-card-yes {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 250, 246, 0.97) 100%);
}

html[data-theme='light'] .diagnosis-card,
html[data-theme='light'] .bio-content,
html[data-theme='light'] .testimonial-card,
html[data-theme='light'] .comp-card,
html[data-theme='light'] .filter-card,
html[data-theme='light'] .faq-item {
    box-shadow: 0 24px 54px -30px rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 250, 246, 0.97) 100%);
    border-color: rgba(100, 116, 139, 0.12);
}

html[data-theme='light'] .proof-stat,
html[data-theme='light'] .result-box {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(100, 116, 139, 0.14);
}

html[data-theme='light'] .diagnosis-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 250, 246, 0.97) 100%);
    border-color: rgba(100, 116, 139, 0.12);
}

html[data-theme='light'] .logo-item,
html[data-theme='light'] .mechanism-store,
html[data-theme='light'] .mechanism-rail span,
html[data-theme='light'] .mechanism-platforms span,
html[data-theme='light'] .proof-stat,
html[data-theme='light'] .faq-item {
    background: rgba(255, 255, 255, 0.97);
}

html[data-theme='light'] .hub-animation-container,
html[data-theme='light'] .hub-animation-mobile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 248, 243, 0.98) 100%);
    border-color: rgba(202, 138, 4, 0.18);
}

html[data-theme='light'] .proof-stat span,
html[data-theme='light'] .image-caption,
html[data-theme='light'] .section-subtitle,
html[data-theme='light'] .comparison-note,
html[data-theme='light'] .qualifier-note,
html[data-theme='light'] .faq-subtitle {
    color: #556679;
}

html[data-theme='light'] .result-box p,
html[data-theme='light'] .bio-text p,
html[data-theme='light'] .body-text,
html[data-theme='light'] .comp-list li,
html[data-theme='light'] .filter-list li span,
html[data-theme='light'] .faq-answer {
    color: #1f2c3b;
}

html[data-theme='light'] .result-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.98) 100%);
    border-color: rgba(149, 102, 19, 0.14);
}

@media (prefers-color-scheme: light) {
    html:not([data-theme='dark']) .highlight-gold {
        background: linear-gradient(180deg, transparent 62%, rgba(149, 102, 19, 0.12) 62%);
    }

    html:not([data-theme='dark']) .hero-bg-glow {
        background: radial-gradient(circle, rgba(149, 102, 19, 0.035) 0%, rgba(149, 102, 19, 0.012) 36%, transparent 72%);
    }

    html:not([data-theme='dark']) .sub-headline {
        color: #314154;
    }

    html:not([data-theme='dark']) .vsl-label,
    html:not([data-theme='dark']) .microcopy {
        color: #607084;
    }

    html:not([data-theme='dark']) .pre-headline {
        background: rgba(255, 255, 255, 0.72);
        border-color: rgba(149, 102, 19, 0.18);
        color: #a16d18;
    }

    html:not([data-theme='dark']) .logo-carousel-section {
        background: #ffffff;
    }

    html:not([data-theme='dark']) .logo-carousel-wrapper {
        border-top: 1px solid rgba(100, 116, 139, 0.08);
        border-bottom: 1px solid rgba(100, 116, 139, 0.08);
    }

    html:not([data-theme='dark']) .logo-item img {
        opacity: 1;
        filter: none;
    }

    html:not([data-theme='dark']) .hub-node .node-icon img,
    html:not([data-theme='dark']) .hub-svg-node-card image {
        filter: none;
        opacity: 1;
    }

    html:not([data-theme='dark']) .logo-carousel-wrapper::before {
        background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }

    html:not([data-theme='dark']) .logo-carousel-wrapper::after {
        background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }

    html:not([data-theme='dark']) .stats-image,
    html:not([data-theme='dark']) .profile-img {
        background: #fff;
    }

    html:not([data-theme='dark']) .filter-card-no {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 250, 246, 0.97) 100%);
    }

    html:not([data-theme='dark']) .filter-card-yes {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 250, 246, 0.97) 100%);
    }

    html:not([data-theme='dark']) .diagnosis-card,
    html:not([data-theme='dark']) .bio-content,
    html:not([data-theme='dark']) .testimonial-card,
    html:not([data-theme='dark']) .comp-card,
    html:not([data-theme='dark']) .filter-card,
    html:not([data-theme='dark']) .faq-item {
        box-shadow: 0 24px 54px -30px rgba(15, 23, 42, 0.14);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 250, 246, 0.97) 100%);
        border-color: rgba(100, 116, 139, 0.12);
    }

    html:not([data-theme='dark']) .proof-stat,
    html:not([data-theme='dark']) .result-box {
        background: rgba(255, 255, 255, 0.97);
        border-color: rgba(100, 116, 139, 0.14);
    }

    html:not([data-theme='dark']) .diagnosis-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 250, 246, 0.97) 100%);
        border-color: rgba(100, 116, 139, 0.12);
    }

    html:not([data-theme='dark']) .logo-item,
    html:not([data-theme='dark']) .mechanism-store,
    html:not([data-theme='dark']) .mechanism-rail span,
    html:not([data-theme='dark']) .mechanism-platforms span,
    html:not([data-theme='dark']) .proof-stat,
    html:not([data-theme='dark']) .faq-item {
        background: rgba(255, 255, 255, 0.97);
    }

    html:not([data-theme='dark']) .hub-animation-container,
    html:not([data-theme='dark']) .hub-animation-mobile {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 248, 243, 0.98) 100%);
        border-color: rgba(202, 138, 4, 0.18);
    }

    html:not([data-theme='dark']) .proof-stat span,
    html:not([data-theme='dark']) .image-caption,
    html:not([data-theme='dark']) .section-subtitle,
    html:not([data-theme='dark']) .comparison-note,
    html:not([data-theme='dark']) .qualifier-note,
    html:not([data-theme='dark']) .faq-subtitle {
        color: #556679;
    }

    html:not([data-theme='dark']) .result-box p,
    html:not([data-theme='dark']) .bio-text p,
    html:not([data-theme='dark']) .body-text,
    html:not([data-theme='dark']) .comp-list li,
    html:not([data-theme='dark']) .filter-list li span,
    html:not([data-theme='dark']) .faq-answer {
        color: #1f2c3b;
    }

    html:not([data-theme='dark']) .result-box {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.98) 100%);
        border-color: rgba(149, 102, 19, 0.14);
    }
}

body[data-theme="dark"] .hub-animation-container,
body[data-theme="dark"] .hub-animation-mobile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 244, 237, 0.98) 100%);
    border-color: rgba(185, 133, 32, 0.16);
    box-shadow: 0 18px 28px -24px rgba(0, 0, 0, 0.24);
}

body[data-theme="dark"] .logo-carousel-wrapper {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px -22px rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] .pre-headline {
    background: rgba(185, 133, 32, 0.08);
    border-color: rgba(185, 133, 32, 0.18);
}

body[data-theme="dark"] .highlight-gold {
    background: linear-gradient(180deg, transparent 60%, rgba(185, 133, 32, 0.1) 60%);
}

body[data-theme="dark"] .vsl-container {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .comp-list li,
body[data-theme="dark"] .filter-list li {
    background: rgba(255, 255, 255, 0.018);
}

body[data-theme="dark"] .filter-card-yes:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 26px -24px rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] .filter-card-no:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 26px -24px rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] .btn-cta {
    background: linear-gradient(135deg, #bb8626 0%, #d2a046 100%);
}

body[data-theme="dark"] .icon-header-gold,
body[data-theme="dark"] .icon-gold,
body[data-theme="dark"] .hero-check-icon,
body[data-theme="dark"] .process-number,
body[data-theme="dark"] .faq-item.active .faq-question,
body[data-theme="dark"] .mechanism-label {
    color: #d7a43a;
}

html[data-theme='light'] .solution-section {
    background: var(--gradient-section-soft);
}

html[data-theme='light'] .hub-animation-container,
html[data-theme='light'] .hub-animation-mobile {
    background: transparent;
    border: none;
    box-shadow: none;
}

html[data-theme='light'] .solution-section .section-title,
html[data-theme='light'] .solution-section .sub-headline,
html[data-theme='light'] .solution-section .body-text {
    color: var(--color-heading);
}

html[data-theme='light'] .solution-section .sub-headline {
    color: #405166;
}

html[data-theme='light'] .hub-center .hub-icon,
html[data-theme='light'] .mobile-hub-center .hub-icon {
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ee 100%);
    border-color: rgba(149, 102, 19, 0.28);
    box-shadow: 0 12px 24px -18px rgba(149, 102, 19, 0.2);
}

html[data-theme='light'] .hub-center .hub-icon svg,
html[data-theme='light'] .mobile-hub-center .hub-icon svg {
    color: var(--color-gold);
}

html[data-theme='light'] .hub-label {
    color: #8d6116;
}

html[data-theme='light'] .hub-pulse {
    border-color: rgba(149, 102, 19, 0.24);
}

html[data-theme='light'] .hub-line {
    stroke: rgba(79, 96, 114, 0.5);
    stroke-width: 1.35;
}

html[data-theme='light'] .hub-node .node-icon {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(100, 116, 139, 0.2);
    box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.18);
}

html[data-theme='light'] .hub-node .node-icon svg {
    color: #4e6073;
}

html[data-theme='light'] .hub-node span,
html[data-theme='light'] .mobile-hub-node span {
    color: #33465a;
    font-weight: 700;
}

html[data-theme='light'] .hub-node.node-plus .node-icon,
html[data-theme='light'] .mobile-hub-node.node-plus {
    background: rgba(149, 102, 19, 0.06);
    border-color: rgba(149, 102, 19, 0.18);
}

html[data-theme='light'] .hub-node.node-plus span,
html[data-theme='light'] .mobile-hub-node.node-plus span {
    color: #956613;
}

html[data-theme='light'] .desktop-particle,
html[data-theme='light'] .flying-particle {
    box-shadow: 0 0 8px 1px rgba(202, 138, 4, 0.5), 0 0 18px 4px rgba(202, 138, 4, 0.24);
}

html[data-theme='light'] .mobile-connection-area::before {
    background: linear-gradient(180deg, rgba(149, 102, 19, 0.34) 0%, rgba(149, 102, 19, 0.1) 42%, transparent 100%);
}

html[data-theme='light'] .mobile-hub-node {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 241, 0.98) 100%);
    border-color: rgba(100, 116, 139, 0.18);
    box-shadow: 0 14px 24px -22px rgba(15, 23, 42, 0.14);
}

html[data-theme='light'] .mobile-hub-node svg {
    color: #4e6073;
}

html[data-theme='light'] .mobile-hub-node.node-hit {
    box-shadow: 0 0 16px rgba(202, 138, 4, 0.22), inset 0 0 16px rgba(202, 138, 4, 0.06);
}

html[data-theme='light'] .mobile-hub-center .hub-label,
html[data-theme='light'] .hub-label {
    color: #8d6116;
}

@media (prefers-color-scheme: light) {
    html:not([data-theme='dark']) .hub-animation-container,
    html:not([data-theme='dark']) .hub-animation-mobile {
        background: transparent;
        border: none;
        box-shadow: none;
    }
}
