/**
 * DIGIWEB — Homepage (charte graphique officielle)
 * Rouge #E41B4B · Bleu #003049 · Jaune #FFC107 · Inter
 */

.page-home {
    --fx-primary: var(--primary, #E41B4B);
    --fx-primary-dark: #c91639;
    --fx-secondary: var(--secondary, #003049);
    --fx-accent: var(--accent, #FFC107);
    --fx-light: var(--light, #F8F9FA);
    --fx-dark: var(--dark, #212529);
    --fx-muted: #6c757d;
    --fx-white: #ffffff;

    --fx-space-md: clamp(1.25rem, 2.5vw, 2rem);
    --fx-space-lg: clamp(2.5rem, 5vw, 4rem);
    --fx-space-xl: clamp(4rem, 8vw, 7rem);
    --fx-radius: 1rem;
    --fx-radius-lg: 1.25rem;
    --fx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --fx-shadow-red: 0 12px 40px rgba(228, 27, 75, 0.28);
    --fx-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);

    font-family: 'Inter', system-ui, sans-serif;
    color: var(--fx-dark);
    background: var(--fx-white);
}

.page-home main {
    overflow-x: clip;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4 {
    font-family: 'Inter', system-ui, sans-serif;
    text-wrap: balance;
}

/* Utilitaires layout & icônes */
.fx-container {
    max-width: 1200px;
}

.fx-container--narrow {
    max-width: 900px;
}

.fx-container--stack {
    position: relative;
    z-index: 2;
}

.fx-icon--primary {
    background: rgba(228, 27, 75, 0.1);
    color: #E41B4B;
}

.fx-icon--primary-soft {
    background: rgba(228, 27, 75, 0.08);
    color: #E41B4B;
}

.fx-icon--secondary {
    background: rgba(0, 48, 73, 0.08);
    color: #003049;
}

.fx-icon--accent {
    background: rgba(255, 193, 7, 0.15);
    color: #c99200;
}

.fx-icon--on-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #E41B4B;
}

.fx-icon--on-navy {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.fx-faq-title {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.fx-faq-cell--dark {
    background: #003049;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.fx-faq-cell--dark .fx-faq-title {
    color: #fff;
}

.fx-faq-cell--dark p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0;
}

.fx-faq-cell--gradient {
    background: linear-gradient(135deg, #fef7f9, #fff);
}

.fx-faq-bento {
    grid-auto-rows: minmax(180px, auto);
}

.fx-badge--navy {
    background: #003049;
}

.fx-btn--sm {
    font-size: 0.9rem;
    min-height: 48px;
    padding: 0 1.5rem;
}

.fx-proof-strip--center {
    justify-content: center;
    border: none;
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.fx-cta-links {
    margin-top: 2rem;
}

.fx-stage-dot--red { background: #ff5f57; }
.fx-stage-dot--yellow { background: #febc2e; }
.fx-stage-dot--green { background: #28c840; }

.fx-stage-body--compact {
    padding-top: 1.25rem;
}

.fx-terminal-warn {
    color: #FFC107;
}

.fx-terminal-ok {
    color: #28c840;
}

/* Navbar : charte digiweb.css (dégradé rouge) — pas d'override */

/* ===== Hero — dégradé rouge charte ===== */
.fx-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(5rem, 11vh, 7.5rem) 0 clamp(3rem, 7vh, 4.5rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(0, 48, 73, 0.45), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 48, 73, 0.25), transparent 50%),
        linear-gradient(135deg, #E41B4B 0%, #c91639 55%, #a81230 100%);
    color: var(--fx-white);
}

#fx-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.fx-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fx-space-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .fx-hero-layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.fx-hero-copy {
    max-width: 38rem;
}

@media (min-width: 992px) {
    .fx-hero-copy { text-align: left; }
}

.fx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fx-white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: var(--fx-space-md);
}

.fx-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fx-accent);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

.fx-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--fx-white);
    margin-bottom: var(--fx-space-md);
}

.fx-accent {
    color: var(--fx-accent);
    font-style: normal;
}

.fx-hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 34rem;
    margin-bottom: var(--fx-space-md);
    text-wrap: pretty;
}

.fx-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: var(--fx-space-md);
}

.fx-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--fx-primary);
    background: var(--fx-white);
    border: 2px solid var(--fx-white);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s var(--fx-ease-out), box-shadow 0.3s ease, background 0.25s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.fx-btn-primary:hover {
    transform: translateY(-3px);
    background: var(--fx-light);
    color: var(--fx-primary-dark);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.fx-btn-primary:focus-visible {
    outline: 3px solid var(--fx-accent);
    outline-offset: 3px;
}

.fx-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--fx-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fx-btn-ghost:hover {
    border-color: var(--fx-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--fx-white);
    transform: translateY(-2px);
}

/* Boutons sur fond clair */
.fx-section-light .fx-btn-primary {
    color: var(--fx-white);
    background: var(--fx-primary);
    border-color: var(--fx-primary);
    box-shadow: var(--fx-shadow-red);
}

.fx-section-light .fx-btn-primary:hover {
    background: var(--fx-primary-dark);
    border-color: var(--fx-primary-dark);
    color: var(--fx-white);
}

.fx-cta-section .fx-btn-primary {
    color: var(--fx-primary);
    background: var(--fx-white);
    border-color: var(--fx-white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.fx-cta-section .fx-btn-primary:hover {
    background: var(--fx-light);
    color: var(--fx-primary-dark);
}

.fx-section-light .fx-btn-ghost {
    color: var(--fx-dark);
    border-color: #dee2e6;
}

.fx-section-light .fx-btn-ghost:hover {
    border-color: var(--fx-primary);
    color: var(--fx-primary);
    background: rgba(228, 27, 75, 0.04);
}

.fx-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding-top: var(--fx-space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.fx-proof-strip strong {
    color: var(--fx-white);
    font-weight: 800;
}

.fx-proof-sep {
    color: rgba(255, 255, 255, 0.35);
}

/* Terminal — bleu marine charte */
.fx-hero-stage {
    position: relative;
    min-height: 320px;
    display: none;
}

@media (min-width: 992px) {
    .fx-hero-stage {
        display: block;
        min-height: 460px;
    }
}

.fx-stage-panel {
    position: absolute;
    border-radius: var(--fx-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 48, 73, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.fx-stage-main { inset: 8% 0 12% 8%; z-index: 2; }
.fx-stage-code { inset: 38% 12% 0 28%; z-index: 3; border-color: rgba(228, 27, 75, 0.35); }
.fx-stage-chip {
    inset: 0 18% auto auto;
    width: 130px;
    height: 48px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fx-accent);
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.fx-stage-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: ui-monospace, monospace;
}

.fx-stage-dot { width: 8px; height: 8px; border-radius: 50%; }

.fx-stage-body {
    padding: 1rem 1.1rem;
    font-family: ui-monospace, monospace;
    font-size: 0.72rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.fx-stage-body .kw { color: var(--fx-accent); }
.fx-stage-body .fn { color: #ff8fab; }
.fx-stage-body .str { color: #7dd3fc; }
.fx-stage-body .cm { color: rgba(255, 255, 255, 0.4); }

.fx-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

/* ===== Marquee — bleu marine ===== */
.fx-marquee-wrap {
    padding: 1rem 0;
    background: var(--fx-secondary);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.fx-marquee {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: fx-marquee 35s linear infinite;
}

.fx-marquee span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.fx-marquee span::before {
    content: '●';
    color: var(--fx-primary);
    margin-right: 0.6rem;
    font-size: 0.45rem;
}

@keyframes fx-marquee {
    to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.fx-section {
    padding: var(--fx-space-xl) 0;
    position: relative;
}

.fx-section-dark {
    background: var(--fx-secondary);
    color: var(--fx-white);
}

.fx-section-light {
    background: var(--fx-light);
    color: var(--fx-dark);
}

.fx-section-header {
    max-width: 42rem;
    margin-bottom: var(--fx-space-lg);
}

.fx-section-header--center {
    text-align: center;
    margin-inline: auto;
}

.fx-section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: inherit;
}

.fx-section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    text-wrap: pretty;
}

.fx-section-light .fx-section-desc { color: var(--fx-muted); }
.fx-section-dark .fx-section-desc { color: rgba(255, 255, 255, 0.72); }

/* ===== Bento ===== */
.fx-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
}

.fx-bento-cell {
    border-radius: var(--fx-radius-lg);
    border: 1px solid #e9ecef;
    padding: clamp(1.25rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
    background: var(--fx-white);
    transition: transform 0.4s var(--fx-ease-out), box-shadow 0.4s ease;
}

.fx-bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--fx-shadow-card);
}

.fx-bento-cell:nth-child(1) { grid-column: span 12; min-height: 200px; }
.fx-bento-cell:nth-child(2) { grid-column: span 12; }
.fx-bento-cell:nth-child(3) { grid-column: span 12; }
.fx-bento-cell:nth-child(4) { grid-column: span 12; }

@media (min-width: 768px) {
    .fx-bento-cell:nth-child(1) { grid-column: span 7; grid-row: span 2; }
    .fx-bento-cell:nth-child(2) { grid-column: span 5; }
    .fx-bento-cell:nth-child(3) { grid-column: span 5; }
    .fx-bento-cell:nth-child(4) { grid-column: span 7; }
}

.fx-bento-cell h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.fx-bento-cell p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 42ch;
}

.fx-bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.fx-bento-visual {
    position: absolute;
    right: -8%;
    bottom: -15%;
    width: 50%;
    opacity: 0.1;
    pointer-events: none;
}

/* Why bento — charte */
.fx-why-bento .fx-why-cell:nth-child(1) {
    background: var(--fx-white);
    border-color: #e9ecef;
}

.fx-why-bento .fx-why-cell:nth-child(2) {
    background: linear-gradient(145deg, #fef7f9, #ffffff);
    border-color: rgba(228, 27, 75, 0.12);
}

.fx-why-bento .fx-why-cell:nth-child(3) {
    background: var(--fx-secondary);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--fx-white);
}

.fx-why-bento .fx-why-cell:nth-child(3) h3 { color: var(--fx-white); }
.fx-why-bento .fx-why-cell:nth-child(3) p { color: rgba(255, 255, 255, 0.72); }

.fx-why-bento .fx-why-cell:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), #ffffff);
    border-color: rgba(255, 193, 7, 0.2);
}

@media (min-width: 768px) {
    .fx-why-bento .fx-why-cell:nth-child(1),
    .fx-why-bento .fx-why-cell:nth-child(2) { grid-column: span 6; }
    .fx-why-bento .fx-why-cell:nth-child(3) { grid-column: span 5; }
    .fx-why-bento .fx-why-cell:nth-child(4) { grid-column: span 7; }
}

.fx-bento-cell--light p { color: var(--fx-muted); }

/* ===== Cards ===== */
.fx-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--fx-radius-lg);
    border: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    transition: transform 0.35s ease, background 0.3s ease;
}

.fx-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.fx-section-light .fx-card {
    background: var(--fx-white);
    box-shadow: var(--fx-shadow-card);
    border: 1px solid #e9ecef;
}

.fx-section-light .fx-card:hover {
    box-shadow: 0 16px 40px rgba(228, 27, 75, 0.1);
}

.fx-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fx-section-dark .fx-card h4 { color: var(--fx-white); }
.fx-section-dark .fx-card p { color: rgba(255, 255, 255, 0.7); }

/* ===== IA — dégradé bleu charte ===== */
.fx-ai-section {
    background: linear-gradient(135deg, #003049 0%, #002438 50%, #001a2e 100%);
    overflow: hidden;
    color: var(--fx-white);
}

.fx-ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 75% 25%, rgba(228, 27, 75, 0.18), transparent 60%);
    pointer-events: none;
}

.fx-ai-section .fx-accent { color: var(--fx-accent); }

.fx-ai-section .fx-btn-primary {
    color: var(--fx-primary);
    background: var(--fx-white);
    border-color: var(--fx-white);
}

.fx-ai-section .fx-btn-primary:hover {
    background: var(--fx-light);
    color: var(--fx-primary-dark);
}

.fx-ai-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.fx-ai-rail::-webkit-scrollbar { display: none; }

.fx-ai-card {
    flex: 0 0 min(290px, 85vw);
    scroll-snap-align: start;
    padding: 1.5rem;
    border-radius: var(--fx-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, transform 0.35s ease;
}

.fx-ai-card:hover {
    border-color: rgba(228, 27, 75, 0.45);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.fx-ai-card i {
    color: var(--fx-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.fx-ai-card h4 {
    color: var(--fx-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.fx-ai-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* ===== Mosaic solutions ===== */
.fx-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 0.85rem;
}

.fx-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--fx-radius-lg);
    background: var(--fx-white);
    border: 1px solid #e9ecef;
    text-decoration: none;
    min-height: 140px;
    transition: all 0.35s var(--fx-ease-out);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.fx-tile:hover {
    border-color: rgba(228, 27, 75, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(228, 27, 75, 0.12);
}

.fx-tile i {
    font-size: 1.35rem;
    color: var(--fx-primary);
    margin-bottom: 0.65rem;
}

.fx-tile h4 {
    color: var(--fx-dark);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.fx-tile p {
    color: var(--fx-muted);
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0;
}

/* ===== Timeline ===== */
.fx-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.fx-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--fx-white);
    background: var(--fx-primary);
    margin-bottom: 1rem;
    box-shadow: var(--fx-shadow-red);
}

.fx-section-dark .fx-step h5 { color: var(--fx-white); }
.fx-section-dark .fx-step p { color: rgba(255, 255, 255, 0.68); }

/* ===== Blog ===== */
.fx-blog-card {
    background: var(--fx-white);
    border-radius: var(--fx-radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: var(--fx-shadow-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fx-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

/* ===== CTA — rouge charte ===== */
.fx-cta-section {
    padding: var(--fx-space-xl) 0;
    background: linear-gradient(135deg, #E41B4B 0%, #c91639 100%);
    color: var(--fx-white);
    position: relative;
    overflow: hidden;
}

.fx-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 120%, rgba(0, 48, 73, 0.35), transparent 65%);
    pointer-events: none;
}

.fx-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

.fx-cta-content h2 {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    color: var(--fx-white);
}

.fx-cta-section .fx-accent {
    color: var(--fx-accent);
}

.fx-cta-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    margin-bottom: 2rem;
}

.fx-cta-section .fx-proof-strip {
    border-top-color: rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.fx-cta-section .fx-btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--fx-white);
}

.fx-cta-section .fx-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--fx-white);
}

.fx-reveal { opacity: 1; transform: none; }

@media (min-width: 768px) {
    .fx-faq-bento .fx-bento-cell { grid-column: span 6; }
}

@media (max-width: 991px) {
    .fx-hero-copy { text-align: center; margin-inline: auto; }
    .fx-hero-desc, .fx-hero-cta, .fx-proof-strip { justify-content: center; }
    .fx-proof-strip { flex-direction: column; align-items: center; gap: 0.35rem; }
    .fx-proof-sep { display: none; }
    .fx-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .fx-marquee { animation: none; }
    .fx-bento-cell:hover,
    .fx-card:hover,
    .fx-tile:hover { transform: none; }
}

