/* ============================================
   EXAGROUP - Styles personnalisés
   ============================================ */

/* Navbar scroll effect */
.navbar-glass.scrolled {
    background: rgba(2, 6, 23, 0.78) !important;
    border-color: rgba(148, 163, 184, 0.28) !important;
    box-shadow: 0 26px 70px -38px rgba(2, 6, 23, 0.95), 0 12px 30px -20px rgba(14, 165, 233, 0.5) !important;
}

/* Navbar service accents */
.exa-nav-service-btn:hover,
.exa-nav-service-btn:focus-visible {
    color: #ffffff;
    background: rgb(var(--nav-accent) / 0.14);
    box-shadow: inset 0 0 0 1px rgb(var(--nav-accent) / 0.3), 0 18px 30px -30px rgb(var(--nav-accent) / 0.9);
}

.exa-nav-service-active-surface {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 0 1px rgb(var(--nav-accent) / 0.48), 0 14px 26px -26px rgb(var(--nav-accent) / 0.85);
}

.exa-nav-service-active-line {
    background: linear-gradient(90deg, transparent, rgb(var(--nav-accent) / 0.94), transparent);
}

.exa-nav-service-chevron {
    color: rgb(var(--nav-accent) / 0.82);
}

.exa-nav-service-subitem:hover,
.exa-nav-service-subitem:focus-visible {
    background: rgb(var(--nav-accent) / 0.12);
}

.exa-nav-service-subicon {
    color: rgb(var(--nav-accent) / 0.9);
}

.exa-nav-mobile-service-btn:hover,
.exa-nav-mobile-service-btn:focus-visible {
    color: #ffffff;
    background: rgb(var(--nav-accent) / 0.15);
    box-shadow: inset 0 0 0 1px rgb(var(--nav-accent) / 0.28);
}

.exa-nav-mobile-service-active {
    background: rgb(var(--nav-accent) / 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 0 0 1px rgb(var(--nav-accent) / 0.5), 0 18px 32px -30px rgb(var(--nav-accent) / 0.9);
}

.exa-nav-mobile-service-list {
    border-left-color: rgb(var(--nav-accent) / 0.62);
}

.exa-nav-mobile-service-subitem:hover,
.exa-nav-mobile-service-subitem:focus-visible {
    background: rgb(var(--nav-accent) / 0.12);
}

.exa-nav-mobile-service-subicon {
    color: rgb(var(--nav-accent) / 0.86);
}

/* Fan Stack Animation (Hero Images) */
.fan-stack {
    position: relative;
    width: min(420px, 100%);
    margin: 0 auto;
    perspective: 1200px;
}

.fan-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(var(--fan-x)) rotate(var(--fan-rot)) scale(var(--fan-scale));
    transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1), z-index 800ms;
    will-change: transform;
}

.fan-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 25px 60px -35px rgba(15, 23, 42, 0.6);
    animation: fanFloat 6s ease-in-out infinite;
}

.fan-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fan-card-1 {
    --fan-x: -18%;
    --fan-rot: -10deg;
    --fan-scale: 0.92;
    z-index: 1;
}

.fan-card-2 {
    --fan-x: 0%;
    --fan-rot: 0deg;
    --fan-scale: 1;
    z-index: 3;
}

.fan-card-3 {
    --fan-x: 18%;
    --fan-rot: 10deg;
    --fan-scale: 0.9;
    z-index: 2;
}

.fan-card-1 .fan-card-inner {
    animation-delay: 0s;
}

.fan-card-2 .fan-card-inner {
    animation-delay: 1s;
}

.fan-card-3 .fan-card-inner {
    animation-delay: 2s;
}

@keyframes fanFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.card-hover {
    transition: all 0.5s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
}

/* Icon rotation on hover */
.icon-rotate:hover .icon {
    transform: scale(1.1) rotate(3deg);
}

/* Button gradient animation */
.btn-gradient {
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2c42da, #0c155a);
    transition: opacity 0.3s ease;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0c155a, #2c42da);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover::after {
    opacity: 1;
}

.btn-gradient span {
    position: relative;
    z-index: 10;
}

/* Form inputs */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #2c42da;
    box-shadow: 0 0 0 3px rgba(44, 66, 218, 0.1);
}

/* Star rating */
.star-rating {
    color: #facc15;
}

/* Testimonial card */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Specification card border */
.spec-card h3 {
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #2c42da, #0c155a) 1;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Metrics section (homepage) */
.exa-metrics-section {
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(14, 165, 233, 0.2), transparent 60%),
        radial-gradient(1000px 450px at 100% 110%, rgba(99, 102, 241, 0.18), transparent 60%),
        linear-gradient(145deg, #020617 0%, #0b1228 45%, #131b37 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.exa-metrics-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.32;
    pointer-events: none;
}

.exa-metrics-glow-left {
    top: -180px;
    left: -140px;
    background: rgba(14, 165, 233, 0.6);
}

.exa-metrics-glow-right {
    bottom: -190px;
    right: -120px;
    background: rgba(99, 102, 241, 0.55);
}

.exa-metrics-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c7d2fe;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.5);
}

.exa-metrics-spotlight {
    border-radius: 24px;
    padding: 28px;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.55));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px -35px rgba(2, 6, 23, 0.95);
}

.exa-metrics-spotlight-label {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #93c5fd;
    font-weight: 700;
}

.exa-metrics-pill {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.45);
}

.exa-metrics-pill i {
    color: #7dd3fc;
    width: 16px;
}

.exa-stat-card {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 18px 35px -26px rgba(2, 6, 23, 1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.exa-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(125deg, rgba(125, 211, 252, 0.65), rgba(129, 140, 248, 0.2), rgba(129, 140, 248, 0.55));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    pointer-events: none;
}

.exa-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, 0.45);
    box-shadow: 0 24px 55px -30px rgba(14, 165, 233, 0.65);
}

.exa-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.exa-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.exa-stat-tag {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a5b4fc;
    font-weight: 700;
}

.exa-stat-value {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: #f8fafc;
}

.exa-stat-label {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 14px;
}

.exa-stat-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.exa-stat-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.95), rgba(99, 102, 241, 0.95));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.55);
}

.js-ready .exa-metrics-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--exa-delay, 0s);
}

.js-ready .exa-metrics-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Services section (homepage) */
.exa-services-section {
    background:
        radial-gradient(1000px 480px at 0% 12%, rgba(56, 189, 248, 0.16), transparent 60%),
        radial-gradient(900px 450px at 100% 100%, rgba(99, 102, 241, 0.14), transparent 62%),
        linear-gradient(162deg, #020617 0%, #090f1f 42%, #0f172a 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.exa-services-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.28;
    pointer-events: none;
}

.exa-services-glow-left {
    top: -170px;
    left: -120px;
    background: rgba(56, 189, 248, 0.75);
}

.exa-services-glow-right {
    right: -120px;
    bottom: -190px;
    background: rgba(99, 102, 241, 0.7);
}

.exa-services-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bfdbfe;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(15, 23, 42, 0.46);
}

.exa-services-intro {
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.55));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 25px 60px -38px rgba(2, 6, 23, 0.95);
}

.exa-services-intro-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7dd3fc;
    font-weight: 700;
    margin-bottom: 10px;
}

.exa-services-point {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.5);
    color: #cbd5e1;
    font-size: 14px;
    padding: 10px 12px;
}

.exa-services-point i {
    width: 16px;
    color: #67e8f9;
}

.exa-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    color: #ecfeff;
    border: 1px solid rgba(103, 232, 249, 0.45);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.25), rgba(79, 70, 229, 0.22));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.exa-services-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.8);
    box-shadow: 0 16px 30px -20px rgba(14, 165, 233, 0.7);
}

.exa-offer-card {
    --offer-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(170deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.56));
    box-shadow: 0 20px 40px -32px rgba(2, 6, 23, 0.95);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.exa-offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 85% 0%, rgb(var(--offer-accent) / 0.28), transparent 58%);
    opacity: 0.72;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.exa-offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, rgb(var(--offer-accent) / 0.62), rgba(129, 140, 248, 0.22), rgb(var(--offer-accent) / 0.34));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.68;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.exa-offer-card:hover {
    transform: translateY(-7px);
    border-color: rgb(var(--offer-accent) / 0.78);
    box-shadow: 0 28px 55px -36px rgb(var(--offer-accent) / 0.65);
}

