/* ===================================================================
   DSA Compliance · Canal Anónimo · Restyling 2026
   -------------------------------------------------------------------
   Reemplaza visualmente la plantilla "Butterfly" antigua.
   Se carga DESPUÉS de assets/css/style.css para sobreescribir.
   No se borra nada del CSS antiguo: si algo se ve raro, basta con
   no enlazar este archivo y vuelve al estado anterior.
   =================================================================== */

:root {
    --dsa-primary: #6d28d9;        /* violeta corporativo */
    --dsa-primary-600: #5b21b6;
    --dsa-primary-50: #f5f3ff;
    --dsa-secondary: #1e40af;      /* azul cumplimiento */
    --dsa-accent: #059669;         /* esmeralda (acento puntual) */
    --dsa-text: #0f172a;
    --dsa-text-soft: #475569;
    --dsa-text-mute: #64748b;
    --dsa-surface: #ffffff;
    --dsa-bg: #fafafb;
    --dsa-bg-soft: #f4f4f7;
    --dsa-border: rgba(15, 23, 42, .08);
    --dsa-border-strong: rgba(15, 23, 42, .14);
    --dsa-shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
    --dsa-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, .04), 0 10px 24px -4px rgba(15, 23, 42, .08);
    --dsa-shadow-lg: 0 12px 24px -8px rgba(15, 23, 42, .12), 0 24px 48px -16px rgba(109, 40, 217, .15);
    --dsa-radius-sm: 10px;
    --dsa-radius: 16px;
    --dsa-radius-lg: 22px;
}

/* Tipografía única */
body, html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    color: var(--dsa-text);
    background: var(--dsa-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* ===========================
   HEADER fijo con blur al scroll
   =========================== */
#header {
    background: rgba(255, 255, 255, .82) !important;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--dsa-border);
    box-shadow: none !important;
    padding: 6px 0 !important;
    transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
    height: auto !important;
}
#header.dsa-scrolled {
    padding: 4px 0 !important;
    box-shadow: var(--dsa-shadow-sm) !important;
    background: rgba(255, 255, 255, .94) !important;
}
#header .container {
    min-height: 0 !important;
}
#header .logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    cursor: pointer;
}
#header .logo img {
    max-height: 64px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: max-height .25s ease;
}
#header.dsa-scrolled .logo img {
    max-height: 52px;
}
@media (max-width: 768px) {
    #header .logo img { max-height: 50px; }
    #header.dsa-scrolled .logo img { max-height: 44px; }
}

/* Navbar pill items */
#header .navbar .main-menu {
    gap: .5rem;
    align-items: center;
    margin: 0;
}
#header .navbar .main-menu > li {
    margin: 0 !important;
}

/* ===========================
   Avatar del usuario logueado — redondo, sin rectangulo de fondo
   =========================== */
#header .rz-profile-menu,
#header .rz-profile-menu .rz-profile-menu-user,
.rz-profile-menu,
.rz-profile-menu .rz-profile-menu-user {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 50% !important;
}
.rz-profile-menu .rz-profile-menu-user > img,
.rz-profile-menu img,
.rz-profile-menu .rz-image,
.rz-profile-menu .rz-gravatar {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
    transition: transform .15s ease, box-shadow .15s ease;
    background: #fff;
}
.rz-profile-menu:hover img,
.rz-profile-menu:hover .rz-image {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
}
/* Quita la flecha por defecto fea de Radzen, la sustituimos por una sutil */
.rz-profile-menu .rzi-chevron-down {
    color: var(--dsa-text-mute) !important;
    font-size: 1rem !important;
    margin-left: .25rem !important;
}

/* ===========================
   Menu desplegable del avatar — cards verticales modernas
   =========================== */
.rz-profile-menu-content,
.rz-profile-menu .rz-menu {
    background: #fff !important;
    border: 1px solid var(--dsa-border) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, .15), 0 4px 12px rgba(15, 23, 42, .06) !important;
    padding: .5rem !important;
    min-width: 220px !important;
    margin-top: .5rem !important;
    overflow: hidden !important;
    flex-direction: column !important;
}
.rz-profile-menu-content .rz-menu-item,
.rz-profile-menu .rz-menu .rz-menu-item,
.rz-profile-menu-content li {
    display: block !important;
    width: 100% !important;
    margin: .15rem 0 !important;
}
.rz-profile-menu-content .rz-navigation-item-wrapper,
.rz-profile-menu .rz-navigation-item-wrapper,
.rz-profile-menu .rz-navigation-item-link {
    display: flex !important;
    align-items: center !important;
    gap: .75rem !important;
    width: 100% !important;
    padding: .65rem .85rem !important;
    border-radius: 10px !important;
    color: var(--dsa-text) !important;
    font-weight: 500 !important;
    font-size: .9rem !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    background: transparent !important;
}
.rz-profile-menu-content .rz-navigation-item-wrapper:hover,
.rz-profile-menu .rz-navigation-item-wrapper:hover,
.rz-profile-menu .rz-navigation-item-link:hover {
    background: var(--dsa-primary-50) !important;
    color: var(--dsa-primary) !important;
    transform: translateX(2px);
}
.rz-profile-menu-content .rz-navigation-item-icon,
.rz-profile-menu .rz-navigation-item-icon {
    color: var(--dsa-text-mute) !important;
    font-size: 1.15rem !important;
    transition: color .15s ease;
}
.rz-profile-menu-content .rz-navigation-item-wrapper:hover .rz-navigation-item-icon,
.rz-profile-menu .rz-navigation-item-wrapper:hover .rz-navigation-item-icon {
    color: var(--dsa-primary) !important;
}

