﻿:root {
    --bg: #eef2f6;
    --surface: #ffffff;
    --surface-soft: #f5f8ff;
    --surface-muted: #edf3ff;
    --border: #d7e0f4;
    --border-strong: #b7c4e3;
    --text: #102136;
    --text-soft: #425468;
    --text-muted: #6d8094;
    --accent: #1235d5;
    --accent-strong: #0f2fbf;
    --accent-soft: #dfe6ff;
    --accent-dark: #0d2b96;
    --accent-alt: #0d9317;
    --accent-alt-strong: #087a11;
    --accent-alt-soft: #ddf8e0;
    --danger: #b42318;
    --danger-soft: #fee4e2;
    --shadow-sm: 0 10px 22px rgba(14, 35, 95, 0.09);
    --shadow-md: 0 24px 52px rgba(14, 35, 95, 0.16);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --container: 1240px;
    --container-padding: 24px;
    --space: clamp(64px, 10vw, 110px);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    background:
        radial-gradient(1180px 520px at -12% -20%, rgba(18, 53, 213, 0.2) 0%, rgba(18, 53, 213, 0) 62%),
        radial-gradient(920px 500px at 110% 0%, rgba(13, 147, 23, 0.18) 0%, rgba(13, 147, 23, 0) 56%),
        linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: min(100% - (var(--container-padding) * 2), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 40px);
    background: rgba(248, 251, 255, 0.9);
    border-bottom: 1px solid rgba(18, 53, 213, 0.16);
    box-shadow: 0 8px 24px rgba(18, 53, 213, 0.08);
    backdrop-filter: blur(14px);
}

.logo {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.site-header .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo-image {
    width: clamp(160px, 18vw, 228px);
    height: auto;
}

.logo .dot {
    color: var(--accent);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.main-navigation ul a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-navigation ul a:hover,
.main-navigation ul a:focus-visible {
    color: var(--text);
    background: var(--surface-muted);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    padding: 8px;
    cursor: pointer;
}

.bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    border-radius: 999px;
    background: var(--text);
}

.fx-page {
    position: relative;
}

.fx-section {
    padding: var(--space) 0;
}

.fx-section + .fx-section {
    border-top: 1px solid rgba(18, 53, 213, 0.08);
}

.fx-section-soft {
    background:
        radial-gradient(880px 300px at 88% 6%, rgba(13, 147, 23, 0.08), rgba(13, 147, 23, 0)),
        radial-gradient(860px 320px at 8% 90%, rgba(18, 53, 213, 0.08), rgba(18, 53, 213, 0)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 249, 255, 0.62));
}

.fx-page > .fx-section:not(.fx-hero) {
    position: relative;
}

.fx-page > .fx-section:not(.fx-hero)::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(520px 160px at 0% 0%, rgba(18, 53, 213, 0.06), rgba(18, 53, 213, 0));
}

.fx-page > .fx-section:nth-of-type(even):not(.fx-hero)::before {
    background: radial-gradient(520px 160px at 100% 0%, rgba(13, 147, 23, 0.08), rgba(13, 147, 23, 0));
}

.fx-page > .fx-section > .container {
    position: relative;
    z-index: 1;
}

#impacto.fx-section {
    padding-top: 34px;
    padding-bottom: 54px;
}

.fx-section-head {
    margin-bottom: 40px;
}

@media (max-width: 820px) {
    .fx-section-head,
    .fx-section-head-left {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.fx-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    margin: 0 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fx-kicker-danger {
    color: var(--danger);
    border-color: rgba(180, 35, 24, 0.25);
    background: var(--danger-soft);
}

.fx-hero-title,
.fx-title {
    margin: 0;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-wrap: balance;
}

.fx-hero-title {
    max-width: 13ch;
    font-size: clamp(2.2rem, 4.8vw, 4.5rem);
    margin-bottom: 0.2em;
}

.fx-hero-subtitle {
    margin: 0;
    max-width: 24ch;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-wrap: balance;
}

.fx-title {
    max-width: 18ch;
    font-size: clamp(1.85rem, 3vw, 3.05rem);
}

.fx-hero-text,
.fx-section-text {
    max-width: 65ch;
    margin: 24px 0 0;
    color: var(--text-soft);
}

.fx-hero {
    position: relative;
    overflow: hidden;
    padding-top: 62px;
}

.fx-hero-glow {
    display: none;
}

.fx-hero-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    align-items: stretch;
}

.fx-hero-copy {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(155deg, #ffffff 0%, #f4f7ff 66%, #f2fff3 100%);
    box-shadow: var(--shadow-sm);
}

.fx-hero-card {
    grid-column: span 5;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
    min-height: 0;
    margin-top: 0 !important;
}

.fx-hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: clamp(24px, 3.5vw, 40px);
}

.fx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fx-btn-icon {
    font-size: 1.08em;
    line-height: 1;
}

.fx-btn:hover {
    transform: translateY(-1px);
}

.fx-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(18, 53, 213, 0.24);
}

