:root {
    --ink: #061421;
    --ink-2: #0d2238;
    --cyan: #16c6f3;
    --emerald: #18d08d;
    --amber: #f4b24d;
    --coral: #ff6d5a;
    --paper: #f6fbff;
    --muted: #8da2b5;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
    --radius: 8px;
    --header-h: 76px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #172433;
    background: #ffffff;
    letter-spacing: 0;
}

body::selection {
    background: rgba(22, 198, 243, 0.32);
}

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

img,
svg {
    display: block;
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 44px);
    color: #fff;
    background: rgba(6, 20, 33, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(6, 20, 33, 0.93);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 198, 243, 0.56);
    border-radius: var(--radius);
    color: #04131e;
    background: linear-gradient(135deg, #16c6f3, #18d08d);
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.brand small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.language-control {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
}

.language-control select {
    border: 0;
    color: #fff;
    background: transparent;
    outline: 0;
    font-weight: 900;
}

.language-control option {
    color: var(--ink);
}

.contact-link {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    white-space: nowrap;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-sm {
    min-height: 40px;
    padding-inline: 14px;
}

.btn-primary {
    color: #04131e;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 16px 36px rgba(22, 198, 243, 0.22);
}

.btn-accent {
    color: #061421;
    background: var(--emerald);
}

.btn-portal {
    color: #061421;
    background: linear-gradient(135deg, #ffffff, var(--cyan) 48%, var(--emerald));
    box-shadow: 0 16px 38px rgba(22, 198, 243, 0.24);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.btn-light {
    color: var(--ink);
    background: #fff;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 2px solid rgba(24, 208, 141, 0.55);
    opacity: 0;
    animation: pulse-ring 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.98);
        opacity: 0.65;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero {
    position: relative;
    min-height: min(680px, calc(100svh - 36px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    perspective: 1200px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(22, 198, 243, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 198, 243, 0.1) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 80%, transparent);
    opacity: 0.18;
    transform: rotateX(62deg) translateY(150px) scale(1.2);
    transform-origin: bottom center;
    animation: grid-drift 10s linear infinite;
    pointer-events: none;
}

@keyframes grid-drift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 58px, 58px 0;
    }
}

.hero-bg,
.hero-canvas,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: 0;
    background-image: url("../img/siptelia-hero.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-canvas {
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.72;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(6, 20, 33, 0.97) 0%, rgba(6, 20, 33, 0.86) 34%, rgba(6, 20, 33, 0.34) 68%, rgba(6, 20, 33, 0.72) 100%),
        linear-gradient(180deg, rgba(6, 20, 33, 0.34) 0%, rgba(6, 20, 33, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 88px;
    padding-bottom: 18px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--emerald);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.02rem, 2vw, 1.3rem);
    line-height: 1.7;
}

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

.hero-metrics {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transform: rotateX(0deg) rotateY(0deg) translateZ(0);
    transform-style: preserve-3d;
}

.hero-metrics div {
    padding: 20px;
    background: rgba(6, 20, 33, 0.42);
    transform: translateZ(14px);
}

.hero-3d-panel {
    position: absolute;
    right: clamp(20px, 4vw, 72px);
    top: 176px;
    width: min(318px, 26vw);
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 42px);
    pointer-events: none;
    animation: panel-float 5.5s ease-in-out infinite;
}

.panel-screen {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(22, 198, 243, 0.34);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        rgba(6, 20, 33, 0.62);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34),
        0 0 44px rgba(22, 198, 243, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.panel-screen::before {
    content: "";
    position: absolute;
    inset: -40% -10%;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.18) 44%, transparent 62%);
    transform: translateX(-50%);
    animation: screen-sheen 4.8s ease-in-out infinite;
}