/* Botón "Login" del header (no autenticado) */
#header .rz-button.rz-primary {
    background: var(--dsa-primary) !important;
    border-color: var(--dsa-primary) !important;
    border-radius: 999px !important;
    padding: .5rem 1.1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(109, 40, 217, .25) !important;
}
#header .rz-button.rz-primary:hover {
    background: var(--dsa-primary-600) !important;
    transform: translateY(-1px);
}

/* ===========================
   HERO compacto
   =========================== */
#hero {
    min-height: 0 !important;
    height: auto !important;
    background: linear-gradient(135deg, #fafafb 0%, #f5f3ff 60%, #eef2ff 100%) !important;
    padding: 100px 0 24px !important;
    position: relative;
    overflow: hidden;
}
/* Sutil patrón decorativo */
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(109, 40, 217, .08), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(30, 64, 175, .07), transparent 45%);
    pointer-events: none;
}
#hero .container { position: relative; z-index: 1; }

#hero h1, #hero p[style] {
    font-family: 'Inter', sans-serif !important;
    color: var(--dsa-text) !important;
    font-weight: 800 !important;
    font-size: clamp(2rem, 4vw, 3.25rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dsa-text) 0%, var(--dsa-primary) 60%, var(--dsa-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* Contenedor de la imagen — altura fija, sin marco blanco, integrado en el gradiente del hero */
#hero .hero-img {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 240px;
    max-height: 240px;
    overflow: hidden;
    background: transparent !important;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}
#hero .hero-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--dsa-radius-lg);
    box-shadow: var(--dsa-shadow-lg);
    background: transparent;
    display: block;
}

@media (max-width: 991px) {
    #hero .hero-img {
        height: 180px;
        max-height: 180px;
        margin-bottom: 1rem;
    }
}

/* ===========================
   CTAs principales (hero-cards clicables)
   =========================== */
.dsa-cta-section {
    padding: 32px 0 16px !important;
    background: transparent !important;
}
.dsa-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.dsa-cta-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    padding: 1.5rem 1.5rem 1.4rem;
    background: var(--dsa-surface);
    border: 1px solid var(--dsa-border);
    border-radius: var(--dsa-radius);
    box-shadow: var(--dsa-shadow-sm);
    cursor: pointer;
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.dsa-cta-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--dsa-primary), var(--dsa-secondary));
    opacity: 0;
    transition: opacity .2s ease;
}
.dsa-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dsa-shadow-lg);
    border-color: rgba(109, 40, 217, .25);
}
.dsa-cta-card:hover::after { opacity: 1; }

.dsa-cta-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--dsa-primary-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dsa-primary);
    font-size: 1.55rem;
    margin-bottom: .4rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.dsa-cta-card:hover .dsa-cta-icon {
    background: var(--dsa-primary);
    color: #fff;
    transform: scale(1.05);
}
.dsa-cta-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dsa-text);
    margin: 0;
}
.dsa-cta-desc {
    font-size: .92rem;
    line-height: 1.5;
    color: var(--dsa-text-mute);
    margin: 0;
    flex: 1;
}
.dsa-cta-arrow {
    margin-top: .3rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--dsa-primary);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: gap .2s ease;
}
.dsa-cta-card:hover .dsa-cta-arrow { gap: .6rem; }