.fx-btn-primary:hover,
.fx-btn-primary:focus-visible {
    background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent-alt-strong) 100%);
    box-shadow: 0 14px 26px rgba(18, 53, 213, 0.3);
}

.fx-btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    color: var(--accent-dark);
    border-color: rgba(18, 53, 213, 0.34);
}

.fx-btn-secondary:hover,
.fx-btn-secondary:focus-visible {
    border-color: var(--accent-alt);
    color: var(--accent-alt-strong);
    background: linear-gradient(180deg, #ffffff 0%, #f1fff2 100%);
}

.fx-btn-full {
    width: 100%;
}

.fx-section-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.fx-section-actions .fx-btn {
    min-width: 210px;
}

.fx-video-shell,
.fx-impact-item,
.fx-card,
.fx-step-card,
.fx-feature-card,
.fx-video-carousel,
.fx-carousel-slide,
.fx-emphasis-card,
.fx-tech-visual,
.fx-form-panel,
.fx-cta-banner,
.fx-faq-item,
.fx-contact-points span {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, #ffffff 0%, #f7faff 68%, #f3fff4 100%);
    box-shadow: var(--shadow-sm);
}

.fx-video-shell,
.fx-card,
.fx-step-card,
.fx-feature-card,
.fx-video-carousel,
.fx-emphasis-card,
.fx-tech-visual,
.fx-form-panel,
.fx-cta-banner,
.fx-faq-item {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fx-video-shell::after,
.fx-card::after,
.fx-step-card::after,
.fx-feature-card::after,
.fx-video-carousel::after,
.fx-emphasis-card::after,
.fx-tech-visual::after,
.fx-form-panel::after,
.fx-cta-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(18, 53, 213, 0),
        rgba(18, 53, 213, 0.44),
        rgba(13, 147, 23, 0.48),
        rgba(13, 147, 23, 0)
    );
    opacity: 0;
    transition: opacity 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
    .fx-video-shell:hover,
    .fx-card:hover,
    .fx-step-card:hover,
    .fx-feature-card:hover,
    .fx-video-carousel:hover,
    .fx-emphasis-card:hover,
    .fx-tech-visual:hover,
    .fx-form-panel:hover,
    .fx-cta-banner:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(18, 53, 213, 0.36);
    }

    .fx-video-shell:hover::after,
    .fx-card:hover::after,
    .fx-step-card:hover::after,
    .fx-feature-card:hover::after,
    .fx-video-carousel:hover::after,
    .fx-emphasis-card:hover::after,
    .fx-tech-visual:hover::after,
    .fx-form-panel:hover::after,
    .fx-cta-banner:hover::after {
        opacity: 1;
    }
}

.fx-video-shell {
    height: 100%;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.fx-video-label {
    display: none;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fx-hero-card > .fx-video-shell {
    height: 100%;
    margin-top: 0 !important;
    transform: none !important;
    translate: none !important;
    scale: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fx-video-player-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: none;
    margin-top: 0;
    flex: 1 1 auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    background:
        radial-gradient(180px 120px at 80% 0%, rgba(13, 147, 23, 0.18), rgba(13, 147, 23, 0)),
        radial-gradient(240px 160px at 10% 100%, rgba(18, 53, 213, 0.22), rgba(18, 53, 213, 0)),
        #070f23;
    overflow: hidden;
}

.fx-video-player-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 92px;
    background: linear-gradient(180deg, rgba(5, 13, 24, 0) 0%, rgba(5, 13, 24, 0.72) 100%);
    pointer-events: none;
}

.fx-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-height: 0;
}

.fx-carousel-video-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
}

.fx-carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Controls Overlay */
.fx-video-controls-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.fx-carousel-video-wrap.is-playing .fx-video-controls-overlay {
    opacity: 0;
}

.fx-video-icon-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, background 0.2s ease;
    color: #1235D5;
}