.exa-offer-card:hover::before {
    opacity: 0.95;
}

.exa-offer-card:hover::after {
    opacity: 0.92;
}

.exa-offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.exa-offer-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(var(--offer-accent));
    background: rgb(var(--offer-accent) / 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.exa-offer-chip {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a5b4fc;
    font-weight: 700;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.exa-offer-title {
    position: relative;
    z-index: 1;
    color: #f8fafc;
    font-size: 1.26rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.exa-offer-description {
    position: relative;
    z-index: 1;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
    transition: color 0.35s ease;
}

.exa-offer-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.exa-offer-price {
    color: #f8fafc;
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 800;
    transition: color 0.35s ease;
}

.exa-offer-price span {
    margin-left: 2px;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.35s ease;
}

.exa-offer-arrow {
    color: rgb(var(--offer-accent));
    font-size: 1.35rem;
    transition: transform 0.28s ease;
}

.exa-offer-card:hover .exa-offer-arrow {
    transform: translateX(6px);
}

.exa-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111827;
    border-radius: 999px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #facc15, #fb923c);
    box-shadow: 0 10px 20px -15px rgba(251, 146, 60, 0.85);
}

.exa-offer-badge-centered {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.exa-offer-card:hover .exa-offer-icon {
    transform: translateY(-3px) scale(1.06);
    color: #f8fafc;
    background: rgb(var(--offer-accent) / 0.3);
    box-shadow: 0 14px 26px -16px rgb(var(--offer-accent) / 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.exa-offer-card:hover .exa-offer-chip {
    color: rgb(var(--offer-accent));
    text-shadow: 0 0 16px rgb(var(--offer-accent) / 0.5);
}

.exa-offer-card:hover .exa-offer-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgb(var(--offer-accent) / 0.32);
}

.exa-offer-card:hover .exa-offer-description {
    color: #e2e8f0;
}

.exa-offer-card:hover .exa-offer-price {
    color: rgb(var(--offer-accent));
}

.exa-offer-card:hover .exa-offer-price span {
    color: #cbd5e1;
}

.js-ready .exa-services-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s ease;
    transition-delay: var(--offer-delay, 0s);
}

.js-ready .exa-services-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Guidance section (homepage) */
.exa-guidance-section {
    background:
        radial-gradient(1050px 440px at 0% -10%, rgba(56, 189, 248, 0.16), transparent 60%),
        radial-gradient(980px 500px at 100% 115%, rgba(99, 102, 241, 0.16), transparent 62%),
        linear-gradient(158deg, #020617 0%, #081324 46%, #111c34 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.exa-guidance-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.28;
    pointer-events: none;
}

.exa-guidance-glow-left {
    top: -160px;
    left: -120px;
    background: rgba(14, 165, 233, 0.7);
}

.exa-guidance-glow-right {
    bottom: -190px;
    right: -120px;
    background: rgba(99, 102, 241, 0.7);
}

.exa-guidance-panel {
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px -38px rgba(2, 6, 23, 0.95);
}

.exa-guidance-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bfdbfe;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.5);
}

.exa-guidance-point {
    --guide-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.48);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.exa-guidance-point::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgb(var(--guide-accent) / 0.24), transparent 62%);
    opacity: 0.72;
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.exa-guidance-point:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--guide-accent) / 0.52);
    box-shadow: 0 22px 42px -34px rgb(var(--guide-accent) / 0.75);
}

.exa-guidance-point:hover::before {
    opacity: 1;
}

.exa-guidance-point-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--guide-accent));
    background: rgb(var(--guide-accent) / 0.16);
    margin-bottom: 10px;
    transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.exa-guidance-point h3 {
    position: relative;
    z-index: 1;
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 5px;
}

.exa-guidance-point p {
    position: relative;
    z-index: 1;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
}

.exa-guidance-point:hover .exa-guidance-point-icon {
    transform: translateY(-2px) scale(1.05);
    color: #fff;
    background: rgb(var(--guide-accent) / 0.28);
}

.exa-guidance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exa-guidance-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    color: #f8fafc;
    border: 1px solid rgba(103, 232, 249, 0.45);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.26), rgba(79, 70, 229, 0.24));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exa-guidance-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -20px rgba(14, 165, 233, 0.75);
}

.exa-guidance-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.42);
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.exa-guidance-btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.65);
    color: #f8fafc;
}

.exa-guidance-media {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 24px 60px -38px rgba(2, 6, 23, 0.95);
}

.exa-guidance-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exa-guidance-media-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgb(6 182 212 / 0.1), transparent 50%, rgb(99 102 241 / 0.15));
    z-index: 1;
    pointer-events: none;
}

.exa-guidance-float {
    position: absolute;
    z-index: 2;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(2, 6, 23, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.38);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 35px -24px rgba(2, 6, 23, 0.95);
}

.exa-guidance-float-top {
    top: 16px;
    left: 16px;
}

.exa-guidance-float-bottom {
    right: 16px;
    bottom: 16px;
}

.exa-guidance-float-value {
    color: #f8fafc;
    font-weight: 800;
    line-height: 1;
    font-size: 1.3rem;
}

.exa-guidance-float-label {
    color: #cbd5e1;
    font-size: 12px;
    margin-top: 3px;
}

.js-ready .exa-guidance-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s ease;
    transition-delay: var(--guide-delay, 0s);
}

.js-ready .exa-guidance-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials section (homepage) */
.exa-testimonials-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bfdbfe;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.48);
}

.exa-testimonial-card {
    --testi-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.84), rgba(30, 41, 59, 0.57));
    box-shadow: 0 22px 45px -34px rgba(2, 6, 23, 0.95);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.exa-testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgb(var(--testi-accent) / 0.28), transparent 60%);
    opacity: 0.72;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.exa-testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, rgb(var(--testi-accent) / 0.6), rgba(129, 140, 248, 0.2), rgb(var(--testi-accent) / 0.33));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.66;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.exa-testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgb(var(--testi-accent) / 0.72);
    box-shadow: 0 30px 58px -38px rgb(var(--testi-accent) / 0.62);
}

.exa-testimonial-card:hover::before {
    opacity: 0.96;
}

.exa-testimonial-card:hover::after {
    opacity: 0.9;
}

.exa-testimonial-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.exa-testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #facc15;
    font-size: 14px;
}

.exa-testimonial-quote {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: rgb(var(--testi-accent) / 0.28);
}

.exa-testimonial-text {
    position: relative;
    z-index: 1;
    color: #dbe7f7;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 18px;
}

.exa-testimonial-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.exa-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #f8fafc;
    border: 1px solid rgb(var(--testi-accent) / 0.48);
    background: linear-gradient(135deg, rgb(var(--testi-accent) / 0.62), rgb(var(--testi-accent) / 0.3));
    box-shadow: 0 14px 24px -18px rgb(var(--testi-accent) / 0.75);
}

.exa-testimonial-name {
    color: #f8fafc;
    font-weight: 700;
    line-height: 1.2;
}

.exa-testimonial-role {
    color: #a8b7cd;
    font-size: 13px;
    margin-top: 2px;
}

.js-ready .exa-testimonials-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s ease;
    transition-delay: var(--testi-delay, 0s);
}

.js-ready .exa-testimonials-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Partners section (homepage) */
.exa-partners-kicker {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bfdbfe;
}

.exa-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.exa-partner-item {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.55);
    color: #cbd5e1;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 1.35rem;
    padding: 18px 8px;
    transition: transform 0.32s ease, color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.exa-partner-item:hover {
    transform: translateY(-4px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.58);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(99, 102, 241, 0.16));
    box-shadow: 0 18px 35px -28px rgba(14, 165, 233, 0.8);
}

.js-ready .exa-partners-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.68s ease, transform 0.68s ease;
    transition-delay: var(--partner-delay, 0s);
}

.js-ready .exa-partners-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Seamless flow between social proof sections */
.exa-flow-section {
    background:
        radial-gradient(920px 440px at -10% 14%, rgba(56, 189, 248, 0.18), transparent 66%),
        radial-gradient(900px 440px at 108% 42%, rgba(99, 102, 241, 0.17), transparent 68%),
        radial-gradient(820px 400px at -8% 88%, rgba(56, 189, 248, 0.12), transparent 64%),
        #070f21;
}

