/* ============================================================
   ARCH. FANTINATI — Conversion-Optimized Landing Page
   Colors:  Cobalt Blue #0047AB · Black #111 · White #FFF
   Font:    Inter (Google Fonts)
   Mobile-First · Psychology-Driven CTR
   ============================================================ */

/* ——— Custom Properties ——— */
:root {
    /* Brand — Electric Cobalt Blue */
    --primary: #0047AB;
    --primary-dark: #00326E;
    --primary-deeper: #001B3D;
    --primary-light: #0055FF;
    --primary-glow: rgba(0, 85, 255, 0.25);
    --primary-bg: #E8F0FE;

    /* Neutral */
    --black: #111111;
    --gray: #333333;
    --gray-600: #555555;
    --gray-400: #8899AA;
    --gray-200: #D5DBE1;
    --gray-100: #EDF0F3;
    --gray-50: #F7F8FA;
    --white: #FFFFFF;
    --warm-white: #FAFBFC;

    /* CTA — same blue family for cohesion */
    --cta: #0055FF;
    --cta-hover: #0047AB;
    --cta-glow: rgba(0, 85, 255, 0.25);
    --cta-light: #E8F0FE;

    /* Semantic */
    --success: #16A34A;
    --danger: #C53030;

    /* Typography */
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --section-py: clamp(3.5rem, 8vw, 6.5rem);
    --max-w: 1160px;

    /* Motion */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --dur: .4s;

    /* Radius */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-full: 9999px;
}

/* ——— Reset ——— */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
    -webkit-text-size-adjust: 100%
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

body {
    font-family: var(--font);
    color: var(--gray);
    line-height: 1.7;
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

.container {
    width: 90%;
    max-width: var(--max-w);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    color: var(--black);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.hide-mobile {
    display: none;
}

/* ——— Scroll Reveal ——— */
.anim {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}

.anim.visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.anim:nth-child(2) {
    transition-delay: .07s
}

.anim:nth-child(3) {
    transition-delay: .14s
}

.anim:nth-child(4) {
    transition-delay: .21s
}

/* ——— Utility ——— */
.accent-text {
    color: var(--cta);
}

.text-white {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-tag {
    display: inline-block;
    background: var(--cta-light);
    color: var(--primary);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}

.section-tag--light {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
}

.section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: .6rem;
}

.section-sub {
    color: var(--gray-600);
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cta);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    padding: 16px 28px;
    min-height: 56px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
    white-space: nowrap;
    position: relative;
}

.btn-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--cta-glow);
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-hero {
    padding: 18px 34px;
    font-size: 1rem;
    box-shadow: 0 4px 24px var(--cta-glow);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 24px var(--cta-glow);
    }

    50% {
        box-shadow: 0 4px 40px rgba(0, 85, 255, .45);
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-family: var(--font);
    font-weight: 600;
    font-size: .95rem;
    padding: 16px 28px;
    min-height: 56px;
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: var(--r-sm);
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all .25s var(--ease);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 2px 24px rgba(0, 71, 171, .08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--black);
}

.logo-sub {
    font-size: .62rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .07em;
    text-transform: uppercase;
}

.main-nav {
    display: none;
}

.nav-link {
    font-weight: 500;
    font-size: .88rem;
    color: var(--gray-600);
    padding: 4px 0;
    position: relative;
    transition: color .2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cta);
    border-radius: 1px;
    transition: width .3s var(--ease);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 18px;
    font-size: .82rem;
    min-height: 44px;
    display: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.main-nav.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.8rem 2rem;
    gap: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-bottom: 1px solid var(--gray-100);
}

.main-nav.open .nav-link {
    font-size: 1.05rem;
}

/* ============================================================
   HERO (PREMIUM)
   ============================================================ */