.fx-video-icon-btn:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.fx-video-icon-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.fx-audio-unlock {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    background: linear-gradient(130deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(18, 53, 213, 0.28);
    cursor: pointer;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.fx-audio-unlock.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.fx-video-carousel {
    display: block;
    position: relative;
    padding: 18px 62px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%);
}

.fx-carousel-nav {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--text);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.fx-carousel-nav:hover,
.fx-carousel-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
    border-color: var(--accent);
    background: linear-gradient(180deg, #edf1ff 0%, #edffef 100%);
}

.fx-carousel-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.fx-carousel-prev::before {
    transform: translate(-36%, -50%) rotate(-135deg);
}

.fx-carousel-prev {
    left: 12px;
}

.fx-carousel-next::before {
    transform: translate(-64%, -50%) rotate(45deg);
}

.fx-carousel-next {
    right: 12px;
}

.fx-carousel-viewport {
    min-width: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.fx-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.44s cubic-bezier(0.24, 0.74, 0.34, 0.99);
}

.fx-carousel-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    padding: 7px;
    opacity: 0.66;
    transform: scale(0.97);
    transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.fx-carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--border);
    box-shadow: 0 16px 26px rgba(16, 33, 54, 0.12);
}

.fx-carousel-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    line-height: 0;
}

.fx-carousel-video-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 84px;
    background: linear-gradient(180deg, rgba(5, 13, 24, 0) 0%, rgba(5, 13, 24, 0.72) 100%);
    pointer-events: none;
}

.fx-carousel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    background: #000000;
    display: block;
}

#videos .fx-video-carousel {
    display: block !important;
}

#videos .fx-video-carousel::after {
    display: none;
}

#videos .fx-carousel-video-wrap::after {
    display: none;
}

#videos .fx-carousel-viewport {
    overflow: hidden !important;
}

#videos .fx-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
}

#videos .fx-carousel-slide {
    display: block !important;
    flex: 0 0 calc((100% - 32px) / 3) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#videos .fx-carousel-slide.is-active {
    border-color: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 1120px) {
    #videos .fx-carousel-slide {
        flex-basis: calc((100% - 16px) / 2) !important;
    }
}

@media (max-width: 820px) {
    #videos .fx-carousel-slide {
        flex-basis: 100% !important;
    }
}

.fx-impact-grid,
.fx-card-row,
.fx-steps-grid,
.fx-benefits-grid,
.fx-contact-layout,
.footer-widgets {
    display: grid;
    gap: 16px;
}

.fx-impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fx-impact-strip {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.fx-impact-item {
    grid-column: span 3;
    padding: 22px;
}

.fx-impact-strip-featured .fx-impact-item {
    grid-column: span 4;
    padding: 28px;
}

.fx-impact-strip-featured .fx-impact-item h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.26rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fx-impact-strip-featured .fx-impact-item p {
    margin: 0;
    color: var(--text-soft);
}

.fx-impact-card,
.fx-card,
.fx-step-card,
.fx-feature-card {
    padding: 28px;
}

.fx-impact-card {
    text-align: center;
}

.fx-impact-value {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.fx-impact-label {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.fx-section-head {
    max-width: 860px;
    margin: 0 0 34px;
    text-align: left;
}

.fx-section-head-left {
    margin-left: 0;
}

.fx-card-row-3 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.fx-card-row-3 .fx-card {
    grid-column: span 4;
}

.fx-card-row-3 .fx-card:nth-child(1) {
    grid-column: span 5;
}

.fx-card-row-3 .fx-card:nth-child(2) {
    grid-column: span 3;
}

.fx-card-row-3 .fx-card:nth-child(3) {
    grid-column: span 4;
}

.fx-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-alt-soft) 100%);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.fx-card-row .fx-card:nth-child(even),
.fx-steps-grid .fx-step-card:nth-child(even),
.fx-benefits-grid .fx-feature-card:nth-child(even),
.fx-impact-strip .fx-impact-item:nth-child(even) {
    background: linear-gradient(155deg, #ffffff 0%, #f2f6ff 64%, #effced 100%);
}

.fx-card h3,
.fx-step-card h3,
.fx-feature-card h3,
.fx-emphasis-card h3,
.fx-form-title,
.fx-success-box h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.26rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fx-card p,
.fx-step-card p,
.fx-feature-card p,
.fx-list-item span,
.fx-bullet-list li,
.fx-contact-points span,
.faq-answer p {
    margin: 0;
    color: var(--text-soft);
}

.fx-steps-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.fx-step-card {
    grid-column: span 6;
}

.fx-step-card:nth-child(3) {
    grid-column: span 4;
}

.fx-step-card:nth-child(4) {
    grid-column: span 8;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 58%, #eefbec 100%);
}

.fx-step-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.fx-benefits-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
}

.fx-feature-card-large {
    grid-column: span 12;
    background: linear-gradient(180deg, #ffffff 0%, #eff4ff 58%, #eefbec 100%);
}

.fx-benefits-grid > .fx-feature-card:not(.fx-feature-card-large) {
    grid-column: span 4;
}

.fx-benefits-grid > .fx-feature-card:last-child {
    grid-column: span 4;
}

.fx-chip-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.fx-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-alt-soft) 100%);
    border: 1px solid rgba(18, 53, 213, 0.18);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.fx-two-column,