.exa-testimonials-section,
.exa-partners-section,
.exa-cta-section {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.exa-cta-section {
    isolation: isolate;
}

.exa-cta-backdrop {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(72px);
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.exa-cta-backdrop-left {
    top: 6%;
    left: -120px;
    background: rgba(56, 189, 248, 0.72);
}

.exa-cta-backdrop-right {
    bottom: -70px;
    right: -130px;
    background: rgba(99, 102, 241, 0.72);
}

.exa-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(26px, 3.4vw, 38px);
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(18, 32, 61, 0.8) 55%, rgba(25, 39, 72, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 84px -50px rgba(2, 6, 23, 0.96), 0 20px 46px -40px rgba(56, 189, 248, 0.68);
}

.exa-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.26), transparent 52%);
}

.exa-cta-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(125, 211, 252, 0.64), rgba(129, 140, 248, 0.2), rgba(125, 211, 252, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.74;
    pointer-events: none;
}

.exa-cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
    align-items: start;
    gap: 30px;
}

.exa-cta-copy {
    max-width: 72ch;
}

.exa-cta-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bfdbfe;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.5);
}

.exa-cta-title {
    margin-top: 14px;
    margin-bottom: 12px;
    color: #f8fafc;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-cta-title-accent {
    display: block;
    margin-top: 2px;
    background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 50%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exa-cta-text {
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 68ch;
}

.exa-cta-proof {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.exa-cta-proof li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dbe7f7;
    font-size: 14px;
    line-height: 1.4;
}

.exa-cta-proof li i {
    width: 16px;
    color: #67e8f9;
    text-align: center;
}

.exa-cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.exa-cta-tags span {
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.45);
    color: #dbe7f7;
    font-size: 12px;
    font-weight: 600;
}

.exa-cta-actions {
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.exa-cta-btn-primary,
.exa-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px 18px;
    border-radius: 13px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-cta-btn-primary {
    color: #ffffff;
    border: 1px solid rgba(125, 211, 252, 0.52);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.44), rgba(79, 70, 229, 0.36));
    box-shadow: 0 22px 34px -24px rgba(14, 165, 233, 0.84);
}

.exa-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 42px -24px rgba(14, 165, 233, 0.92);
}

.exa-cta-btn-secondary {
    color: #dbe7f7;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.62);
}

.exa-cta-btn-secondary:hover {
    transform: translateY(-3px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.76);
}

.exa-cta-note {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #9fb1c9;
    text-align: center;
}

.js-ready .exa-cta-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.68s ease, transform 0.68s ease;
}

.js-ready .exa-cta-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Offers page (vitrine) */
.exa-offers-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(980px 420px at -8% 8%, rgba(56, 189, 248, 0.2), transparent 62%),
        radial-gradient(920px 460px at 108% 86%, rgba(99, 102, 241, 0.18), transparent 64%),
        linear-gradient(178deg, #030a19 0%, #071125 52%, #060f21 100%);
}

.exa-offers-page::before,
.exa-offers-page::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    filter: blur(96px);
    pointer-events: none;
    z-index: 0;
}

.exa-offers-page::before {
    top: 140px;
    left: -270px;
    background: rgba(56, 189, 248, 0.24);
}

.exa-offers-page::after {
    top: 62%;
    right: -270px;
    background: rgba(129, 140, 248, 0.24);
}

.exa-offers-page > section {
    position: relative;
    z-index: 1;
}

.exa-offers-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.exa-offers-breadcrumb-link {
    color: #93a6c2;
    transition: color 0.24s ease;
}

.exa-offers-breadcrumb-link:hover {
    color: #f8fafc;
}

.exa-offers-breadcrumb-sep {
    color: #4a5d7a;
}

.exa-offers-breadcrumb-current {
    color: #7dd3fc;
    font-weight: 600;
}

.exa-offers-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    align-items: center;
    gap: 28px;
}

.exa-offers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-offers-kicker i {
    color: #67e8f9;
}

.exa-offers-title {
    margin-top: 14px;
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.exa-offers-title-accent {
    display: block;
    margin-top: 4px;
    background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 52%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exa-offers-subtitle {
    max-width: 62ch;
    color: #c8d7ea;
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.65;
}

.exa-offers-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exa-offers-btn-primary,
.exa-offers-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-offers-btn-primary {
    color: #ffffff;
    border: 1px solid rgba(125, 211, 252, 0.5);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.44), rgba(79, 70, 229, 0.34));
    box-shadow: 0 20px 36px -24px rgba(14, 165, 233, 0.82);
}

.exa-offers-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px -24px rgba(14, 165, 233, 0.9);
}

.exa-offers-btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.56);
}

.exa-offers-btn-secondary:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.72);
}

.exa-offers-hero-panel {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 62px -44px rgba(2, 6, 23, 0.95);
    padding: 16px;
    display: grid;
    gap: 10px;
}

.exa-offers-metric-card {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.5);
    padding: 13px 14px;
}

.exa-offers-metric-label {
    color: #9cb3cf;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.exa-offers-metric-value {
    margin-top: 6px;
    color: #f8fafc;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.05;
    font-weight: 800;
}

.exa-offers-metric-note {
    margin-top: 4px;
    color: #b3c5db;
    font-size: 0.78rem;
    line-height: 1.35;
}

.exa-offers-section-head {
    margin-bottom: 34px;
}

.exa-offers-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.33);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-offers-section-title {
    margin-top: 13px;
    color: #f8fafc;
    font-size: clamp(1.95rem, 4.3vw, 2.9rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.018em;
}

.exa-offers-section-text {
    margin: 12px auto 0;
    max-width: 64ch;
    color: #bfd0e6;
    line-height: 1.65;
    font-size: 1rem;
}

.exa-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.exa-offers-service-card {
    --service-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.58));
    box-shadow: 0 24px 44px -34px rgba(2, 6, 23, 0.95);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.exa-offers-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgb(var(--service-accent) / 0.25), transparent 62%);
    opacity: 0.75;
    pointer-events: none;
}

.exa-offers-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, rgb(var(--service-accent) / 0.58), rgba(129, 140, 248, 0.2), rgb(var(--service-accent) / 0.33));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.66;
    pointer-events: none;
}

.exa-offers-service-card:hover {
    transform: translateY(-6px);
    border-color: rgb(var(--service-accent) / 0.74);
    box-shadow: 0 30px 56px -38px rgb(var(--service-accent) / 0.56);
}

.exa-offers-service-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.exa-offers-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f8fafc;
    border: 1px solid rgb(var(--service-accent) / 0.48);
    background: linear-gradient(135deg, rgb(var(--service-accent) / 0.55), rgb(var(--service-accent) / 0.24));
}

.exa-offers-service-chip {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(var(--service-accent));
    font-weight: 700;
}

.exa-offers-service-title {
    position: relative;
    z-index: 1;
    color: #f8fafc;
    font-size: 1.26rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
}

.exa-offers-service-text {
    position: relative;
    z-index: 1;
    color: #c7d7eb;
    font-size: 0.92rem;
    line-height: 1.58;
    margin-bottom: 14px;
}

.exa-offers-service-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.exa-offers-service-list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: #dbe7f7;
    font-size: 0.84rem;
    line-height: 1.42;
}

.exa-offers-service-list li i {
    width: 13px;
    margin-top: 2px;
    color: rgb(var(--service-accent));
    text-align: center;
}

.exa-offers-service-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.exa-offers-service-price {
    color: #f8fafc;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 800;
}

.exa-offers-service-price small {
    margin-left: 3px;
    color: #9fb1c9;
    font-size: 0.75rem;
    font-weight: 600;
}

.exa-offers-service-arrow {
    color: rgb(var(--service-accent));
    font-size: 1.15rem;
    transition: transform 0.28s ease;
}

.exa-offers-service-card:hover .exa-offers-service-arrow {
    transform: translateX(5px);
}