.hero {
    position: relative;
    background: var(--primary-deeper);
    color: var(--white);
    padding: calc(64px + 6rem) 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right 30%, rgba(0, 85, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 500;
    font-size: .8rem;
    padding: 8px 16px;
    border-radius: var(--r-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    display: inline-block;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

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

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.title-small {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.accent-gold {
    color: #FBBF24;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-ctas {
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
}

.hero-trusted-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: var(--r-md);
    padding: 2.5rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    min-height: 220px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-trusted-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-review-slide {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    pointer-events: none;
}

.hero-review-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

.hero-review-dots {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
    justify-content: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.hero-dot.active {
    background: #FBBF24;
    width: 24px;
    border-radius: 4px;
}

/* When there are many dots, show a progress indicator instead */
.hero-review-dots.compact-dots {
    gap: 4px;
    position: relative;
}

.hero-review-dots.compact-dots .hero-dot {
    width: 6px;
    height: 6px;
}

.hero-review-dots.compact-dots .hero-dot.active {
    width: 18px;
    background: #FBBF24;
    border-radius: 3px;
}

/* Fade out far-away dots to keep it clean */
.hero-review-dots.compact-dots .hero-dot.far {
    opacity: 0.3;
    width: 4px;
    height: 4px;
}

.trusted-header {
    margin-bottom: 1rem;
}

.stars {
    color: #FBBF24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trusted-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
    margin-top: 1rem;
}

.trusted-author {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    z-index: 5;
}

.trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 .5rem;
    overflow: visible;
}

.trust-sep {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-light);
    border-radius: var(--r-sm);
    flex-shrink: 0;
}

.trust-icon svg {
    stroke: var(--primary);
}

.trust-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-label strong {
    font-size: .82rem;
    color: var(--black);
    white-space: nowrap;
}

.trust-label span {
    font-size: .7rem;
    color: var(--gray-400);
    white-space: nowrap;
}

/* Profile image crossfade — dual-stack approach for Safari/WebKit compat */
.chi-image-stack {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.chi-image-stack .chi-portrait:first-child {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
    z-index: 2;
}

.chi-image-stack .chi-portrait:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
    z-index: 1;
}

.chi-image-stack .chi-portrait.hidden {
    opacity: 0;
}

/* ============================================================
   PAIN POINTS — Premium Editorial
   ============================================================ */
.pain-points {
    padding: var(--section-py) 0;
    background: var(--warm-white);
}

.cards-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .cards-editorial {
        grid-template-columns: 1fr;
    }
}

.card-ed {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    border-left: 4px solid var(--gray-200);
    padding: 0;
    overflow: hidden;
    transition: all .4s var(--ease);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    cursor: default;
}

@media (min-width: 769px) {
    .card-ed {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .card-ed:hover {
        border-left-color: var(--cta);
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0, 71, 171, 0.10);
    }

    .card-ed:hover .card-ed-icon {
        transform: scale(1.1);
    }
}

.card-ed-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 2rem 2rem 0;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.card-ed-icon--danger {
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
}

.card-ed-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 10px;
    border-radius: var(--r-full);
    margin-bottom: .6rem;
    background: rgba(220, 38, 38, 0.06);
    color: #DC2626;
}

.card-ed-label--success {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
}

.card-ed-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 2rem;
    flex: 1;
}

.card-ed h3 {
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: .8rem;
    letter-spacing: -0.01em;
}

.card-ed p {
    font-size: .93rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.card-ed-solution {
    background: rgba(22, 163, 74, 0.03);
    border-top: 1px solid rgba(22, 163, 74, 0.1);
    padding: 1.2rem 2rem 1.5rem;
}

.card-ed-solution p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   CHI SONO (EDITORIAL SPLIT)
   ============================================================ */
.chi-sono-split {
    padding: var(--section-py) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.chi-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .chi-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .chi-image-col {
        max-width: 320px;
        margin: 0 auto;
    }
}

.chi-image-col {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
}

.chi-portrait {
    width: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(105%);
}

.chi-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    font-weight: 800;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 71, 171, .3);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 5;
    border-radius: var(--r-lg) 0 0 0;
}

.chi-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chi-text-col .section-tag {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.chi-text-col h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.chi-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.chi-p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.chi-quote-ed {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    padding: 0 0 0 1.5rem;
    border-left: 4px solid var(--cta);
    margin-bottom: 2.5rem;
}

.chi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chi-list li {
    position: relative;
    padding-left: 24px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray);
}

.chi-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: .7rem;
    top: 4px;
}