.fx-two-column-visual {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.fx-two-column-copy,
.fx-contact-copy {
    grid-column: span 7;
    text-align: left;
}

.fx-emphasis-card,
.fx-tech-visual {
    grid-column: span 5;
}

.fx-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    text-align: left;
}

.fx-list-intro {
    margin: 24px 0 0;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
}

.fx-list-item {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: linear-gradient(155deg, #ffffff 0%, #f4f8ff 100%);
}

.fx-list-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.fx-emphasis-card {
    padding: 28px;
    background: linear-gradient(160deg, #fefefe 0%, #f3f7ff 62%, #f0ffef 100%);
    border-color: rgba(18, 53, 213, 0.24);
}

.fx-emphasis-lead {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.fx-bullet-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
    text-align: left;
}

.fx-bullet-list li {
    position: relative;
    padding-left: 18px;
}

.fx-bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.fx-tech-visual {
    min-height: 430px;
    overflow: hidden;
    display: block;
    padding: 0;
    background: #ffffff;
}

.fx-tech-canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 430px;
}

.fx-tech-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.fx-molecule-svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    overflow: visible;
}

.fx-svg-orbit {
    fill: none;
    stroke: rgba(18, 53, 213, 0.25);
    stroke-width: 1.4;
}

.fx-svg-node {
    fill: #f6fbfa;
    stroke: rgba(13, 147, 23, 0.42);
    stroke-width: 1.4;
}