.exa-offers-empty {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.56));
    box-shadow: 0 24px 54px -36px rgba(2, 6, 23, 0.95);
    padding: 26px;
    text-align: center;
    color: #cbd5e1;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.exa-offers-cta-section {
    padding-bottom: 90px;
}

.exa-offers-cta-panel {
    border-radius: 26px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(162deg, rgba(15, 23, 42, 0.92), rgba(25, 39, 72, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 70px -48px rgba(2, 6, 23, 0.95);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    align-items: center;
    gap: 24px;
}

.exa-offers-cta-title {
    margin-top: 12px;
    margin-bottom: 10px;
    color: #f8fafc;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-offers-cta-text {
    color: #c4d4e8;
    line-height: 1.65;
    max-width: 60ch;
}

.exa-offers-cta-actions {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(158deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.56));
}

.js-ready .exa-offers-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--offers-delay, 0s);
}

.js-ready .exa-offers-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Product page (vitrine) */
.exa-product-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(980px 420px at -8% 8%, rgba(var(--product-accent, 56 189 248) / 0.22), transparent 62%),
        radial-gradient(920px 460px at 108% 86%, rgba(99, 102, 241, 0.17), transparent 64%),
        linear-gradient(178deg, #030a19 0%, #071125 52%, #060f21 100%);
}

.exa-product-page::before,
.exa-product-page::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    filter: blur(96px);
    pointer-events: none;
    z-index: 0;
}

.exa-product-page::before {
    top: 130px;
    left: -260px;
    background: rgba(var(--product-accent, 56 189 248) / 0.24);
}

.exa-product-page::after {
    top: 62%;
    right: -270px;
    background: rgba(129, 140, 248, 0.22);
}

.exa-product-page > section {
    position: relative;
    z-index: 1;
}

.exa-product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
}

.exa-product-breadcrumb-link {
    color: #93a6c2;
    transition: color 0.24s ease;
}

.exa-product-breadcrumb-link:hover {
    color: #f8fafc;
}

.exa-product-breadcrumb-sep {
    color: #4a5d7a;
}

.exa-product-breadcrumb-current {
    color: #7dd3fc;
    font-weight: 600;
}

.exa-product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    align-items: center;
    gap: 28px;
}

.exa-product-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-product-kicker i {
    color: rgb(var(--product-accent, 56 189 248));
}

.exa-product-title {
    margin-top: 14px;
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.exa-product-subtitle {
    max-width: 62ch;
    color: #c8d7ea;
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.65;
}

.exa-product-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exa-product-btn-primary,
.exa-product-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-product-btn-primary {
    color: #fff;
    border: 1px solid rgba(var(--product-accent, 56 189 248) / 0.56);
    background: linear-gradient(120deg, rgba(var(--product-accent, 56 189 248) / 0.5), rgba(79, 70, 229, 0.34));
    box-shadow: 0 20px 36px -24px rgba(var(--product-accent, 56 189 248) / 0.85);
}

.exa-product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px -24px rgba(var(--product-accent, 56 189 248) / 0.95);
}

.exa-product-btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.56);
}

.exa-product-btn-secondary:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.72);
}

.exa-product-feature-chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exa-product-feature-chips span {
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.45);
    color: #dbe7f7;
    font-size: 12px;
    font-weight: 600;
}

.exa-product-hero-panel {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 62px -44px rgba(2, 6, 23, 0.95);
    padding: 18px;
}

.exa-product-hero-panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exa-product-hero-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #f8fafc;
    border: 1px solid rgba(var(--product-accent, 56 189 248) / 0.54);
    background: linear-gradient(135deg, rgba(var(--product-accent, 56 189 248) / 0.52), rgba(var(--product-accent, 56 189 248) / 0.2));
}

.exa-product-hero-panel-label {
    color: #9cb3cf;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-product-hero-panel-title {
    margin-top: 2px;
    color: #f8fafc;
    font-size: 1.08rem;
    font-weight: 700;
}

.exa-product-hero-metrics {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.exa-product-hero-metric {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.5);
    padding: 11px 12px;
}

.exa-product-hero-metric-value {
    color: #f8fafc;
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.exa-product-hero-metric-label {
    margin-top: 3px;
    color: #b6c9de;
    font-size: 0.79rem;
    line-height: 1.32;
}

.exa-product-section-head {
    margin-bottom: 30px;
}

.exa-product-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.33);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-product-section-title {
    margin-top: 13px;
    color: #f8fafc;
    font-size: clamp(1.9rem, 4.3vw, 2.9rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.018em;
}

.exa-product-section-text {
    margin: 12px auto 0;
    max-width: 64ch;
    color: #bfd0e6;
    line-height: 1.65;
    font-size: 1rem;
}

.exa-product-table-wrap {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.58));
    box-shadow: 0 28px 56px -40px rgba(2, 6, 23, 0.95);
    overflow: hidden;
}

.exa-product-table {
    width: 100%;
    border-collapse: collapse;
}

.exa-product-table thead tr {
    background: rgba(2, 6, 23, 0.78);
}

.exa-product-table th {
    color: #c8d7ea;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.exa-product-table td {
    color: #dbe7f7;
    font-size: 0.9rem;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.exa-product-table tbody tr:hover {
    background: rgba(148, 163, 184, 0.08);
}

.exa-product-table tbody tr:last-child td {
    border-bottom: 0;
}

.exa-product-plan-cell {
    display: grid;
    gap: 4px;
}

.exa-product-plan-name {
    color: #f8fafc;
    font-weight: 700;
    line-height: 1.2;
}

.exa-product-plan-sku {
    color: #8fa4c1;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.exa-product-price-cell {
    color: rgb(var(--product-accent, 56 189 248));
    font-weight: 800;
    font-size: 1.04rem;
}

.exa-product-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 9px 13px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(var(--product-accent, 56 189 248) / 0.54);
    background: linear-gradient(120deg, rgba(var(--product-accent, 56 189 248) / 0.5), rgba(79, 70, 229, 0.34));
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.exa-product-order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -18px rgba(var(--product-accent, 56 189 248) / 0.85);
}

.exa-product-mobile-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(166deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.58));
    box-shadow: 0 20px 40px -30px rgba(2, 6, 23, 0.95);
    padding: 18px;
}

.exa-product-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.exa-product-mobile-head h3 {
    color: #f8fafc;
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 700;
}

.exa-product-mobile-specs {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.exa-product-mobile-specs p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #c8d7ea;
    font-size: 0.86rem;
}

.exa-product-mobile-specs p strong {
    color: #f8fafc;
    font-weight: 700;
}

.exa-product-empty {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.56));
    box-shadow: 0 24px 54px -36px rgba(2, 6, 23, 0.95);
    padding: 26px;
    text-align: center;
    color: #cbd5e1;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.exa-product-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    gap: 22px;
}

.exa-product-why-panel,
.exa-product-trust-panel {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(166deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.58));
    box-shadow: 0 24px 44px -34px rgba(2, 6, 23, 0.95);
    padding: 22px;
}

.exa-product-why-title {
    margin-top: 12px;
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: clamp(1.6rem, 3.3vw, 2.25rem);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-product-why-list {
    display: grid;
    gap: 10px;
}

.exa-product-why-list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: #dbe7f7;
    font-size: 0.93rem;
    line-height: 1.45;
}

.exa-product-why-list li i {
    margin-top: 2px;
    width: 15px;
    color: rgb(var(--product-accent, 56 189 248));
    text-align: center;
}

.exa-product-trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    font-size: 22px;
    border: 1px solid rgba(var(--product-accent, 56 189 248) / 0.48);
    background: linear-gradient(135deg, rgba(var(--product-accent, 56 189 248) / 0.56), rgba(var(--product-accent, 56 189 248) / 0.22));
}

.exa-product-trust-panel h3 {
    margin-top: 12px;
    color: #f8fafc;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
}

.exa-product-trust-panel p {
    margin-top: 8px;
    color: #bfd0e6;
    line-height: 1.6;
}

.exa-product-trust-metrics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.exa-product-trust-metrics article {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.5);
    padding: 10px;
}

.exa-product-trust-metrics strong {
    display: block;
    color: #f8fafc;
    font-size: 1.15rem;
    line-height: 1.1;
    font-weight: 800;
}