/* Qualifications Dropdown */
.qualifications-dropdown {
    margin-top: 1.5rem;
}

.qual-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    cursor: pointer;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray);
    transition: all .25s var(--ease);
}

.qual-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--cta-light);
}

.qual-chevron {
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.qual-toggle.open .qual-chevron {
    transform: rotate(180deg);
}

.qual-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), opacity .3s var(--ease);
    opacity: 0;
}

.qual-content.open {
    max-height: 500px;
    opacity: 1;
}

.qual-list {
    padding-top: 1rem;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
    padding: var(--section-py) 0;
    background: linear-gradient(145deg, var(--primary-deeper) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: var(--cta);
    border-radius: 50%;
    filter: blur(140px);
    opacity: .06;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
}

.solution-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 255, .15);
    border-radius: var(--r-md);
    margin-bottom: 1.2rem;
}

.solution-icon svg {
    stroke: #93C5FD;
}

.solution-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.solution-result {
    display: inline-block;
    background: rgba(22, 163, 74, .12);
    color: #4ADE80;
    font-size: .74rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    margin-bottom: .8rem;
}

.solution-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-list li {
    font-size: .84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    padding-left: 18px;
    position: relative;
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cta);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    text-align: center;
}

.stat-val {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    display: inline;
    line-height: 1;
}

.stat-unit {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-name {
    margin-top: .3rem;
    font-size: .82rem;
    color: var(--gray-400);
}

/* ============================================================
   AVERAGE RATING
   ============================================================ */
.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.average-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FBBF24, #F59E0B, #FBBF24);
}

.avg-rating-score {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.avg-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.avg-out-of {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-400);
}

.avg-rating-stars {
    font-size: 1.5rem;
    color: #FBBF24;
    letter-spacing: 3px;
}

.avg-rating-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.avg-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.avg-count {
    font-size: .78rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--warm-white);
    overflow: hidden;
    text-align: left;
}

.testimonial-carousel {
    margin-top: 3rem;
    position: relative;
}

.testimonial-viewport {
    overflow: hidden;
    border-radius: var(--r-md);
}

.testimonial-track {
    display: flex;
    transition: transform .5s var(--ease);
    gap: 1.5rem;
}

.testimonial-card-ed {
    flex: 0 0 100%;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform .3s, box-shadow .3s;
    white-space: normal;
    display: flex;
    flex-direction: column;
}

.testimonial-card-ed:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    font-size: 1rem;
    color: #FBBF24;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Quote wrapper for clamping */
.testimonial-quote-wrapper {
    position: relative;
    flex: 1;
    min-height: 0;
}

.testimonial-quote-wrapper.clamped .testimonial-quote {
    max-height: 6.4em; /* ~4 lines at 1.6 line-height */
    overflow: hidden;
}

.testimonial-quote-wrapper.clamped::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5em;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white));
    pointer-events: none;
}

.testimonial-quote-wrapper.expanded .testimonial-quote {
    max-height: none;
}

.testimonial-quote-wrapper.expanded::after {
    display: none;
}

.btn-read-more {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 700;
    color: var(--cta);
    padding: 6px 0 0;
    transition: color .2s;
    flex-shrink: 0;
}

.btn-read-more:hover {
    color: var(--primary-dark);
}

.testimonial-quote-wrapper.clamped ~ .btn-read-more,
.testimonial-quote-wrapper.expanded ~ .btn-read-more {
    display: inline-block;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 2rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-author strong {
    display: block;
    font-size: .95rem;
    color: var(--black);
    font-weight: 700;
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--gray-400);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    transition: all .25s var(--ease);
    flex-shrink: 0;
    color: var(--gray);
}

.carousel-arrow:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--white);
}

.carousel-arrow:hover svg {
    stroke: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.carousel-dot.active {
    background: var(--cta);
    width: 24px;
    border-radius: 4px;
}

/* Google Review CTA */
.review-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-review-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    padding: 16px 28px;
    min-height: 56px;
    border-radius: var(--r-sm);
    transition: all .25s var(--ease);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-review-google::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .25s;
}

.btn-review-google:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(66, 133, 244, 0.45);
}