.panel-screen::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(22, 198, 243, 0.18) 1px, transparent 1px),
        linear-gradient(rgba(24, 208, 141, 0.13) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.24;
    mask-image: linear-gradient(135deg, #000, transparent 72%);
    pointer-events: none;
}

@keyframes panel-float {
    0%, 100% {
        transform: translate3d(0, 0, 42px);
    }

    50% {
        transform: translate3d(0, -10px, 54px);
    }
}

@keyframes screen-sheen {
    0%, 45% {
        transform: translateX(-65%);
    }

    100% {
        transform: translateX(65%);
    }
}

.panel-header,
.panel-kpis {
    position: relative;
    z-index: 1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 900;
}

.panel-header strong {
    color: var(--emerald);
}

.panel-wave {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    gap: 8px;
    height: 94px;
    margin: 18px 0;
}

.panel-wave span {
    flex: 1;
    min-width: 20px;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, var(--cyan), var(--emerald));
    box-shadow: 0 0 24px rgba(22, 198, 243, 0.42);
    animation: bar-rise 1.8s ease-in-out infinite;
}

.panel-wave span:nth-child(1) { height: 42%; animation-delay: 0ms; }
.panel-wave span:nth-child(2) { height: 72%; animation-delay: 120ms; }
.panel-wave span:nth-child(3) { height: 54%; animation-delay: 240ms; }
.panel-wave span:nth-child(4) { height: 88%; animation-delay: 360ms; }
.panel-wave span:nth-child(5) { height: 62%; animation-delay: 480ms; }

@keyframes bar-rise {
    0%, 100% {
        transform: scaleY(0.82);
        opacity: 0.72;
    }

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

.panel-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.panel-kpis div {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.panel-kpis strong,
.panel-kpis span {
    display: block;
}

.panel-kpis strong {
    color: #fff;
    font-size: 1.08rem;
}

.panel-kpis span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.panel-shadow {
    width: 78%;
    height: 24px;
    margin: 16px auto 0;
    border-radius: 50%;
    background: rgba(22, 198, 243, 0.2);
    filter: blur(18px);
    transform: rotateX(78deg) translateZ(-22px);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    color: #fff;
    font-size: 1.7rem;
}

.hero-metrics span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-band {
    background: #061421;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.trust-grid p {
    min-height: 74px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 18px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    border-inline: 1px solid rgba(255, 255, 255, 0.07);
}

.section {
    padding: clamp(76px, 9vw, 118px) 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    margin: 18px 0 0;
    color: #52677a;
    font-size: 1.05rem;
    line-height: 1.75;
}

.service-grid,
.client-grid,
.ally-grid,
.voice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.service-card,
.use-case,
.lead-form,
.ops-panel,
.client-card,
.ally-card,
.voice-card {
    border: 1px solid rgba(13, 34, 56, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 44px rgba(13, 34, 56, 0.08);
}

.service-card,
.client-card,
.ally-card,
.voice-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    transform-style: preserve-3d;
}

.service-card:hover,
.client-card:hover,
.ally-card:hover,
.voice-card:hover,
.access-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 198, 243, 0.32);
    box-shadow: 0 22px 56px rgba(13, 34, 56, 0.14);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.service-card h3,
.service-card p,
.client-card h3,
.client-card p,
.ally-card h3,
.ally-card p,
.voice-card h3,
.voice-card p,
.gallery-card h3,
.gallery-card p {
    transform: translateZ(18px);
}

.tilt-ready {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
    will-change: transform;
}

.tilt-ready:hover {
    box-shadow:
        0 26px 70px rgba(13, 34, 56, 0.18),
        0 0 0 1px rgba(22, 198, 243, 0.18);
}

.tilt-ready::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.2), transparent 34%);
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
}

.tilt-ready:hover::after {
    opacity: 1;
}

.service-icon,
.solution-item > span,
.contact-stack span,
.client-card > span,
.ally-card > span,
.voice-card > span,
.access-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, rgba(24, 208, 141, 0.22), rgba(22, 198, 243, 0.22));
}

.pill {
    padding: 7px 10px;
    border-radius: 999px;
    color: #0d6f54;
    background: rgba(24, 208, 141, 0.13);
    font-size: 0.74rem;
    font-weight: 900;
}