.exa-product-trust-metrics span {
    margin-top: 4px;
    display: block;
    color: #a9bed9;
    font-size: 0.74rem;
    line-height: 1.3;
}

.exa-product-faq-list {
    display: grid;
    gap: 10px;
}

.exa-product-faq-item {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.56));
    box-shadow: 0 18px 34px -28px rgba(2, 6, 23, 0.95);
    overflow: hidden;
}

.exa-product-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #f8fafc;
    font-weight: 600;
    transition: background 0.24s ease;
}

.exa-product-faq-item summary::-webkit-details-marker {
    display: none;
}

.exa-product-faq-item summary i {
    color: rgb(var(--product-accent, 56 189 248));
    transition: transform 0.24s ease;
}

.exa-product-faq-item[open] summary i {
    transform: rotate(180deg);
}

.exa-product-faq-item summary:hover {
    background: rgba(148, 163, 184, 0.08);
}

.exa-product-faq-answer {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 12px 16px 14px;
    color: #bfd0e6;
    line-height: 1.62;
    font-size: 0.92rem;
}

.exa-product-cta-panel {
    border-radius: 24px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(162deg, rgba(15, 23, 42, 0.92), rgba(25, 39, 72, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 70px -48px rgba(2, 6, 23, 0.95);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    align-items: center;
    gap: 22px;
}

.exa-product-cta-title {
    margin-top: 12px;
    margin-bottom: 10px;
    color: #f8fafc;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-product-cta-text {
    color: #c4d4e8;
    line-height: 1.65;
    max-width: 60ch;
}

.exa-product-cta-actions {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(158deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.56));
}

.js-ready .exa-product-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--product-delay, 0s);
}

.js-ready .exa-product-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .exa-offers-hero-grid,
    .exa-offers-cta-panel,
    .exa-product-hero-grid,
    .exa-product-why-grid,
    .exa-product-cta-panel {
        grid-template-columns: 1fr;
    }

    .exa-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exa-offers-cta-actions,
    .exa-product-cta-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .exa-offers-title,
    .exa-product-title {
        font-size: clamp(2rem, 8vw, 2.9rem);
    }

    .exa-offers-section-title,
    .exa-product-section-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }

    .exa-offers-actions,
    .exa-product-hero-actions {
        flex-direction: column;
    }

    .exa-offers-btn-primary,
    .exa-offers-btn-secondary,
    .exa-product-btn-primary,
    .exa-product-btn-secondary {
        width: 100%;
    }

    .exa-offers-hero-panel,
    .exa-offers-service-card,
    .exa-offers-cta-panel,
    .exa-product-hero-panel,
    .exa-product-mobile-card,
    .exa-product-why-panel,
    .exa-product-trust-panel,
    .exa-product-cta-panel {
        padding: 20px;
    }

    .exa-offers-grid {
        grid-template-columns: 1fr;
    }

    .exa-product-trust-metrics {
        grid-template-columns: 1fr;
    }

    .exa-offers-page::before,
    .exa-offers-page::after,
    .exa-product-page::before,
    .exa-product-page::after {
        width: 380px;
        height: 380px;
        filter: blur(72px);
    }

    .exa-offers-page::before,
    .exa-product-page::before {
        left: -220px;
        top: 140px;
    }

    .exa-offers-page::after,
    .exa-product-page::after {
        right: -220px;
        top: 62%;
    }
}

/* Datacenter page (vitrine) */
.exa-dc-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(980px 420px at -8% 8%, rgba(56, 189, 248, 0.2), transparent 62%),
        radial-gradient(900px 460px at 108% 84%, rgba(99, 102, 241, 0.18), transparent 64%),
        linear-gradient(176deg, #040b1b 0%, #071024 52%, #060d1f 100%);
}

.exa-dc-page::before,
.exa-dc-page::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    filter: blur(96px);
    pointer-events: none;
    z-index: 0;
}

.exa-dc-page::before {
    top: 120px;
    left: -260px;
    background: rgba(56, 189, 248, 0.24);
}

.exa-dc-page::after {
    top: 58%;
    right: -260px;
    background: rgba(129, 140, 248, 0.24);
}

.exa-dc-page > section {
    position: relative;
    z-index: 1;
}

.exa-dc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.exa-dc-breadcrumb-link {
    color: #93a6c2;
    transition: color 0.24s ease;
}

.exa-dc-breadcrumb-link:hover {
    color: #f8fafc;
}

.exa-dc-breadcrumb-sep {
    color: #4a5d7a;
}

.exa-dc-breadcrumb-current {
    color: #7dd3fc;
    font-weight: 600;
}

.exa-dc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.exa-dc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-dc-kicker i {
    color: #67e8f9;
}

.exa-dc-title {
    margin-top: 14px;
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.exa-dc-title-accent {
    display: block;
    margin-top: 4px;
    background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 52%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exa-dc-subtitle {
    max-width: 62ch;
    color: #c8d7ea;
    font-size: clamp(1rem, 2.1vw, 1.15rem);
    line-height: 1.65;
}

.exa-dc-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exa-dc-btn-primary,
.exa-dc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-dc-btn-primary {
    color: #ffffff;
    border: 1px solid rgba(125, 211, 252, 0.5);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.44), rgba(79, 70, 229, 0.34));
    box-shadow: 0 20px 36px -24px rgba(14, 165, 233, 0.8);
}

.exa-dc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px -24px rgba(14, 165, 233, 0.9);
}

.exa-dc-btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.56);
}

.exa-dc-btn-secondary:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.72);
}

.exa-dc-hero-proof {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.exa-dc-hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d9e5f5;
    font-size: 0.93rem;
    line-height: 1.45;
}

.exa-dc-hero-proof li i {
    width: 15px;
    color: #67e8f9;
    text-align: center;
}

.exa-dc-hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(166deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 62px -44px rgba(2, 6, 23, 0.95);
    align-self: center;
}

.exa-dc-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.24), transparent 58%);
    pointer-events: none;
}

.exa-dc-panel-kicker {
    position: relative;
    z-index: 1;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #7dd3fc;
}

.exa-dc-panel-title {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: #f8fafc;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-dc-panel-text {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: #b9cbe1;
    line-height: 1.62;
    font-size: 0.94rem;
}

.exa-dc-panel-grid {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.exa-dc-panel-item {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.5);
    padding: 10px 11px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.exa-dc-panel-item i {
    margin-top: 2px;
    width: 16px;
    color: #67e8f9;
    text-align: center;
}

.exa-dc-panel-item-title {
    color: #f8fafc;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
}

.exa-dc-panel-item-text {
    margin-top: 3px;
    color: #aebfd8;
    font-size: 0.78rem;
    line-height: 1.35;
}

.exa-dc-panel-tracks {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.exa-dc-track-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    color: #dbe7f7;
    font-size: 0.8rem;
}

.exa-dc-track-head strong {
    color: #f8fafc;
    font-weight: 700;
}

.exa-dc-track-bar {
    display: block;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.2);
}

.exa-dc-track-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.96), rgba(99, 102, 241, 0.94));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.56);
}

.exa-dc-section-soft {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.03));
}

.exa-dc-section-head {
    margin-bottom: 34px;
}

.exa-dc-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.33);
    background: rgba(15, 23, 42, 0.48);
    color: #bfdbfe;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-dc-section-title {
    margin-top: 13px;
    color: #f8fafc;
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.018em;
}

.exa-dc-section-text {
    margin: 12px auto 0;
    max-width: 64ch;
    color: #bfd0e6;
    line-height: 1.65;
    font-size: 1rem;
}

.exa-dc-site-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    gap: 24px;
}

.exa-dc-site-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(166deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.62));
    box-shadow: 0 30px 62px -46px rgba(2, 6, 23, 0.95);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.exa-dc-site-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.24), transparent 58%);
    pointer-events: none;
}

.exa-dc-site-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.52);
    box-shadow: 0 34px 66px -46px rgba(14, 165, 233, 0.62);
}

.exa-dc-site-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.exa-dc-site-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12rem;
    color: #f8fafc;
    border: 1px solid rgba(125, 211, 252, 0.48);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(129, 140, 248, 0.34));
    box-shadow: 0 16px 28px -22px rgba(14, 165, 233, 0.8);
}

.exa-dc-site-chip {
    color: #93c5fd;
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
}