.btn-review-google:hover::before {
    opacity: 1;
}

.btn-review-google:active {
    transform: translateY(0);
}

.btn-review-arrow {
    transition: transform .25s var(--ease);
    flex-shrink: 0;
}

.btn-review-google:hover .btn-review-arrow {
    transform: translateX(4px);
}

/* Compact review cards (star-only, no quote) */
.testimonial-card--compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    text-align: center;
}

.testimonial-card--compact .testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Verified Badge */
.review-verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--success);
}

.review-verified-badge svg {
    stroke: var(--success);
    flex-shrink: 0;
}

/* Hero Review Link */
.hero-review-link {
    display: inline-block;
    margin-top: .8rem;
    font-size: .85rem;
    font-weight: 600;
    color: #FBBF24;
    text-decoration: none;
    transition: opacity .2s;
}

.hero-review-link:hover {
    opacity: .8;
}

.hero-review-placeholder-inline {
    text-align: center;
    padding: 1rem 0;
}

/* ============================================================
   MULTI-STEP LEAD FORM
   ============================================================ */
.form-section {
    padding: var(--section-py) 0;
    background: linear-gradient(145deg, var(--primary-deeper) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -80px;
    width: 440px;
    height: 440px;
    background: var(--cta);
    border-radius: 50%;
    filter: blur(140px);
    opacity: .06;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.form-copy {
    color: var(--white);
    text-align: center;
}

.form-copy h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.form-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 60, 60, .12);
    border: 1px solid rgba(255, 60, 60, .2);
    color: #FCA5A5;
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
}

.scarcity-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
}

.form-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    text-align: left;
}

.form-benefits svg {
    flex-shrink: 0;
    stroke: #93C5FD;
    width: 20px;
    height: 20px;
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    overflow: hidden;
}

/* Progress Bar */
.form-progress {
    height: 4px;
    background: var(--gray-100);
    width: 100%;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cta), var(--primary-light));
    border-radius: 0 4px 4px 0;
    transition: width .4s var(--ease);
}

.form-step-count {
    padding: 1.2rem 1.5rem .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-step-count #stepLabel {
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .02em;
}

.form-step-count #stepContext {
    font-size: .72rem;
    color: var(--gray-400);
}

/* Steps */
.form-step {
    display: none;
    padding: 2rem 1.5rem 1.8rem;
    text-align: center;
}

.form-step.active {
    display: block;
    animation: stepIn .4s var(--ease);
}

.form-step.active.slide-back {
    animation: stepInBack .4s var(--ease);
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes stepInBack {
    from {
        opacity: 0;
        transform: translateX(-24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.step-icon {
    font-size: 2.8rem;
    margin-bottom: .8rem;
    animation: popIn .5s var(--ease) forwards;
    animation-delay: .1s;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.step-heading {
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 800;
    margin-bottom: 2rem;
}

.step-question-static {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: left;
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--gray-400);
    font-size: 1.05rem;
    pointer-events: none;
    transition: all .25s var(--ease);
    background: var(--white);
    padding: 0 4px;
    border-radius: 4px;
}

.step-input {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--r-sm);
    font-size: 1.05rem;
    font-family: var(--font);
    color: var(--gray);
    background: var(--white);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    min-height: 56px;
    -webkit-appearance: none;
    appearance: none;
}

.step-input:focus {
    border-color: var(--cta);
    box-shadow: 0 0 0 4px rgba(0, 85, 255, .12);
}

.step-input.err {
    border-color: var(--danger);
    background: #FEF2F2;
    animation: shake .4s var(--ease);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }
}

.select-styled {
    cursor: pointer;
    padding-right: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.select-styled:focus {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230055FF" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
}

.select-label {
    background: var(--white);
    z-index: 2;
}

.step-input:focus~.floating-label,
.step-input:not(:placeholder-shown)~.floating-label,
.select-styled:not([value=""])~.floating-label {
    top: -10px;
    left: 12px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--cta);
}


/* Choice Buttons (Riscaldamento step) */
.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.5rem 1rem;
    min-height: 110px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-md);
    cursor: pointer;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 600;
    color: var(--gray);
    transition: all .25s var(--ease);
}