/* Variantes de color */
.dsa-cta-card.dsa-variant-blue .dsa-cta-icon {
    background: #eff6ff;
    color: var(--dsa-secondary);
}
.dsa-cta-card.dsa-variant-blue:hover .dsa-cta-icon {
    background: var(--dsa-secondary);
    color: #fff;
}
.dsa-cta-card.dsa-variant-blue .dsa-cta-arrow { color: var(--dsa-secondary); }
.dsa-cta-card.dsa-variant-blue::after { background: linear-gradient(90deg, var(--dsa-secondary), #3b82f6); }

.dsa-cta-card.dsa-variant-green .dsa-cta-icon {
    background: #ecfdf5;
    color: var(--dsa-accent);
}
.dsa-cta-card.dsa-variant-green:hover .dsa-cta-icon {
    background: var(--dsa-accent);
    color: #fff;
}
.dsa-cta-card.dsa-variant-green .dsa-cta-arrow { color: var(--dsa-accent); }
.dsa-cta-card.dsa-variant-green::after { background: linear-gradient(90deg, var(--dsa-accent), #10b981); }

/* ===========================
   Sección "About" / 3 cards informativas
   =========================== */
#services.services {
    background: transparent !important;
    padding: 24px 0 60px !important;
}
#services .section-title {
    text-align: center;
    margin: 1.5rem auto 2.5rem;
    max-width: 920px;
    padding: 0 1rem;
}
#services .section-title::before { display: none !important; }
.dsa-section-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .85rem;
    margin-bottom: 1rem;
    background: var(--dsa-primary-50);
    color: var(--dsa-primary);
    border: 1px solid rgba(109, 40, 217, .15);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.dsa-section-pill i { font-size: .9rem; }
#services .section-title h1,
#services .section-title h2,
#services .section-title h3 {
    font-weight: 700 !important;
    color: var(--dsa-text) !important;
    letter-spacing: -0.02em !important;
    font-size: 1.6rem !important;
    margin-bottom: .85rem !important;
    line-height: 1.25 !important;
}
#services .section-title p {
    color: var(--dsa-text-soft) !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    max-width: 820px;
    margin: 0 auto !important;
    font-weight: 400 !important;
    letter-spacing: -0.005em;
}
#services .section-title p + p { margin-top: .75rem !important; }
/* Si el HTML del cliente viene como texto plano sin <p>, el contenedor .section-title igual lo formatea bien */
#services .section-title > *:first-child { margin-top: 0; }
/* Igualar altura entre las 3 tarjetas: flex column + flex:1 en la descripción */
#services .row { align-items: stretch; }
#services .col-lg-4 { display: flex; }
#services .icon-box {
    background: var(--dsa-surface) !important;
    border: 1px solid var(--dsa-border) !important;
    border-radius: var(--dsa-radius) !important;
    box-shadow: var(--dsa-shadow-sm) !important;
    padding: 1.75rem 1.5rem !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
#services .icon-box .description { flex: 1 1 auto; }
#services .icon-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--dsa-shadow-md) !important;
    border-color: rgba(109, 40, 217, .2) !important;
}
#services .icon-box .icon {
    width: 56px; height: 56px;
    background: var(--dsa-primary-50) !important;
    border-radius: 14px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem !important;
    transition: background .2s ease;
}
#services .icon-box .icon i {
    font-size: 1.6rem;
    color: var(--dsa-primary) !important;
}
#services .icon-box:hover .icon {
    background: var(--dsa-primary) !important;
}
#services .icon-box:hover .icon i { color: #fff !important; }
#services .icon-box .title,
#services .icon-box h4.title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: .55rem !important;
}
#services .icon-box .title a {
    color: var(--dsa-text) !important;
    text-decoration: none !important;
}
#services .icon-box .description {
    color: var(--dsa-text-soft) !important;
    line-height: 1.6 !important;
    font-size: .94rem !important;
}

/* ===========================
   Footer profesional
   =========================== */
#footer.dsa-footer {
    background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%) !important;
    border-top: 1px solid var(--dsa-border) !important;
    padding: 48px 0 24px !important;
    color: var(--dsa-text-soft) !important;
    font-size: .9rem;
    margin-top: 40px;
}
#footer.dsa-footer .container {
    max-width: 1180px;
}

/* Bloque superior con marca + badges de cumplimiento */
.dsa-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: start;
}
.dsa-footer-brand {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.dsa-footer-logo {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}
.dsa-footer-tagline {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--dsa-text-mute);
    max-width: 380px;
    margin: 0;
}

/* Grid de badges de cumplimiento — auto-fit con ancho mínimo para que no se corten */
.dsa-footer-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: .75rem;
}
.dsa-trust-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: #ffffff;
    border: 1px solid var(--dsa-border);
    border-radius: 12px;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.dsa-trust-badge:hover {
    border-color: rgba(109, 40, 217, .25);
    transform: translateY(-1px);
    box-shadow: var(--dsa-shadow-sm);
}
.dsa-trust-badge i {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--dsa-primary-50);
    color: var(--dsa-primary);
    font-size: 1.15rem;
}
.dsa-trust-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.dsa-trust-badge strong {
    font-size: .82rem;
    font-weight: 700;
    color: var(--dsa-text);
    letter-spacing: -0.01em;
}
.dsa-trust-badge span {
    font-size: .72rem;
    color: var(--dsa-text-mute);
    font-weight: 400;
    margin-top: 2px;
}