.exa-dc-site-name {
    margin-top: 3px;
    color: #f8fafc;
    font-size: 1.7rem;
    line-height: 1.1;
    font-weight: 800;
}

.exa-dc-site-desc {
    position: relative;
    z-index: 1;
    color: #bfd0e6;
    line-height: 1.65;
    margin-bottom: 16px;
}

.exa-dc-site-pills {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.exa-dc-site-pill {
    --dc-pill: 56 189 248;
    border-radius: 12px;
    border: 1px solid rgb(var(--dc-pill) / 0.28);
    background: rgb(var(--dc-pill) / 0.1);
    padding: 10px 11px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.exa-dc-site-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    border: 1px solid rgb(var(--dc-pill) / 0.44);
    background: rgb(var(--dc-pill) / 0.35);
    font-size: 0.72rem;
}

.exa-dc-site-pill-title {
    color: #f8fafc;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.exa-dc-site-pill-text {
    margin-top: 3px;
    color: #b5c6dd;
    font-size: 0.74rem;
    line-height: 1.32;
}

.exa-dc-site-address {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.46);
    color: #dbe7f7;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.exa-dc-site-address i {
    color: #67e8f9;
}

.exa-dc-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    min-height: 420px;
    box-shadow: 0 30px 62px -44px rgba(2, 6, 23, 0.95);
}

.exa-dc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exa-dc-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.58) 88%);
    pointer-events: none;
}

.exa-dc-media-badge {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
    color: #f8fafc;
    font-size: 0.83rem;
    font-weight: 700;
}

.exa-dc-media-badge i {
    color: #67e8f9;
}

.exa-dc-media-badge-top {
    top: 16px;
    right: 16px;
}

.exa-dc-media-badge-bottom {
    bottom: 16px;
    left: 16px;
}

.exa-dc-feature-card {
    --dc-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.27);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.58));
    box-shadow: 0 24px 46px -34px rgba(2, 6, 23, 0.95);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.exa-dc-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgb(var(--dc-accent) / 0.24), transparent 60%);
    opacity: 0.74;
    pointer-events: none;
}

.exa-dc-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, rgb(var(--dc-accent) / 0.58), rgba(129, 140, 248, 0.2), rgb(var(--dc-accent) / 0.34));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.66;
    pointer-events: none;
}

.exa-dc-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgb(var(--dc-accent) / 0.74);
    box-shadow: 0 30px 58px -38px rgb(var(--dc-accent) / 0.56);
}

.exa-dc-feature-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: 1.2rem;
    border: 1px solid rgb(var(--dc-accent) / 0.46);
    background: linear-gradient(145deg, rgb(var(--dc-accent) / 0.52), rgb(var(--dc-accent) / 0.22));
}

.exa-dc-feature-title {
    position: relative;
    z-index: 1;
    color: #f8fafc;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
}

.exa-dc-feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
}

.exa-dc-feature-list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: #c4d4e8;
    font-size: 0.9rem;
    line-height: 1.45;
}

.exa-dc-feature-list li i {
    margin-top: 3px;
    width: 13px;
    text-align: center;
    color: rgb(var(--dc-accent));
}

.exa-dc-ops-panel {
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(164deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 66px -46px rgba(2, 6, 23, 0.95);
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: start;
    gap: 22px;
}

.exa-dc-ops-title {
    margin-top: 12px;
    margin-bottom: 10px;
    color: #f8fafc;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-dc-ops-text {
    color: #bfd0e6;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 58ch;
}

.exa-dc-ops-list {
    display: grid;
    gap: 10px;
}

.exa-dc-ops-list li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #dbe7f7;
    font-size: 0.92rem;
    line-height: 1.4;
}

.exa-dc-ops-list li i {
    width: 16px;
    color: #67e8f9;
    text-align: center;
}

.exa-dc-ops-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.exa-dc-mini-stat {
    --dc-mini: 56 189 248;
    border-radius: 14px;
    border: 1px solid rgb(var(--dc-mini) / 0.35);
    background: linear-gradient(155deg, rgb(var(--dc-mini) / 0.2), rgba(15, 23, 42, 0.6));
    padding: 14px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 34px -28px rgb(var(--dc-mini) / 0.64);
}

.exa-dc-mini-value {
    color: #f8fafc;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.exa-dc-mini-label {
    margin-top: 8px;
    color: #d5e3f4;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 600;
}

.exa-dc-cta-section {
    padding-bottom: 90px;
}

.exa-dc-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(26px, 3.2vw, 38px);
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: linear-gradient(162deg, rgba(15, 23, 42, 0.92), rgba(18, 32, 61, 0.8) 55%, rgba(25, 39, 72, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 34px 84px -50px rgba(2, 6, 23, 0.96), 0 20px 46px -40px rgba(56, 189, 248, 0.66);
}

.exa-dc-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 86% 16%, rgba(56, 189, 248, 0.26), transparent 54%);
}

.exa-dc-cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 310px);
    align-items: center;
    gap: 28px;
}

.exa-dc-cta-title {
    margin-top: 12px;
    margin-bottom: 11px;
    color: #f8fafc;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.016em;
}

.exa-dc-cta-title-accent {
    display: block;
    margin-top: 2px;
    background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 52%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exa-dc-cta-text {
    color: #c4d4e8;
    line-height: 1.65;
    max-width: 62ch;
}

.exa-dc-cta-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.exa-dc-cta-tags span {
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.29);
    background: rgba(15, 23, 42, 0.45);
    color: #dbe7f7;
    font-size: 12px;
    font-weight: 600;
}

.exa-dc-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.exa-dc-cta-btn-primary,
.exa-dc-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-dc-cta-btn-primary {
    color: #fff;
    border: 1px solid rgba(125, 211, 252, 0.5);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.44), rgba(79, 70, 229, 0.34));
    box-shadow: 0 22px 34px -24px rgba(14, 165, 233, 0.84);
}

.exa-dc-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 42px -24px rgba(14, 165, 233, 0.9);
}

.exa-dc-cta-btn-secondary {
    color: #dbe7f7;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(15, 23, 42, 0.62);
}

.exa-dc-cta-btn-secondary:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.76);
}

.js-ready .exa-dc-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--dc-delay, 0s);
}

.js-ready .exa-dc-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .exa-dc-hero-grid,
    .exa-dc-site-grid,
    .exa-dc-ops-panel,
    .exa-dc-cta-grid {
        grid-template-columns: 1fr;
    }

    .exa-dc-media {
        min-height: 360px;
    }

    .exa-dc-cta-actions {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .exa-dc-title {
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    .exa-dc-section-title {
        font-size: clamp(1.7rem, 6vw, 2.3rem);
    }

    .exa-dc-hero-panel,
    .exa-dc-site-card,
    .exa-dc-ops-panel,
    .exa-dc-cta-panel {
        padding: 22px;
    }

    .exa-dc-hero-actions {
        flex-direction: column;
    }

    .exa-dc-btn-primary,
    .exa-dc-btn-secondary,
    .exa-dc-cta-btn-primary,
    .exa-dc-cta-btn-secondary {
        width: 100%;
    }

    .exa-dc-panel-grid,
    .exa-dc-site-pills,
    .exa-dc-ops-stats {
        grid-template-columns: 1fr;
    }

    .exa-dc-page::before,
    .exa-dc-page::after {
        width: 380px;
        height: 380px;
        filter: blur(72px);
    }

    .exa-dc-page::before {
        left: -220px;
        top: 140px;
    }

    .exa-dc-page::after {
        right: -220px;
        top: 62%;
    }
}

/* Contact page (vitrine) */
.exa-contact-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(920px 380px at 50% 48%, rgba(56, 189, 248, 0.08), transparent 66%),
        linear-gradient(180deg, #050d1d 0%, #071123 52%, #060f20 100%);
}

.exa-contact-page::before,
.exa-contact-page::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    filter: blur(96px);
    pointer-events: none;
    z-index: 0;
}

.exa-contact-page::before {
    top: 120px;
    left: -260px;
    background: rgba(56, 189, 248, 0.24);
}

.exa-contact-page::after {
    top: 60%;
    right: -260px;
    background: rgba(129, 140, 248, 0.22);
}