.fx-svg-label {
    fill: var(--accent-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
}

.fx-svg-core {
    fill: url(#fxCoreGlow);
    stroke: rgba(18, 53, 213, 0.4);
    stroke-width: 1.4;
    filter: drop-shadow(0 0 16px rgba(18, 53, 213, 0.24));
}

.fx-svg-core-label {
    fill: #ffffff;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fx-orbit-group-a {
    transform-origin: 210px 160px;
    animation: orbit-spin-a 18s linear infinite;
}

.fx-orbit-group-b {
    transform-origin: 210px 160px;
    animation: orbit-spin-b 24s linear infinite reverse;
}

.fx-orbit-group-c {
    transform-origin: 210px 160px;
    animation: orbit-spin-c 30s linear infinite;
}

@keyframes orbit-spin-a {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin-b {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin-c {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fx-faq {
    max-width: 900px;
    margin-top: 42px;
    display: grid;
    gap: 12px;
}

.fx-faq-title {
    margin: 0 0 6px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fx-faq-item {
    padding: 0 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 1rem;
    font-weight: 700;
}

.fx-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.24s ease;
}

.faq-question.active .fx-faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease;
}

.faq-answer p {
    padding: 0 0 20px;
}

.fx-contact-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
}

.fx-contact-copy {
    grid-column: span 6;
}

.fx-form-panel {
    grid-column: span 6;
    padding: 30px;
}

.fx-contact-points {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.fx-contact-points span {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    background: var(--surface-soft);
    box-shadow: none;
}

.fx-form-title {
    text-align: left;
    margin-bottom: 20px;
}

.fx-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fx-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fx-field-full {
    grid-column: 1 / -1;
}

.fx-field label {
    color: var(--text-soft);
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.fx-field input,
.fx-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--text);
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fx-field input::placeholder,
.fx-field textarea::placeholder {
    color: var(--text-muted);
}

.fx-field input:focus,
.fx-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(18, 53, 213, 0.14);
}

.fx-form-panel .fx-form .fx-btn-full {
    margin-top: 18px;
}

.fx-success-box,
.fx-error-box {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
}

.fx-success-box {
    background: var(--accent-alt-soft);
    border: 1px solid rgba(13, 147, 23, 0.28);
}

.fx-error-box {
    background: var(--danger-soft);
    border: 1px solid rgba(180, 35, 24, 0.24);
    color: #7a271a;
}

.fx-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* --- KITS SECTION --- */
.fx-kit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.fx-kit-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    background: linear-gradient(155deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.fx-kit-featured {
    background: linear-gradient(155deg, #ffffff 0%, #effced 100%);
    border-color: rgba(13, 147, 23, 0.22);
}

.fx-kit-image {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.fx-kit-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 240px;
}

.fx-kit-content {
    padding: 28px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    text-align: left !important;
}

.fx-kit-content h3 {
    margin-bottom: 16px;
}

.fx-kit-content .fx-bullet-list {
    margin-top: 0;
    margin-bottom: 24px;
    flex: 1 1 auto;
}

.fx-kit-price-box {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.fx-kit-price {
    font-size: 2.4rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.fx-kit-price-note {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 500;
}

@media (max-width: 768px) {
    .fx-kit-grid {
        grid-template-columns: 1fr;
    }
}

/* --- MODAL KITS --- */
.fx-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fx-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fx-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.fx-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.fx-modal.is-active .fx-modal-content {
    transform: translateY(0);
}

.fx-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.fx-modal-close:hover {
    color: var(--danger);
}

.fx-modal-header {
    text-align: left;
}

.fx-modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.fx-modal-subtitle {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.fx-modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fx-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 4px 0;
}

.fx-modal-divider::before,
.fx-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.fx-modal-divider span {
    padding: 0 12px;
}

.fx-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fx-address-wrapper {
    position: relative;
}

.fx-address-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.fx-address-input-group input {
    padding-right: 52px;
}

.fx-btn-icon-only {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--accent);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}

.fx-btn-icon-only:hover {
    background: var(--surface-soft);
}

.fx-btn-icon-only.is-loading {
    opacity: 0.5;
    pointer-events: none;
    animation: pulse-geolocation 1.5s infinite;
}

@keyframes pulse-geolocation {
    0% { opacity: 0.5; }
    50% { opacity: 1; color: var(--text); }
    100% { opacity: 0.5; }
}

.fx-qty-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.fx-qty-field label {
    color: var(--text-soft);
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.fx-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.fx-qty-btn {
    width: 44px;
    height: 44px;
    background: var(--surface-soft);
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.fx-qty-btn:hover {
    background: var(--border);
}

.fx-qty-controls input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-weight: 700;
    color: var(--text);
    appearance: textfield;
    -moz-appearance: textfield;
}

.fx-qty-controls input::-webkit-outer-spin-button,
.fx-qty-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fx-bottom-cta {
    padding: 60px 0;
}

.fx-cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

.fx-cta-banner .fx-title {
    max-width: 22ch;
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.site-footer {
    margin-top: var(--space);
    background: linear-gradient(160deg, #0b1d5a 0%, #101c39 54%, #0b3f13 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 56px 0 28px;
}

.footer-widgets {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.brand-col {
    grid-column: span 5;
}

.links-col {
    grid-column: span 3;
}

.contact-col {
    grid-column: span 4;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo-image {
    width: clamp(150px, 16vw, 210px);
    height: auto;
    display: block;
}

.site-footer .logo {
    color: #f4f8ff;
}

.site-footer .logo .dot {
    color: #9ed9a4;
}

.brand-col p,
.links-col a,
.contact-col p,
.site-info {
    color: rgba(225, 233, 243, 0.88);
}

.links-col h3,
.contact-col h3 {
    margin: 0 0 14px;
    color: #f4f8ff;
    font-family: var(--font-display);
    font-size: 1rem;
}

.links-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.links-col a:hover,
.links-col a:focus-visible {
    color: #ffffff;
}

.links-col a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-icon {
    font-size: 18px;
    line-height: 1;
    color: rgba(225, 233, 243, 0.9);
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
}

.footer-icon {
    font-size: 20px;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    font-feature-settings: 'liga';
}

.social-links a:hover,
.social-links a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.contact-col p {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.contact-col .footer-icon {
    margin-top: 2px;
    flex-shrink: 0;
    color: #ffffff;
}

.site-info {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.89rem;
}

.fx-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.fx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    :root {
        --space: 80px;
    }

    .fx-hero-copy {
        padding: 34px;
    }

    .fx-hero-grid,
    .fx-contact-layout,
    .fx-two-column,
    .fx-two-column-visual,
    .footer-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fx-hero-copy,
    .fx-hero-card,
    .fx-contact-copy,
    .fx-form-panel,
    .fx-two-column-copy,
    .fx-emphasis-card,
    .fx-tech-visual,
    .brand-col,
    .links-col,
    .contact-col {
        grid-column: span 1;
    }

    .fx-impact-strip,
    .fx-card-row-3,
    .fx-steps-grid,
    .fx-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fx-impact-item,
    .fx-card-row-3 .fx-card,
    .fx-step-card,
    .fx-benefits-grid > .fx-feature-card,
    .fx-feature-card-large,
    .fx-benefits-grid > .fx-feature-card:last-child {
        grid-column: span 1;
    }

    .fx-card-row-3 .fx-card:first-child,
    .fx-feature-card-large,
    .fx-benefits-grid > .fx-feature-card:last-child {
        grid-column: span 2;
    }

    .fx-step-card:nth-child(4) {
        grid-column: span 2;
    }

    .fx-carousel-slide {
        flex-basis: 100%;
    }
}

@media (max-width: 820px) {
    :root {
        --space: 70px;
    }

    .main-navigation ul {
        display: none;
    }

    .main-navigation ul.toggled {
        position: fixed;
        inset: 74px 16px auto 16px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: rgba(248, 251, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

    .menu-toggle {
        display: inline-block;
    }

    .header-cta {
        display: none;
    }

    .fx-hero-grid,
    .fx-impact-strip,
    .fx-card-row-3,
    .fx-steps-grid,
    .fx-benefits-grid,
    .fx-two-column,
    .fx-two-column-visual,
    .fx-contact-layout,
    .footer-widgets,
    .fx-form-grid {
        grid-template-columns: 1fr;
    }

    .fx-hero-copy,
    .fx-hero-card,
    .fx-impact-item,
    .fx-card-row-3 .fx-card,
    .fx-step-card,
    .fx-benefits-grid > .fx-feature-card,
    .fx-feature-card-large,
    .fx-two-column-copy,
    .fx-emphasis-card,
    .fx-tech-visual,
    .fx-contact-copy,
    .fx-form-panel,
    .brand-col,
    .links-col,
    .contact-col,
    .fx-step-card:nth-child(4),
    .fx-card-row-3 .fx-card:first-child,
    .fx-benefits-grid > .fx-feature-card:last-child {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }

    .site-header {
        padding: 14px 16px;
    }

    .fx-hero {
        padding-top: 38px;
    }

    .fx-hero-copy,
    .fx-video-shell,
    .fx-card,
    .fx-step-card,
    .fx-feature-card,
    .fx-emphasis-card,
    .fx-tech-visual,
    .fx-form-panel,
    .fx-cta-banner {
        padding: 22px;
    }

    .fx-hero-title {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 3.1rem);
    }

    .fx-hero-subtitle {
        max-width: 100%;
        font-size: clamp(1.12rem, 5.2vw, 1.5rem);
    }

    .fx-title {
        max-width: 100%;
        font-size: clamp(1.62rem, 7vw, 2.4rem);
    }

    .fx-cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fx-video-player-wrap {
        min-height: 230px;
    }

    .fx-video-carousel {
        padding: 14px 44px;
    }

    .fx-carousel-slide {
        flex-basis: 100%;
    }

    .fx-btn,
    .fx-hero-actions .fx-btn,
    .fx-cta-banner .fx-btn {
        width: 100%;
        min-height: 56px;
        justify-content: center;
    }

    .fx-faq-item {
        padding: 0 16px;
    }

    /* GLOBAL MOBILE OVERRIDES FOR CONSISTENCY */
    .fx-section-head .fx-title,
    .fx-section-head .fx-section-text,
    .fx-section-head .fx-kicker,
    .fx-hero-copy .fx-kicker,
    .fx-hero-copy .fx-hero-title,
    .fx-hero-copy .fx-hero-subtitle,
    .fx-hero-copy .fx-hero-text,
    .fx-contact-copy .fx-title,
    .fx-contact-copy .fx-section-text,
    .fx-contact-copy .fx-kicker {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .fx-chip-row {
        justify-content: center !important;
    }

    .fx-impact-strip,
    .fx-card-row,
    .fx-steps-grid,
    .fx-benefits-grid,
    .fx-contact-layout,
    .fx-two-column,
    .fx-two-column-visual,
    .fx-form-grid,
    .fx-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .fx-impact-item,
    .fx-card,
    .fx-step-card,
    .fx-feature-card,
    .fx-feature-card-large,
    .fx-hero-copy,
    .fx-hero-card,
    .fx-contact-copy,
    .fx-form-panel,
    .fx-emphasis-card {
        width: 100% !important;
        grid-column: span 1 !important;
        text-align: center !important;
    }

    .fx-bullet-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .fx-bullet-list li {
        padding-left: 0 !important;
    }

    .fx-bullet-list li::before {
        display: none !important;
    }

    .fx-list-item {
        text-align: center !important;
    }

    /* Carousel Fix */
    .fx-carousel-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .fx-video-controls-overlay .fx-video-icon-btn {
        width: 56px !important;
        height: 56px !important;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 40px, var(--container));
    }

    .fx-section {
        padding: 62px 0;
    }

    .fx-kicker {
        font-size: 0.68rem;
        margin-bottom: 12px;
    }

    .fx-hero-text,
    .fx-section-text,
    .fx-card p,
    .fx-step-card p,
    .fx-feature-card p,
    .fx-list-item span,
    .fx-bullet-list li,
    .fx-contact-points span,
    .faq-answer p {
        font-size: 0.95rem;
    }

    .fx-tech-visual,
    .fx-tech-canvas-container {
        min-height: 280px;
    }

    .fx-video-icon-btn {
        width: 36px;
        height: 36px;
    }

    .fx-carousel-nav {
        width: 34px;
        height: 34px;
    }

    .fx-audio-unlock {
        right: 20px;
        bottom: 20px;
        min-height: 48px;
        padding: 0 16px;
        font-size: 0.9rem;
    }

    .fx-carousel-prev {
        left: 8px;
    }

    .fx-carousel-next {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fx-reveal {
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   CONVERSION OPTIMIZATION: NEW ELEMENTS
   ============================================= */

/* --- Hero urgency kicker --- */
.fx-kicker-urgency {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-alt-soft) 100%);
    border-color: rgba(18, 53, 213, 0.32);
    color: var(--accent-dark);
    font-weight: 800;
}

/* --- Hero incentive note --- */
.fx-hero-incentive {
    margin: 12px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-alt-strong);
}

/* --- Trust Bar --- */
.fx-trust-bar {
    padding: 18px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 60%, #f0fff2 100%);
    border-top: 1px solid rgba(18, 53, 213, 0.1);
    border-bottom: 1px solid rgba(18, 53, 213, 0.1);
}

.fx-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}

.fx-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    color: var(--text-soft);
    white-space: nowrap;
}

.fx-trust-badge strong {
    color: var(--text);
}

.fx-trust-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .fx-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

@media (max-width: 820px) {
    .fx-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .fx-trust-badge {
        font-size: 0.85rem;
        white-space: normal;
        align-items: flex-start;
    }
    .fx-trust-icon {
        margin-top: 1px;
    }
    .fx-trust-badge:last-child {
        grid-column: span 2;
        margin: 0 auto;
    }
}

/* --- Kit card badge --- */
.fx-kit-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(18, 53, 213, 0.28);
    pointer-events: none;
}

/* --- Kit benefit list --- */
.fx-kit-benefit-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding: 0;
    text-align: left;
}

.fx-kit-benefit-list li {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.4;
}

/* --- Price crossed out --- */
.fx-price-original {
    display: inline-block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* --- Kit shipping note --- */
.fx-kit-shipping-note {
    margin: 0 0 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-alt-strong);
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.fx-compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.fx-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.95rem;
}

.fx-compare-table thead tr {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
}

.fx-compare-table thead th {
    padding: 16px 20px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: -0.01em;
}

.fx-compare-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.18s ease;
}

.fx-compare-table tbody tr:last-child {
    border-bottom: 0;
}

.fx-compare-table tbody tr:hover {
    background: var(--surface-muted);
}

.fx-compare-table tbody tr:nth-child(even) {
    background: linear-gradient(135deg, #f8fbff 0%, #f3fff4 100%);
}

.fx-compare-table td {
    padding: 14px 20px;
    color: var(--text-soft);
    vertical-align: middle;
}

.fx-compare-table td:first-child {
    font-weight: 600;
    color: var(--text);
}

.fx-compare-winner {
    background: linear-gradient(180deg, rgba(13, 147, 23, 0.07) 0%, rgba(13, 147, 23, 0.03) 100%) !important;
}

.fx-compare-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.fx-compare-yes {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-alt-strong);
    font-weight: 600;
}

.fx-compare-no {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #92520b;
    font-weight: 500;
}

/* =============================================
   FOMO STRIP
   ============================================= */
.fx-fomo-strip {
    padding: 22px 0;
    background: linear-gradient(135deg, #0d1f50 0%, #102136 60%, #082a0e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fx-fomo-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.fx-fomo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.fx-fomo-item strong {
    color: #ffffff;
}

.fx-fomo-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.fx-fomo-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .fx-fomo-items {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    .fx-fomo-item {
        padding: 6px 0;
    }
    .fx-fomo-divider {
        display: none;
    }
}

/* =============================================
   BOTTOM CTA HOOK
   ============================================= */
.fx-cta-hook {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.fx-bottom-cta .fx-cta-banner {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #082a0e 100%);
    border-color: rgba(255, 255, 255, 0.14);
}

.fx-bottom-cta .fx-title {
    color: #ffffff;
}

/* =============================================
   MATERIAL SYMBOLS - Trust Icon
   ============================================= */
.fx-trust-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--accent);
}

/* =============================================
   HERO PROFILE SELECTOR
   ============================================= */
.fx-profile-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.fx-profile-tab {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1.5px solid rgba(18, 53, 213, 0.22);
    background: rgba(255, 255, 255, 0.55);
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    backdrop-filter: blur(6px);
    letter-spacing: -0.01em;
}

.fx-profile-tab:hover {
    background: rgba(18, 53, 213, 0.07);
    color: var(--accent);
    border-color: var(--accent);
}

.fx-profile-tab.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(18, 53, 213, 0.28);
}

@media (max-width: 820px) {
    .fx-profile-selector { gap: 6px; }
    .fx-profile-tab { padding: 9px 18px; font-size: 0.86rem; }
}

/* =============================================
   MENSAJE MADRE
   ============================================= */
.fx-mensaje-madre {
    padding: 48px 0;
    background: linear-gradient(135deg, #f4f8ff 0%, #f0fff3 100%);
    border-top: 1px solid rgba(18, 53, 213, 0.08);
    border-bottom: 1px solid rgba(13, 147, 23, 0.1);
    text-align: center;
}

.fx-mensaje-madre-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    max-width: 70ch;
    margin: 0 auto;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

@media (max-width: 820px) {
    .fx-mensaje-madre { padding: 36px 0; }
    .fx-mensaje-madre-text { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
}

/* =============================================
   PRUEBA SOCIAL
   ============================================= */
.fx-prueba-social {
    padding: 28px 0;
    background: linear-gradient(135deg, #0d1f50 0%, #082a0e 100%);
    text-align: center;
}

.fx-prueba-social-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.35;
}

@media (max-width: 820px) {
    .fx-prueba-social { padding: 24px 0; }
    .fx-prueba-social-text { font-size: clamp(0.95rem, 4.5vw, 1.2rem); }
}

/* =============================================
   BENEFITS GRID - 7 items
   ============================================= */
.fx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fx-benefits-grid .fx-feature-card:first-child {
    grid-column: span 3;
}

@media (max-width: 1120px) {
    .fx-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fx-benefits-grid .fx-feature-card:first-child { grid-column: span 2; }
}

@media (max-width: 820px) {
    .fx-benefits-grid { grid-template-columns: 1fr; }
    .fx-benefits-grid .fx-feature-card:first-child { grid-column: span 1; }
}

/* =============================================
   EVAL MODAL - Select field
   ============================================= */
.fx-form select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.fx-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(18, 53, 213, 0.12);
}

.fx-modal-form .fx-field { margin-bottom: 14px; }
.fx-modal-form .fx-field:last-of-type { margin-bottom: 20px; }

/* =============================================
   COMPARE TABLE - Material Symbols icons
   ============================================= */
.fx-compare-yes .material-symbols-rounded,
.fx-compare-no .material-symbols-rounded {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 4px;
}

.fx-compare-yes .material-symbols-rounded { color: var(--accent-alt); }
.fx-compare-no .material-symbols-rounded  { color: #c97a00; }

/* =============================================
   KIT BENEFIT LIST - Material Symbols icons
   ============================================= */
.fx-kit-benefit-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fx-kit-benefit-list .material-symbols-rounded {
    font-size: 1rem;
    flex-shrink: 0;
}