.service-card h3,
.solution-item h3,
.use-case h3,
.lead-form h3,
.client-card h3,
.ally-card h3,
.voice-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.14rem;
    line-height: 1.25;
}

.service-card p,
.use-case p,
.client-card p,
.ally-card p,
.voice-card p {
    margin: 14px 0 0;
    color: #5f7183;
    line-height: 1.65;
}

.client-card,
.ally-card,
.voice-card {
    min-height: 230px;
}

.client-card > span,
.ally-card > span,
.voice-card > span {
    margin-bottom: 22px;
}

.cloud-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.cloud-logo {
    min-height: 96px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(13, 34, 56, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(13, 34, 56, 0.07);
}

.cloud-logo span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 950;
}

.cloud-logo span::before {
    content: "";
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 7px;
    background: var(--cyan);
}

.cloud-logo.azure span::before {
    background: linear-gradient(135deg, #0078d4, #50e6ff);
}

.cloud-logo.google span::before {
    background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.cloud-logo.aws span::before {
    background: linear-gradient(135deg, #232f3e, #ff9900);
}

.cloud-logo.other span::before {
    background: linear-gradient(135deg, var(--emerald), var(--amber));
}

.ally-grid {
    grid-template-columns: repeat(3, 1fr);
}

.split-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 20, 33, 0.98), rgba(13, 34, 56, 0.96)),
        #061421;
}

.split-section .section-heading h2,
.split-section .section-heading p:not(.eyebrow) {
    color: #fff;
}

.split-section .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.split-grid,
.contact-grid,
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: clamp(30px, 6vw, 76px);
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
}

.feature-list li > span:first-child {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--ink);
    background: var(--emerald);
}

.feature-list li > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.ops-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 4vw, 34px);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}

.ops-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.ops-header span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.ops-header strong {
    color: var(--emerald);
    font-size: 2.8rem;
}

.ops-row {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

meter {
    width: 100%;
    height: 14px;
}

meter::-webkit-meter-bar {
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

meter::-webkit-meter-optimum-value {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan), var(--amber));
}

.ops-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.ops-cards div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.ops-cards span,
.ops-cards strong {
    display: block;
}

.ops-cards span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.ops-cards strong {
    margin-top: 7px;
    font-size: 1.08rem;
}

.muted {
    background: #f4f9fd;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.solution-item {
    min-height: 126px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(13, 34, 56, 0.09);
    border-radius: var(--radius);
    background: #fff;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.use-case {
    padding: 22px;
}

.access-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 20, 33, 0.97), rgba(7, 55, 74, 0.94)),
        #061421;
}

.access-section .section-heading h2,
.access-section .section-heading p:not(.eyebrow) {
    color: #fff;
}

.access-section .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.access-card {
    min-height: 220px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.access-card strong {
    font-size: 1.16rem;
    line-height: 1.25;
}

.access-card small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
}

.access-icon {
    color: #061421;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.voice-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.news-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 20, 33, 0.98), rgba(8, 58, 76, 0.94)),
        #061421;
}

.news-hero {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: stretch;
}

.news-hero h2 {
    max-width: 840px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.04;
}

.news-hero p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.news-campaign {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(22, 198, 243, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(24, 208, 141, 0.16), rgba(22, 198, 243, 0.1)),
        rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.news-campaign > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.news-campaign strong {
    color: #fff;
    font-size: 1.22rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 198, 243, 0.42);
}

.gallery-card figure {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease;
}

.gallery-card:hover img {
    transform: scale(1.035);
}

.gallery-card > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px 12px;
    padding: 20px;
}

.gallery-card > div > span {
    width: 38px;
    height: 38px;
    display: grid;
    grid-row: span 2;
    place-items: center;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.gallery-card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.25;
}

.gallery-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.voice-grid {
    margin-top: 38px;
}

.voice-card {
    min-height: 260px;
}

.voice-card h3 {
    font-size: 1.2rem;
}

.contact-offer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 26px;
    padding: 18px;
    border: 1px solid rgba(24, 208, 141, 0.28);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(24, 208, 141, 0.16), rgba(22, 198, 243, 0.12));
}