.exa-contact-page > section {
    position: relative;
    z-index: 1;
}

.exa-contact-hero {
    background: transparent;
    border-bottom: 0;
}

.exa-contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
}

.exa-contact-breadcrumb-link {
    color: #94a3b8;
    transition: color 0.24s ease;
}

.exa-contact-breadcrumb-link:hover {
    color: #f8fafc;
}

.exa-contact-breadcrumb-sep {
    color: #475569;
}

.exa-contact-breadcrumb-current {
    color: #7dd3fc;
    font-weight: 600;
}

.exa-contact-title {
    font-size: clamp(2.7rem, 6vw, 4.2rem);
    color: #f8fafc;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.exa-contact-subtitle {
    margin: 0 auto;
    max-width: 62ch;
    font-size: clamp(1rem, 2.1vw, 1.25rem);
    line-height: 1.65;
    color: #cbd5e1;
}

.exa-contact-hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.exa-contact-btn-primary,
.exa-contact-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.exa-contact-btn-primary {
    color: #ffffff;
    border: 1px solid rgba(125, 211, 252, 0.46);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.4), rgba(79, 70, 229, 0.34));
    box-shadow: 0 20px 36px -24px rgba(14, 165, 233, 0.82);
}

.exa-contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px -24px rgba(14, 165, 233, 0.9);
}

.exa-contact-btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.56);
}

.exa-contact-btn-secondary:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: rgba(30, 41, 59, 0.72);
}

.exa-contact-section-soft {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.02));
}

.exa-contact-method-card {
    --method-accent: 56 189 248;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.58));
    box-shadow: 0 24px 44px -34px rgba(2, 6, 23, 0.94);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.exa-contact-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 100% 0%, rgb(var(--method-accent) / 0.26), transparent 62%);
    opacity: 0.72;
    pointer-events: none;
}

.exa-contact-method-card:hover {
    transform: translateY(-5px);
    border-color: rgb(var(--method-accent) / 0.65);
    box-shadow: 0 30px 54px -36px rgb(var(--method-accent) / 0.55);
}

.exa-contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #f8fafc;
    font-size: 1.35rem;
    border: 1px solid rgb(var(--method-accent) / 0.5);
    background: linear-gradient(140deg, rgb(var(--method-accent) / 0.5), rgb(var(--method-accent) / 0.2));
}

.exa-contact-method-title {
    color: #f8fafc;
    font-size: 1.26rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.exa-contact-method-text {
    color: #aebfda;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.exa-contact-method-link {
    color: #7dd3fc;
    font-weight: 700;
    transition: color 0.24s ease;
}

.exa-contact-method-link:hover {
    color: #bae6fd;
}

.exa-contact-method-address {
    color: #dbe7f7;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 600;
}

.exa-contact-main-section {
    border-top: 0;
}

.exa-contact-form-card {
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 64px -44px rgba(2, 6, 23, 0.95);
}

.exa-contact-form-title {
    color: #f8fafc;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.exa-contact-form-subtitle {
    color: #aebfda;
    margin-bottom: 20px;
}

.exa-contact-alert {
    border: 1px solid transparent;
}

.exa-contact-alert-success {
    border-color: rgba(16, 185, 129, 0.34);
    background: rgba(16, 185, 129, 0.14);
    color: #bbf7d0;
}

.exa-contact-alert-error {
    border-color: rgba(248, 113, 113, 0.38);
    background: rgba(248, 113, 113, 0.14);
    color: #fecaca;
}

.exa-contact-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #dbe7f7;
    margin-bottom: 8px;
}

.exa-contact-field {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(2, 6, 23, 0.45);
    color: #f8fafc;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.exa-contact-field::placeholder {
    color: #94a3b8;
}

.exa-contact-field:focus {
    outline: none;
    border-color: rgba(125, 211, 252, 0.75);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
    background: rgba(2, 6, 23, 0.66);
}

.exa-contact-select {
    appearance: none;
}

.exa-contact-textarea {
    resize: none;
}

.exa-contact-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.exa-contact-check {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #38bdf8;
}

.exa-contact-check-label {
    color: #b6c7de;
    font-size: 0.9rem;
    line-height: 1.45;
}

.exa-contact-link-inline {
    color: #7dd3fc;
}

.exa-contact-link-inline:hover {
    text-decoration: underline;
}

.exa-contact-submit {
    width: 100%;
    border-radius: 12px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    border: 1px solid rgba(125, 211, 252, 0.46);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.44), rgba(79, 70, 229, 0.34));
    box-shadow: 0 20px 36px -24px rgba(14, 165, 233, 0.82);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.exa-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px -24px rgba(14, 165, 233, 0.88);
}

.exa-contact-form-note {
    color: #93a7c2;
    font-size: 0.78rem;
}

.exa-contact-side-card {
    border-radius: 24px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(168deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.6));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 56px -40px rgba(2, 6, 23, 0.94);
    color: #e2e8f0;
}

.exa-contact-side-card-primary {
    position: relative;
    overflow: hidden;
}

.exa-contact-side-card-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.25), transparent 58%);
    pointer-events: none;
}

.exa-contact-side-title {
    position: relative;
    color: #f8fafc;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.exa-contact-side-text {
    position: relative;
    color: #b4c5dd;
    margin-bottom: 16px;
    line-height: 1.6;
}

.exa-contact-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.exa-contact-status-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(16, 185, 129, 0.36);
}

.exa-contact-status-title {
    color: #f8fafc;
    font-weight: 700;
    line-height: 1.2;
}

.exa-contact-status-user {
    color: #a6b9d4;
    font-size: 0.88rem;
    margin-top: 2px;
}

.exa-contact-side-btn-primary,
.exa-contact-side-btn-ghost {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.93rem;
    font-weight: 700;
    text-align: center;
    transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.exa-contact-side-btn-primary {
    color: #ffffff;
    border: 1px solid rgba(125, 211, 252, 0.42);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.4), rgba(79, 70, 229, 0.32));
}

.exa-contact-side-btn-primary:hover {
    transform: translateY(-2px);
}

.exa-contact-side-btn-ghost {
    color: #dbe7f7;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(15, 23, 42, 0.56);
}

.exa-contact-side-btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.56);
    background: rgba(30, 41, 59, 0.68);
}

.exa-contact-hours-list {
    display: grid;
    gap: 10px;
    color: #c4d4e8;
}

.exa-contact-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.93rem;
}

.exa-contact-hours-list li span:last-child {
    color: #f8fafc;
    font-weight: 700;
}

.exa-contact-hours-note {
    margin-top: 16px;
    font-size: 0.83rem;
    color: #97abc6;
}

.exa-contact-cta-section {
    border-top: 0;
}


.exa-contact-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(162deg, rgba(15, 23, 42, 0.9), rgba(25, 39, 72, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 30px 62px -42px rgba(2, 6, 23, 0.95);
}

.exa-contact-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 0%, rgba(56, 189, 248, 0.24), transparent 56%);
    pointer-events: none;
}

.exa-contact-cta-title {
    position: relative;
    color: #f8fafc;
    font-size: clamp(1.9rem, 4.4vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.exa-contact-cta-text {
    position: relative;
    color: #bfd0e6;
    max-width: 58ch;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.js-ready .exa-contact-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.68s ease, transform 0.68s ease;
    transition-delay: var(--contact-delay, 0s);
}

.js-ready .exa-contact-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Footer (vitrine) */
.exa-footer {
    position: relative;
    background:
        radial-gradient(900px 320px at 0% -12%, rgba(56, 189, 248, 0.14), transparent 58%),
        radial-gradient(860px 360px at 100% 112%, rgba(99, 102, 241, 0.14), transparent 62%),
        linear-gradient(156deg, #020617 0%, #081325 46%, #0f1932 100%);
    border-top: 0;
}

.exa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 62%);
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.88), rgba(129, 140, 248, 0.75), rgba(56, 189, 248, 0.82));
    pointer-events: none;
    z-index: 2;
}

.exa-footer-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(68px);
    opacity: 0.24;
    pointer-events: none;
}

.exa-footer-glow-left {
    top: -150px;
    left: -110px;
    background: rgba(14, 165, 233, 0.72);
}