.choice-btn svg {
    stroke: var(--gray-400);
    transition: stroke .25s;
}

.choice-btn:hover {
    border-color: var(--cta);
    background: var(--cta-light);
    color: var(--primary);
}

.choice-btn:hover svg {
    stroke: var(--primary);
}

.choice-btn.selected {
    border-color: var(--cta);
    background: var(--cta-light);
    color: var(--primary);
    transform: scale(.97);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, .12);
}

.choice-btn.selected svg {
    stroke: var(--primary);
}

/* Form Nav */
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-400);
    padding: 12px 8px;
    transition: color .2s;
}

.btn-back svg {
    stroke: var(--gray-400);
    transition: stroke .2s;
}

.btn-back:hover {
    color: var(--black);
}

.btn-back:hover svg {
    stroke: var(--black);
}

.btn-next {
    flex: 1;
}

.btn-submit {
    flex: 1;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.f-disclaimer {
    text-align: center;
    font-size: .75rem;
    color: var(--gray-400);
    padding: .8rem 1.5rem 1.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary-deeper);
    color: rgba(255, 255, 255, .55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-brand p {
    font-size: .86rem;
    line-height: 1.65;
    max-width: none;
    margin-top: .8rem;
}

.footer-brand .logo-icon {
    color: var(--white);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo {
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.footer-col a,
.footer-col span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.footer-col a:hover {
    color: #93C5FD;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 1.2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: .74rem;
    color: rgba(255, 255, 255, .3);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: none;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .1);
    gap: 10px;
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.sticky-cta.visible {
    display: flex;
    transform: translateY(0);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .88rem;
    border-radius: var(--r-sm);
    min-height: 56px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .2s var(--ease);
}

.sticky-btn--call {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--gray-200);
    padding: 0 16px;
    flex-shrink: 0;
}

.sticky-btn--call svg {
    stroke: var(--black);
}

.sticky-btn--quote {
    background: var(--cta);
    color: var(--white);
    padding: 0 20px;
    flex: 1;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.sticky-btn--quote:hover {
    background: var(--cta-hover);
}



/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .hide-mobile {
        display: inline;
    }

    .nav-container {
        height: 68px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.8rem;
    }

    .main-nav.open {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border: none;
        background: none;
    }

    .btn-nav {
        display: inline-flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero {
        padding: calc(68px + 4rem) 0 5rem;
        min-height: 85vh;
    }

    .hero-ctas {
        flex-wrap: nowrap;
    }

    .hero-ctas .btn-hero,
    .hero-ctas .btn-outline {
        width: auto;
        max-width: none;
    }

    .hero-scroll {
        display: block;
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        opacity: .35;
    }

    .hero-scroll__line {
        width: 1px;
        height: 44px;
        background: linear-gradient(to bottom, var(--white), transparent);
        animation: pulse-line 2.2s ease-in-out infinite;
    }

    @keyframes pulse-line {

        0%,
        100% {
            opacity: .25;
            transform: scaleY(.5);
            transform-origin: top;
        }

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

    .trust-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        gap: 2rem;
    }

    .trust-item {
        transition: transform .25s var(--ease);
    }

    .trust-item:hover {
        transform: translateY(-2px);
    }

    .trust-sep {
        display: block;
        width: 1px;
        height: 28px;
        background: var(--gray-200);
        flex-shrink: 0;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .card {
        padding: 2.2rem 1.8rem;
    }

    .chi-layout {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
        align-items: flex-start;
    }

    .chi-photo {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }

    .chi-credentials {
        margin: 0;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 2.4rem 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .testimonial-card-ed {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .form-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

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

    .form-benefits {
        align-items: flex-start;
    }

    .form-step {
        padding: 1.2rem 2rem 2rem;
    }

    .form-step-count {
        padding: 1.5rem 2rem .5rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .footer-brand .logo {
        justify-content: flex-start;
    }

    .footer-brand p {
        max-width: 270px;
    }

    .sticky-cta {
        display: none !important;
    }


}

/* ============================================================
   RESPONSIVE — Large Desktop (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
    :root {
        --max-w: 1200px;
    }

    .hero {
        min-height: 92vh;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}