.contact-offer strong {
    display: grid;
    place-items: center;
    width: 92px;
    height: 68px;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    font-size: 1.28rem;
    font-weight: 950;
}

.contact-offer span {
    color: #345063;
    line-height: 1.55;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.contact-highlights span,
.form-badge {
    border-radius: 999px;
    color: #0d6f54;
    background: rgba(24, 208, 141, 0.14);
    font-weight: 900;
}

.contact-highlights span {
    padding: 9px 12px;
    font-size: 0.86rem;
}

.form-badge {
    width: fit-content;
    padding: 8px 12px;
    font-size: 0.78rem;
}

.form-helper {
    margin: -4px 0 0;
    color: #5f7183;
    font-size: 0.88rem;
    line-height: 1.55;
}

.philosophy-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 20, 33, 0.98), rgba(7, 55, 74, 0.96)),
        #061421;
}

.philosophy-section .section-heading h2,
.philosophy-section .section-heading p:not(.eyebrow) {
    color: #fff;
}

.philosophy-section .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.philosophy-list {
    display: grid;
    gap: 14px;
}

.philosophy-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.philosophy-list span {
    width: 42px;
    height: 42px;
    display: grid;
    grid-row: span 2;
    place-items: center;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.philosophy-list strong {
    color: #fff;
    font-size: 1.08rem;
}

.philosophy-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.legal-section {
    padding: 38px 0;
    color: #fff;
    background: #04101a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.legal-section .eyebrow {
    margin-bottom: 8px;
}

.legal-section h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.18;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.legal-links a {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.legal-links a:hover {
    color: #fff;
    border-color: rgba(22, 198, 243, 0.44);
}

.cta-strip {
    padding: 58px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6, 20, 33, 0.98), rgba(0, 135, 160, 0.9)),
        #061421;
}

.cta-strip h2,
.cta-strip .eyebrow {
    color: #fff;
}

.cta-strip .cta-grid {
    grid-template-columns: 1fr auto;
}

.contact-grid {
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-stack a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--ink);
    font-weight: 800;
}

.lead-form {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(180deg, rgba(22, 198, 243, 0.09), transparent 94px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.96)),
        #fff;
    box-shadow:
        0 26px 70px rgba(13, 34, 56, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.lead-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(22, 198, 243, 0.18), transparent 34%),
        radial-gradient(circle at 100% 18%, rgba(24, 208, 141, 0.16), transparent 32%),
        linear-gradient(90deg, rgba(22, 198, 243, 0.2), rgba(24, 208, 141, 0.16), transparent 52%);
    pointer-events: none;
}

.lead-form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan), rgba(38, 108, 255, 0.85));
    box-shadow: 0 0 24px rgba(22, 198, 243, 0.45);
}

.lead-form > * {
    position: relative;
    z-index: 1;
}

.lead-form h3 {
    font-size: 1.36rem;
}

.form-badge {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #063321;
    background: linear-gradient(90deg, rgba(24, 208, 141, 0.28), rgba(22, 198, 243, 0.22));
    border: 1px solid rgba(24, 208, 141, 0.38);
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(24, 208, 141, 0.14);
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: #2e4152;
    font-size: 0.88rem;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(13, 34, 56, 0.16);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    background: #fbfdff;
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.lead-form select {
    min-height: 50px;
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #0d2238 50%),
        linear-gradient(135deg, #0d2238 50%, transparent 50%),
        linear-gradient(90deg, rgba(22, 198, 243, 0.18), rgba(22, 198, 243, 0.18));
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 13px) 50%,
        calc(100% - 44px) 50%;
    background-size: 6px 6px, 6px 6px, 1px 24px;
    background-repeat: no-repeat;
    padding-right: 54px;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--cyan);
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(22, 198, 243, 0.16),
        0 12px 28px rgba(13, 34, 56, 0.08);
    transform: translateY(-1px);
}

.lead-form .is-invalid {
    border-color: var(--coral);
}

.form-alert {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.4;
}