.exa-footer-glow-right {
    bottom: -170px;
    right: -110px;
    background: rgba(99, 102, 241, 0.72);
}

.exa-footer-orbit {
    position: absolute;
    width: 380px;
    height: 380px;
    pointer-events: none;
    opacity: 0.65;
    z-index: 0;
}

.exa-footer-orbit-left {
    top: 18%;
    left: -205px;
}

.exa-footer-orbit-right {
    bottom: -94px;
    right: -205px;
}

.exa-footer-orbit-ring {
    position: absolute;
    border-radius: 999px;
    will-change: transform;
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.25));
}

.exa-footer-orbit-ring-outer {
    inset: 0;
    border: 1px dashed rgba(125, 211, 252, 0.32);
    animation: exaFooterOrbitSpin 28s linear infinite;
}

.exa-footer-orbit-ring-inner {
    inset: 48px;
    border: 1px dotted rgba(129, 140, 248, 0.38);
    animation: exaFooterOrbitSpin 18s linear infinite reverse;
}

@keyframes exaFooterOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.exa-footer-desc {
    color: #c8d6ea;
    line-height: 1.7;
    max-width: 34ch;
    margin-bottom: 18px;
}

.exa-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.exa-footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.5);
    color: #dbe7f7;
    font-size: 12px;
    font-weight: 600;
}

.exa-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.exa-footer-social {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.5);
    transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-footer-social:hover {
    transform: translateY(-2px);
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.62);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(99, 102, 241, 0.2));
}

.exa-footer-title {
    color: #f8fafc;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.exa-footer-links {
    display: grid;
    gap: 9px;
}

.exa-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c8d6ea;
    font-size: 14px;
    line-height: 1.35;
    transition: color 0.28s ease, transform 0.28s ease;
}

.exa-footer-link i {
    width: 14px;
    text-align: center;
    color: #67e8f9;
    opacity: 0.9;
}

.exa-footer-link:hover {
    color: #f8fafc;
    transform: translateX(3px);
}

.exa-footer-support {
    display: grid;
    gap: 10px;
}

.exa-footer-support-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c8d6ea;
    font-size: 14px;
    line-height: 1.35;
}

.exa-footer-support-item i {
    width: 14px;
    text-align: center;
    color: #67e8f9;
    opacity: 0.9;
}

.exa-footer-btn-primary,
.exa-footer-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.exa-footer-btn-primary {
    color: #fff;
    border: 1px solid rgba(125, 211, 252, 0.4);
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.27), rgba(79, 70, 229, 0.24));
    box-shadow: 0 16px 30px -22px rgba(14, 165, 233, 0.72);
}

.exa-footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -22px rgba(14, 165, 233, 0.84);
}

.exa-footer-btn-secondary {
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
}

.exa-footer-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.6);
    background: rgba(30, 41, 59, 0.65);
}

.exa-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 20px;
}

.exa-footer-copy {
    color: #b8c9df;
    font-size: 13px;
}

.exa-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.exa-footer-legal a {
    color: #c5d5ea;
    font-size: 13px;
    transition: color 0.28s ease;
}

.exa-footer-legal a:hover {
    color: #f8fafc;
}

.exa-footer-meta {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    margin-top: 16px;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9fb1c9;
    font-size: 12px;
}

.exa-footer-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.88), rgba(129, 140, 248, 0.75), rgba(56, 189, 248, 0.82));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fan-stack {
        width: min(320px, 90%);
    }
    
    .fan-card-1 {
        --fan-x: -12%;
        --fan-rot: -8deg;
    }
    
    .fan-card-3 {
        --fan-x: 12%;
        --fan-rot: 8deg;
    }

    .exa-metrics-spotlight {
        padding: 24px;
    }

    .exa-stat-card {
        padding: 18px;
    }

    .exa-stat-value {
        font-size: 2.1rem;
    }

    .exa-services-intro {
        padding: 24px;
    }

    .exa-offer-card {
        padding: 20px;
    }

    .exa-offer-price {
        font-size: 1.5rem;
    }

    .exa-guidance-panel {
        padding: 24px;
    }

    .exa-guidance-actions {
        flex-direction: column;
    }

    .exa-guidance-btn-primary,
    .exa-guidance-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .exa-guidance-media {
        min-height: 340px;
    }

    .exa-testimonial-card {
        padding: 20px;
    }

    .exa-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exa-partner-item {
        font-size: 1.2rem;
        padding: 16px 8px;
    }

    .exa-cta-backdrop {
        width: 240px;
        height: 240px;
        opacity: 0.2;
    }

    .exa-cta-backdrop-left {
        top: -40px;
        left: -130px;
    }

    .exa-cta-backdrop-right {
        right: -140px;
        bottom: -70px;
    }

    .exa-cta-panel {
        padding: 24px;
    }

    .exa-cta-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .exa-cta-proof li {
        font-size: 13px;
    }

    .exa-cta-actions {
        min-width: 100%;
        padding: 14px;
    }

    .exa-cta-btn-primary,
    .exa-cta-btn-secondary {
        width: 100%;
    }

    .exa-contact-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .exa-contact-hero-actions {
        flex-direction: column;
    }

    .exa-contact-btn-primary,
    .exa-contact-btn-secondary {
        width: 100%;
    }

    .exa-contact-method-card,
    .exa-contact-form-card,
    .exa-contact-side-card,
    .exa-contact-cta-panel {
        padding: 22px;
    }

    .exa-contact-hours-list li {
        font-size: 0.88rem;
    }

    .exa-contact-side-btn-primary,
    .exa-contact-side-btn-ghost {
        width: 100%;
    }

    .exa-contact-page::before,
    .exa-contact-page::after {
        width: 380px;
        height: 380px;
        filter: blur(72px);
    }

    .exa-contact-page::before {
        left: -220px;
        top: 140px;
    }

    .exa-contact-page::after {
        right: -220px;
        top: 62%;
    }

    .exa-footer-desc {
        max-width: none;
    }

    .exa-footer-orbit {
        width: 260px;
        height: 260px;
        opacity: 0.45;
    }

    .exa-footer-orbit-left {
        left: -150px;
    }

    .exa-footer-orbit-right {
        right: -150px;
        bottom: -70px;
    }

    .exa-footer-legal {
        gap: 10px;
    }

    .exa-footer-meta {
        justify-content: flex-start;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.2));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 14px 28px rgba(56, 189, 248, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(2, 6, 23, 0.36);
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.84), rgba(99, 102, 241, 0.76));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 20px -12px rgba(14, 165, 233, 0.86);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(165, 243, 252, 0.95), rgba(129, 140, 248, 0.86));
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.95), rgba(79, 70, 229, 0.9));
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(125, 211, 252, 0.8) rgba(15, 23, 42, 0.35);
}

/* Global reveal animation (load + scroll) */
:root {
    --exa-reveal-distance: 26px;
    --exa-reveal-blur: 14px;
    --exa-reveal-scale: 0.985;
    --exa-reveal-duration: 920ms;
    --exa-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .animate-on-scroll {
    opacity: 0 !important;
    transform: translate3d(0, var(--reveal-distance, var(--exa-reveal-distance)), 0) scale(var(--reveal-scale, var(--exa-reveal-scale))) !important;
    filter: blur(var(--reveal-blur, var(--exa-reveal-blur))) saturate(0.92) !important;
    will-change: opacity, transform, filter;
    backface-visibility: hidden;
}

.js-ready .animate-on-scroll.reveal-pending {
    transition-property: opacity, transform, filter !important;
    transition-duration: var(--reveal-duration, var(--exa-reveal-duration)) !important;
    transition-timing-function: var(--reveal-ease, var(--exa-reveal-ease)) !important;
    transition-delay: var(--reveal-delay, var(--exa-delay, var(--offer-delay, var(--guide-delay, var(--testi-delay, var(--partner-delay, var(--product-delay, var(--dc-delay, var(--contact-delay, var(--offers-delay, 0s)))))))))) !important;
}

.js-ready .animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    filter: blur(0) saturate(1) !important;
}

.js-ready .animate-on-scroll.animate-on-scroll-auto {
    --reveal-distance: 22px;
    --reveal-blur: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .animate-on-scroll,
    .js-ready .animate-on-scroll.animated {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}