/* Separador */
.dsa-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dsa-border-strong), transparent);
    margin: 28px 0 18px;
}

/* Bloque inferior */
.dsa-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .82rem;
    color: var(--dsa-text-mute);
}
.dsa-footer-legal strong {
    color: var(--dsa-text);
    font-weight: 600;
}
.dsa-footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem;
}
.dsa-footer-links a {
    color: var(--dsa-text-soft);
    text-decoration: none;
    padding: .25rem .35rem;
    border-radius: 6px;
    transition: color .15s ease, background .15s ease;
    cursor: pointer;
}
.dsa-footer-links a:hover {
    color: var(--dsa-primary);
    background: var(--dsa-primary-50);
}
.dsa-footer-sep {
    color: var(--dsa-border-strong);
    user-select: none;
}
.dsa-footer-poweredby {
    font-size: .78rem;
    color: var(--dsa-text-mute);
}
.dsa-footer-poweredby strong {
    color: var(--dsa-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .dsa-footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .dsa-footer-trust {
        grid-template-columns: 1fr;
    }
    .dsa-footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* ===========================
   Back to top — discreto
   =========================== */
.back-to-top {
    background: var(--dsa-primary) !important;
    color: #fff !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    box-shadow: var(--dsa-shadow-md);
    border: none !important;
}
.back-to-top:hover {
    background: var(--dsa-primary-600) !important;
    transform: translateY(-2px);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
    #hero {
        min-height: auto !important;
        padding: 100px 0 32px !important;
    }
    #hero h1, #hero p[style] {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
    }
    .dsa-cta-section { padding: 16px 0 8px !important; }
}

/* ===========================
   Bloque "se requiere login" (cuando company no permite anónimo)
   =========================== */
.dsa-login-required {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--dsa-surface);
    border: 1px solid var(--dsa-border);
    border-radius: var(--dsa-radius);
    box-shadow: var(--dsa-shadow-sm);
    max-width: 540px;
    margin: 0 auto;
}
.dsa-login-required > i.bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: var(--dsa-primary-50);
    color: var(--dsa-primary);
    border-radius: 18px;
    font-size: 1.8rem;
}
.dsa-login-required h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dsa-text);
    margin: 0 0 .5rem;
}
.dsa-login-required p {
    color: var(--dsa-text-soft);
    margin: 0 auto 1.25rem;
    line-height: 1.6;
    max-width: 420px;
}
.dsa-login-required .rz-button.rz-primary {
    background: var(--dsa-primary) !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: .65rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(109, 40, 217, .25) !important;
}
.dsa-login-required .rz-button.rz-primary:hover {
    background: var(--dsa-primary-600) !important;
    transform: translateY(-1px);
}

/* ===========================
   Micro-animaciones (fade-up con stagger por elemento)
   =========================== */
@keyframes dsaFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dsa-fade-up {
    opacity: 0;
    animation: dsaFadeUp .55s cubic-bezier(.22,.61,.36,1) forwards;
}
.dsa-delay-1 { animation-delay: .05s; }
.dsa-delay-2 { animation-delay: .18s; }
.dsa-delay-3 { animation-delay: .30s; }
.dsa-delay-4 { animation-delay: .42s; }

/* CTA cards también animadas escalonadas dentro de su grid */
.dsa-cta-grid > .dsa-cta-card {
    opacity: 0;
    animation: dsaFadeUp .5s cubic-bezier(.22,.61,.36,1) forwards;
}
.dsa-cta-grid > .dsa-cta-card:nth-child(1) { animation-delay: .20s; }
.dsa-cta-grid > .dsa-cta-card:nth-child(2) { animation-delay: .30s; }
.dsa-cta-grid > .dsa-cta-card:nth-child(3) { animation-delay: .40s; }

/* Tarjetas informativas también escalonadas */
#services .row > [class*="col-"] > .icon-box {
    opacity: 0;
    animation: dsaFadeUp .5s cubic-bezier(.22,.61,.36,1) forwards;
}
#services .row > [class*="col-"]:nth-child(1) > .icon-box { animation-delay: .35s; }
#services .row > [class*="col-"]:nth-child(2) > .icon-box { animation-delay: .45s; }
#services .row > [class*="col-"]:nth-child(3) > .icon-box { animation-delay: .55s; }

/* Respeta la preferencia de reducción de movimiento del SO */
@media (prefers-reduced-motion: reduce) {
    .dsa-fade-up,
    .dsa-cta-grid > .dsa-cta-card,
    #services .row > [class*="col-"] > .icon-box {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
}