.form-alert.is-ok {
    color: #075f45;
    background: rgba(24, 208, 141, 0.16);
}

.form-alert.is-error {
    color: #a93625;
    background: rgba(255, 109, 90, 0.15);
}

.site-footer {
    padding: 42px 0;
    color: rgba(255, 255, 255, 0.75);
    background: #061421;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 36px;
    align-items: start;
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.64);
}

.site-footer h2 {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
}

.site-footer p {
    margin: 10px 0 0;
    line-height: 1.7;
}

.footer-contact {
    display: grid;
    gap: 10px;
    text-align: right;
    font-weight: 800;
}

.social-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    gap: 12px;
    justify-items: end;
}

.social-actions {
    display: grid;
    gap: 9px;
    justify-items: end;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.social-float:hover .social-actions,
.social-float.is-open .social-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.social-action,
.social-toggle {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 0;
    color: #061421;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-action {
    position: relative;
    background: #fff;
}

.social-action.whatsapp,
.social-toggle {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.social-action.facebook {
    color: #fff;
    background: #1877f2;
}

.social-action.call {
    background: var(--amber);
}

.social-action.mail {
    background: #ffffff;
}

.social-action.ticket {
    color: #fff;
    background: var(--ink-2);
}

.social-action.portal {
    background: linear-gradient(135deg, #ffffff, var(--cyan));
}

.social-action span {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translate(8px, -50%);
    opacity: 0;
    width: max-content;
    max-width: 160px;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(6, 20, 33, 0.92);
    font-size: 0.8rem;
    font-weight: 900;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.social-action:hover,
.social-toggle:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.social-action:hover span,
.social-float.is-open .social-action span {
    opacity: 1;
    transform: translate(0, -50%);
}

.social-action svg,
.social-toggle svg {
    width: 24px;
    height: 24px;
}

.portal-body {
    position: relative;
    min-height: 100vh;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 20, 33, 0.95), rgba(7, 55, 74, 0.9)),
        url("../img/siptelia-hero.png") center / cover fixed;
    overflow-x: hidden;
}

.portal-body::before,
.portal-body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.portal-body::before {
    background-image:
        linear-gradient(rgba(22, 198, 243, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 208, 141, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.22;
    transform: perspective(900px) rotateX(58deg) translateY(110px) scale(1.25);
    transform-origin: bottom center;
}

.portal-body::after {
    background:
        linear-gradient(118deg, transparent 0 16%, rgba(22, 198, 243, 0.08) 16% 17%, transparent 17% 46%, rgba(24, 208, 141, 0.08) 46% 47%, transparent 47%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%);
    opacity: 0.86;
}

.portal-main {
    position: relative;
    z-index: 1;
    padding: 118px 0 72px;
}

.portal-body .site-header {
    z-index: 3;
}

.portal-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(24px, 5vw, 58px);
    align-items: start;
}

.portal-intro h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.portal-intro p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.portal-panel,
.knowledge-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.portal-panel::before,
.knowledge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(90deg, rgba(22, 198, 243, 0.09), transparent 46%);
    opacity: 0.78;
    pointer-events: none;
}

.portal-panel > *,
.knowledge-card > * {
    position: relative;
    z-index: 1;
}

.portal-panel {
    padding: clamp(22px, 4vw, 34px);
}

.portal-panel h2,
.knowledge-card h2 {
    margin: 0 0 18px;
    color: #fff;
}

.portal-form {
    display: grid;
    gap: 16px;
}

.portal-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.portal-form input,
.portal-form select,
.portal-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: #fff;
    background: rgba(6, 20, 33, 0.72);
    outline: 0;
}

.portal-form option {
    color: var(--ink);
}

.portal-results,
.knowledge-grid {
    display: grid;
    gap: 14px;
}

.portal-result,
.knowledge-card {
    padding: 20px;
}

.knowledge-card {
    transition: transform 180ms ease, border-color 180ms ease;
}

.knowledge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 208, 141, 0.34);
}

.portal-result {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portal-result:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 198, 243, 0.34);
    background: rgba(255, 255, 255, 0.11);
}

.portal-result strong,
.portal-result span {
    display: block;
}

.portal-result span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
}

.portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.portal-cta-note {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
}

.knowledge-card p,
.knowledge-card li {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.knowledge-card ul {
    margin: 0;
    padding-left: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-visible.tilt-ready {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
}

.hero-3d-panel.reveal {
    opacity: 1;
    transform: translate3d(0, 0, 42px);
}

.hero-3d-panel.reveal.is-visible {
    transform: translate3d(0, 0, 42px);
}

@media (max-width: 1040px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .service-grid,
    .use-case-grid,
    .client-grid,
    .access-grid,
    .cloud-logo-grid,
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-hero {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 138px;
    }

    .hero-3d-panel {
        position: relative;
        right: auto;
        top: auto;
        width: min(520px, 100%);
        margin-top: 28px;
        transform: rotateY(-8deg) rotateX(5deg);
    }

    .portal-main {
        padding-top: 154px;
    }

    .voice-card {
        min-height: 220px;
    }

    .solution-grid,
    .ally-grid,
    .philosophy-grid,
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 66px;
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding: 10px 14px;
        gap: 12px;
    }

    .main-nav {
        padding: 4px;
    }

    .main-nav a {
        flex: 0 0 auto;
        padding: 9px 11px;
        font-size: 0.84rem;
    }

    .brand small,
    .contact-link {
        display: none;
    }

    .language-control {
        min-width: 64px;
        padding-inline: 8px;
    }

    .header-actions .btn-accent {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 36px;
    }

    .hero-content {
        padding-top: 142px;
    }

    .hero-3d-panel {
        width: 100%;
        transform: none;
    }

    .panel-wave {
        height: 62px;
    }

    .panel-kpis {
        grid-template-columns: 1fr;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(6, 20, 33, 0.98) 0%, rgba(6, 20, 33, 0.86) 70%, rgba(6, 20, 33, 0.68) 100%),
            linear-gradient(180deg, rgba(6, 20, 33, 0.25), rgba(6, 20, 33, 0.98));
    }

    .hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-metrics,
    .trust-grid,
    .split-grid,
    .contact-grid,
    .cta-strip .cta-grid,
    .footer-grid,
    .portal-shell,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics div {
        padding: 16px;
    }

    .service-grid,
    .solution-grid,
    .use-case-grid,
    .ops-cards,
    .client-grid,
    .ally-grid,
    .access-grid,
    .cloud-logo-grid,
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lead-form {
        padding: 22px;
        gap: 15px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        min-height: 52px;
        font-size: 16px;
    }

    .lead-form textarea {
        min-height: 118px;
    }

    .form-helper {
        padding: 10px 12px;
        border-left: 3px solid var(--cyan);
        border-radius: 0 var(--radius) var(--radius) 0;
        background: rgba(22, 198, 243, 0.08);
    }

    .voice-section {
        padding-block: 66px;
    }

    .news-section {
        padding-block: 66px;
    }

    .gallery-card > div {
        grid-template-columns: 1fr;
    }

    .gallery-card > div > span {
        grid-row: auto;
    }

    .voice-card {
        min-height: auto;
        padding: 20px;
    }

    .voice-card > span {
        margin-bottom: 16px;
    }

    .philosophy-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-links {
        justify-content: flex-start;
    }

    .btn-portal {
        padding-inline: 12px;
    }

    .solution-item {
        min-height: auto;
    }

    .footer-contact {
        text-align: left;
    }

    .social-float {
        right: 16px;
        bottom: 16px;
    }

    .social-action,
    .social-toggle {
        width: 50px;
        height: 50px;
    }

    .social-action span {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-header {
        grid-template-columns: auto 1fr;
    }

    .site-header .brand > span:not(.brand-mark) {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .main-nav {
        grid-column: 1 / -1;
    }

    .btn-portal {
        min-height: 40px;
        padding-inline: 10px;
        font-size: 0.86rem;
    }

    .language-control {
        min-height: 40px;
        min-width: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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