:root {
    --page-bg: #f4f5f7;
    --bg: #f7f8fb;
    --ink: #303034;
    --muted: #68707c;
    --panel: #ffffff;
    --panel-soft: #f0f2f8;
    --line: #e1e4ee;
    --accent: #21165f;
    --accent-dark: #120a38;
    --accent-soft: #efedff;
    --brand-blue: #30228a;
    --brand-violet: #4a39b5;
    --signal: #3278ff;
    --teal: #21165f;
    --teal-dark: #15113d;
    --steel: #515760;
    --shadow: 0 18px 44px rgba(28, 27, 54, .1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    padding: 12px clamp(18px, 4vw, 42px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(33, 22, 95, .12);
    backdrop-filter: blur(14px);
    animation: slideDown 1.05s cubic-bezier(.16, 1, .3, 1) both;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    width: min(330px, 38vw);
    max-height: 58px;
    object-fit: contain;
    transform-origin: left center;
    animation: logoIntro 1.15s cubic-bezier(.16, 1, .3, 1) .18s both;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    border: 2px solid var(--ink);
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: .78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    animation: navIntro 1.05s cubic-bezier(.16, 1, .3, 1) .42s both;
}

.main-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav .is-active {
    color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.main-nav .nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 44px;
    gap: 10px;
    padding: 0 9px 0 17px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent) 58%, var(--brand-blue));
    color: #fff;
    border-color: rgba(33, 22, 95, .2);
    box-shadow: 0 14px 28px rgba(18, 10, 56, .25), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.main-nav .nav-quote {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 44px;
    gap: 10px;
    padding: 0 9px 0 17px;
    border-radius: 999px;
    border-color: rgba(33, 22, 95, .2);
    color: var(--accent);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 24px rgba(18, 10, 56, .1), inset 0 1px 0 rgba(255, 255, 255, .78);
}

.main-nav .nav-cta::before,
.main-nav .nav-quote::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 64%);
    pointer-events: none;
}

.main-nav .nav-cta::after,
.main-nav .nav-quote::after {
    content: "\2192";
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: inherit;
    font-size: 1rem;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
    transition: transform .2s ease, background .2s ease;
}

.main-nav .nav-quote::after {
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px rgba(33, 22, 95, .08);
}

.main-nav .nav-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-dark), var(--brand-blue) 58%, var(--signal));
    box-shadow: 0 18px 34px rgba(18, 10, 56, .3), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.main-nav .nav-quote:hover {
    border-color: rgba(48, 34, 138, .36);
    background: #fff;
    box-shadow: 0 15px 30px rgba(18, 10, 56, .15);
}

.main-nav .nav-cta:hover::after,
.main-nav .nav-quote:hover::after {
    transform: translateX(2px);
    background: rgba(255, 255, 255, .22);
}

.main-nav .nav-quote:hover::after {
    background: #e8e5ff;
}

.main-nav .lang-link {
    border: 1px solid var(--line);
    color: var(--accent);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    font-weight: 900;
    animation: menuIntro 1s cubic-bezier(.16, 1, .3, 1) .42s both;
}

.hero {
    position: relative;
    min-height: clamp(520px, calc(100vh - 82px), 650px);
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background: #15151a;
}

.hero-carousel::after {
    content: "";
    position: absolute;
    left: -10vw;
    right: -10vw;
    bottom: -92px;
    z-index: 3;
    height: clamp(135px, 14vw, 190px);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: var(--page-bg);
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.15s ease;
}

.hero-image.is-active {
    opacity: 1;
    animation: heroImageZoom 10s linear both;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(18, 10, 56, .42) 44%, rgba(0, 0, 0, .55) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .12));
}

.hero-lines {
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    opacity: .4;
    background:
        repeating-linear-gradient(90deg, rgba(201, 196, 255, .22) 0 1px, transparent 1px 94px),
        linear-gradient(180deg, transparent, rgba(18, 10, 56, .76));
    transform: skewY(-2deg);
    transform-origin: bottom left;
    animation: lineDrift 9s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 36px));
    margin-left: clamp(18px, 7vw, 96px);
    color: #fff;
}

.hero-content-center {
    width: min(960px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 86px;
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-content-center h1 {
    margin-bottom: 16px;
    max-width: 980px;
    color: #fff;
    font-size: clamp(2.65rem, 5.2vw, 4.9rem);
    line-height: 1.02;
}

.hero-content-center h1 span {
    color: var(--signal);
}

.hero-content-center p {
    max-width: 720px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .96);
    font-size: clamp(1.08rem, 1.5vw, 1.36rem);
    font-weight: 850;
    line-height: 1.45;
}

.hero-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #075cff, #0046e8);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 70, 232, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-quote-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1268ff, #003fd1);
    box-shadow: 0 20px 40px rgba(0, 70, 232, .43), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.hero-carousel + .section {
    padding-top: clamp(42px, 4vw, 58px);
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.kicker {
    margin: 0 0 10px;
    color: #c9c4ff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    max-width: 900px;
    font-size: clamp(2.2rem, 6vw, 5.1rem);
    line-height: .96;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.02;
}

h3 {
    margin-bottom: 9px;
}

.hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, .8);
    font-size: 1.08rem;
    line-height: 1.6;
}

.hero-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 10px 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 64%);
    pointer-events: none;
}

.button::after {
    content: "\2192";
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: inherit;
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button.primary {
    background: linear-gradient(135deg, #120a38, var(--accent) 58%, var(--brand-blue));
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 18px 34px rgba(18, 10, 56, .34), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.button.secondary {
    background: rgba(255, 255, 255, .96);
    color: var(--accent-dark);
    border-color: rgba(33, 22, 95, .18);
    box-shadow: 0 14px 28px rgba(18, 10, 56, .16), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.button.secondary::after {
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px rgba(33, 22, 95, .08);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(28, 27, 54, .26), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.button:hover::after {
    transform: translateX(3px);
    background: rgba(255, 255, 255, .18);
}

.button.secondary:hover::after {
    background: #e8e5ff;
}

.button:active {
    transform: translateY(-1px);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    max-width: 700px;
}

.metric-row span {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 900;
    transform: translateY(0);
    transition: transform .2s ease, background .2s ease;
}

.metric-row span:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-3px);
}

.section,
.page-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: clamp(54px, 8vw, 96px) 0;
}

.split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
}

.home-page {
    background: var(--page-bg);
}

.home-segment {
    position: relative;
    scroll-margin-top: 82px;
}

.home-services {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    display: grid;
    padding: clamp(42px, 4vw, 58px) max(18px, calc((100% - 1180px) / 2)) clamp(66px, 7vw, 88px);
    background: var(--page-bg);
    border-bottom: 1px solid rgba(33, 22, 95, .08);
}

.home-services-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
}

.services-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 28px;
    padding: 0 28px;
    border: 3px solid #075cff;
    border-radius: 999px;
    color: #075cff;
    background: transparent;
    font-weight: 750;
}

.home-services h2 {
    margin-bottom: 12px;
    color: #252528;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.08;
}

.home-services h2 span {
    color: #3285df;
}

.services-lead {
    margin: 0 auto 22px;
    max-width: 900px;
    color: #27272a;
    font-size: clamp(1.08rem, 1.7vw, 1.42rem);
    font-weight: 800;
    line-height: 1.45;
}

.services-description {
    max-width: 1100px;
    margin: 0 auto;
    color: #7a7c81;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.55;
    text-align: left;
}

.service-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 8vw, 92px);
    margin-top: clamp(48px, 7vw, 72px);
}

.service-showcase-item {
    display: grid;
    justify-items: center;
    gap: 20px;
    color: #252528;
    text-align: center;
    transition: transform .24s ease, color .24s ease;
}

.service-showcase-item:hover {
    color: var(--brand-blue);
    transform: translateY(-5px);
}

.service-showcase-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #075cff;
}

.service-showcase-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-showcase-item h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.55vw, 1.35rem);
    line-height: 1.2;
}

.home-racks {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    display: grid;
    align-content: center;
    padding: clamp(72px, 7vw, 96px) max(18px, calc((100% - 1180px) / 2)) clamp(82px, 8vw, 112px);
    background: #f8f9fb;
    border-top: 1px solid rgba(33, 22, 95, .06);
}

.home-racks-heading,
.home-racks .rack-grid {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.home-racks-heading {
    margin-bottom: clamp(30px, 4vw, 48px);
    text-align: center;
}

.home-racks-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 24px;
    padding: 0 26px;
    border: 2px solid #075cff;
    border-radius: 999px;
    color: #075cff;
    background: transparent;
    font-weight: 750;
}

.home-racks-heading h2 {
    margin: 0 0 8px;
    color: #17171a;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.home-racks-heading h2 span {
    color: #3285df;
}

.home-racks-heading p {
    margin: 0;
    color: #2d2d31;
    font-size: clamp(1.08rem, 1.8vw, 1.38rem);
}

.home-rack-grid {
    gap: 18px;
}

.home-rack-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(33, 22, 95, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28, 27, 54, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-rack-card:hover {
    border-color: rgba(48, 34, 138, .28);
    box-shadow: 0 20px 42px rgba(28, 27, 54, .16);
    transform: translateY(-5px);
}

.home-rack-image-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: var(--panel-soft);
}

.home-rack-image-link img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.home-rack-card:hover .home-rack-image-link img {
    transform: scale(1.045);
}

.home-rack-card h3 {
    margin: 18px 0 16px;
    color: #28282c;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    text-align: center;
}

.home-rack-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    margin-top: auto;
    padding: 0 10px 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #075cff, #30228a);
    color: #fff;
    box-shadow: 0 12px 24px rgba(7, 92, 255, .22);
    font-weight: 900;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.home-rack-cta span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    transition: transform .22s ease;
}

.home-rack-cta:hover {
    box-shadow: 0 16px 30px rgba(7, 92, 255, .3);
    transform: translateY(-2px);
}

.home-rack-cta:hover span {
    transform: translateX(3px);
}

.home-discover {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(76px, 8vw, 108px) max(18px, calc((100% - 1120px) / 2)) clamp(82px, 8vw, 112px);
    background: var(--page-bg);
    border-top: 1px solid rgba(33, 22, 95, .07);
}

.home-discover-heading {
    width: min(980px, 100%);
    margin: 0 auto clamp(34px, 5vw, 52px);
    text-align: center;
}

.home-discover-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 24px;
    padding: 0 26px;
    border: 2px solid #075cff;
    border-radius: 999px;
    color: #075cff;
    font-weight: 750;
}

.home-discover-heading h2 {
    margin: 0 0 8px;
    color: #242428;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.home-discover-heading h2 span {
    color: #3285df;
}

.home-discover-heading > p {
    margin: 0;
    color: #2d2d31;
    font-size: clamp(1.08rem, 1.8vw, 1.36rem);
    font-weight: 750;
}

.discover-layout {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.discover-project-card,
.discover-feature-card {
    border: 1px solid rgba(33, 22, 95, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28, 27, 54, .1);
}

.discover-project-card {
    padding: 20px;
}

.discover-project-card img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    border-radius: 8px;
    object-fit: cover;
}

.discover-project-card h3 {
    margin: 18px 0;
    color: #252529;
    text-align: center;
}

.discover-project-card ul {
    margin: 0;
    padding-left: 20px;
    color: #73767d;
    line-height: 1.55;
}

.discover-project-card li + li {
    margin-top: 6px;
}

.discover-project-card > p {
    margin: 20px 0 0;
    color: #73767d;
    line-height: 1.55;
}

.discover-feature-list {
    display: grid;
    gap: 18px;
}

.discover-feature-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 158px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.discover-feature-card:hover {
    border-color: rgba(7, 92, 255, .24);
    box-shadow: 0 18px 38px rgba(28, 27, 54, .14);
    transform: translateY(-4px);
}

.discover-feature-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    color: #075cff;
}

.discover-feature-icon svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.discover-feature-card h3 {
    margin: 0 0 7px;
    color: #27272b;
    font-size: 1.22rem;
}

.discover-feature-card p {
    margin: 0;
    color: #74777e;
    line-height: 1.5;
}

.home-clients {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(76px, 8vw, 108px) 0 clamp(84px, 8vw, 112px);
    overflow: hidden;
    border-top: 1px solid rgba(33, 22, 95, .07);
    background: #f6f7f9;
}

.home-clients-heading {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto clamp(46px, 6vw, 68px);
    text-align: center;
}

.home-clients-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 24px;
    padding: 0 26px;
    border: 2px solid #075cff;
    border-radius: 999px;
    color: #075cff;
    font-weight: 750;
}

.home-clients-heading h2 {
    margin: 0 0 10px;
    color: #242428;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.home-clients-heading h2 span {
    color: #3285df;
}

.home-clients-heading > p {
    margin: 0;
    color: #2d2d31;
    font-size: clamp(1.08rem, 1.8vw, 1.36rem);
    font-weight: 750;
}

.clients-marquee {
    --client-gap: clamp(44px, 7vw, 110px);
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: clients-marquee 26s linear infinite;
    will-change: transform;
}

.clients-logo-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--client-gap);
    padding-right: var(--client-gap);
}

.client-logo {
    display: grid;
    flex: 0 0 clamp(210px, 20vw, 280px);
    place-items: center;
    width: clamp(210px, 20vw, 280px);
    height: 132px;
    padding: 10px;
}

.client-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 9px rgba(31, 29, 50, .08));
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.home-quote {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 780px;
    place-items: center;
    padding: clamp(72px, 8vw, 104px) max(18px, calc((100% - 1080px) / 2));
    overflow: hidden;
    background-image: url("../img/contacto-almacen.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
}

.home-quote::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(22, 24, 83, .72);
    content: "";
}

.home-quote-inner {
    width: min(940px, 100%);
}

.home-quote-heading {
    margin-bottom: 34px;
    text-align: center;
}

.home-quote-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 20px;
    padding: 0 26px;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
}

.home-quote-heading h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
}

.home-quote-heading p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    font-weight: 700;
}

.home-quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    padding: clamp(24px, 4vw, 38px);
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    background: rgba(20, 26, 66, .48);
    box-shadow: 0 24px 70px rgba(6, 9, 38, .28);
    backdrop-filter: blur(5px);
}

.home-quote-form label:not(.form-honeypot) {
    display: grid;
    align-content: start;
    gap: 7px;
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 800;
}

.home-quote-form label b {
    color: #ff7777;
}

.home-quote-form input,
.home-quote-form select,
.home-quote-form textarea {
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 4px;
    background: rgba(255, 255, 255, .95);
    color: #24242b;
}

.home-quote-form input:focus,
.home-quote-form select:focus,
.home-quote-form textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
}

.home-quote-form textarea {
    min-height: 132px;
}

.home-quote-form .char-counter {
    color: rgba(255, 255, 255, .72);
    text-align: right;
}

.home-quote-submit {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 6px;
    background: #075cff;
    color: #fff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(7, 92, 255, .28);
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.home-quote-submit span {
    transition: transform .22s ease;
}

.home-quote-submit:hover {
    background: #034edc;
    box-shadow: 0 16px 30px rgba(7, 92, 255, .38);
    transform: translateY(-2px);
}

.home-quote-submit:hover span {
    transform: translateX(3px);
}

.home-quote-notices {
    margin: 0 0 18px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.home-process {
    min-height: clamp(560px, calc(78svh - 82px), 760px);
    display: grid;
    align-content: center;
    padding-top: clamp(76px, 8vw, 108px);
    padding-bottom: clamp(76px, 8vw, 108px);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-grid,
.rack-grid,
.process-grid,
.form-section {
    display: grid;
    gap: 18px;
}

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

.service-card,
.rack-card,
.process-grid article,
.feature-panel,
.form-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.service-card,
.rack-card,
.process-grid article,
.feature-panel,
.form-card,
.contact-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover,
.rack-card:hover,
.process-grid article:hover,
.feature-panel:hover,
.contact-card:hover {
    border-color: rgba(48, 34, 138, .38);
    box-shadow: 0 22px 52px rgba(28, 27, 54, .16);
    transform: translateY(-4px);
}

.service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 18px;
    background: linear-gradient(180deg, #fff, #fbfcff);
}

.service-card span {
    width: 13px;
    height: 42px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--brand-blue), var(--signal));
    box-shadow: 0 0 0 6px rgba(48, 34, 138, .1);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2 {
    max-width: 720px;
}

.section-heading a,
.rack-card a,
.back-link {
    color: var(--brand-blue);
    font-weight: 900;
    text-decoration: none;
}

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

.rack-grid.wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rack-card {
    overflow: hidden;
    min-height: 310px;
}

.rack-card-image {
    width: 100%;
    height: 164px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
    background: var(--panel-soft);
    filter: saturate(1.02) contrast(1.03);
    transition: transform .5s ease;
}

.rack-card:hover .rack-card-image {
    transform: scale(1.045);
}

.rack-card h3,
.rack-card p,
.rack-card a {
    margin-left: 18px;
    margin-right: 18px;
}

.rack-card p {
    color: var(--muted);
    line-height: 1.5;
}

.process {
    width: 100%;
    max-width: none;
    padding-left: max(18px, calc((100% - 1180px) / 2));
    padding-right: max(18px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, #15113d 0%, #21165f 50%, #303034 100%);
    color: #fff;
}

.process .section-heading {
    width: min(1180px, 100%);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
    min-height: 210px;
    padding: 22px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    box-shadow: none;
}

.process-grid span {
    color: #c9c4ff;
    font-weight: 900;
}

.process-grid p {
    color: rgba(255, 255, 255, .75);
}

.coming-soon-page {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: calc(100svh - 82px);
    place-items: center;
    padding: clamp(72px, 10vw, 132px) 18px;
    overflow: hidden;
    background-image: url("../img/contacto-almacen.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.coming-soon-page::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(20, 20, 72, .78);
    content: "";
}

.coming-soon-content {
    width: min(780px, 100%);
}

.coming-soon-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
}

.coming-soon-kicker {
    margin: 30px 0 12px;
    color: #75b7ff;
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.coming-soon-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 7vw, 6rem);
    line-height: 1;
}

.coming-soon-text {
    max-width: 680px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.coming-soon-home,
.coming-soon-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.coming-soon-home {
    border: 1px solid #075cff;
    background: #075cff;
    color: #fff;
    box-shadow: 0 14px 30px rgba(7, 92, 255, .3);
}

.coming-soon-contact {
    border: 1px solid rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.coming-soon-home:hover,
.coming-soon-contact:hover {
    transform: translateY(-2px);
}

.coming-soon-home:hover {
    background: #034edc;
    box-shadow: 0 18px 36px rgba(7, 92, 255, .38);
}

.coming-soon-contact:hover {
    background: rgba(255, 255, 255, .16);
}

.compact-hero,
.detail-hero {
    padding: clamp(56px, 9vw, 108px) 0 clamp(34px, 6vw, 64px);
}

.compact-hero h1,
.detail-hero h1 {
    max-width: 920px;
    font-size: clamp(2rem, 5vw, 4rem);
}

.detail-hero p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
}

.feature-panel {
    padding: clamp(24px, 4vw, 40px);
}

.feature-panel p,
.feature-panel li {
    color: var(--muted);
    line-height: 1.7;
}

.image-panel {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.form-section {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
}

.form-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(22px, 4vw, 36px);
}

.form-card label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.form-card label:last-of-type {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cfd4df;
    border-radius: 6px;
    padding: 0 12px;
    font: inherit;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(48, 34, 138, .1);
}

textarea {
    min-height: 138px;
    padding-top: 12px;
    resize: vertical;
}

.form-card button {
    width: fit-content;
}

.contact-card {
    padding: 24px;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.6;
}

.notice-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 18px auto 0;
}

.notice {
    margin: 0 0 8px;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.notice.success {
    background: var(--accent-soft);
    color: var(--accent);
}

.notice.error {
    background: #ffe6df;
    color: #9a321c;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 32px clamp(18px, 4vw, 42px);
    background: #15151a;
    color: #fff;
}

.site-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .64);
}

.site-footer a {
    color: #fff;
    font-weight: 850;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    left: clamp(14px, 2.5vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    max-width: calc(100vw - 28px);
    padding: 7px 16px 7px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #303034;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(33, 22, 95, .08);
    box-shadow: 0 18px 40px rgba(18, 10, 56, .18), 0 4px 12px rgba(18, 10, 56, .08);
    backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(18, 10, 56, .24), 0 5px 14px rgba(18, 10, 56, .1);
}

.whatsapp-float-icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #35d869;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(53, 216, 105, .15);
    animation: whatsappMove 5s ease-in-out infinite;
}

.whatsapp-float-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 1px solid rgba(53, 216, 105, .42);
    opacity: 0;
    animation: whatsappRing 5s ease-out infinite;
}

.whatsapp-float-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.whatsapp-float-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.char-counter {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
}

.reveal,
[data-reveal] {
    opacity: 0;
    transform: translateY(36px) scale(.985);
    filter: blur(2px);
    transition: opacity .78s ease, transform .78s cubic-bezier(.16, 1, .3, 1), filter .62s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-reveal-section] {
    opacity: 0;
    filter: blur(3px);
    transition: opacity .88s ease, filter .7s ease;
    will-change: opacity;
}

[data-reveal-section].is-visible {
    opacity: 1;
    filter: blur(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoIntro {
    from {
        opacity: 0;
        filter: blur(4px);
        transform: translateX(-18px) scale(.96);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
}

@keyframes navIntro {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuIntro {
    from {
        opacity: 0;
        transform: translateX(14px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes whatsappMove {
    0%,
    78%,
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }
    82% {
        transform: translateY(-3px) rotate(-7deg) scale(1.04);
    }
    86% {
        transform: translateY(2px) rotate(6deg) scale(.99);
    }
    90% {
        transform: translateY(-2px) rotate(-4deg) scale(1.03);
    }
    94% {
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes whatsappRing {
    0%,
    78%,
    100% {
        opacity: 0;
        transform: scale(.88);
    }
    82% {
        opacity: .7;
        transform: scale(1);
    }
    94% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes heroImageZoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.09);
    }
}

@keyframes lineDrift {
    from {
        transform: translateX(-16px) skewY(-2deg);
    }
    to {
        transform: translateX(16px) skewY(-2deg);
    }
}

@keyframes clients-marquee {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
        transform: translateX(0);
    }
}

@media (max-width: 980px) {
    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .brand-logo {
        width: min(300px, 54vw);
    }

    .main-nav.is-open {
        display: flex;
    }

    .split,
    .form-section {
        grid-template-columns: 1fr;
    }

    .rack-grid,
    .rack-grid.wide,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .discover-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .coming-soon-page {
        min-height: calc(100svh - 74px);
        padding: 64px 18px 78px;
        background-position: 32% center;
    }

    .coming-soon-content h1 {
        font-size: clamp(2.5rem, 13vw, 3.6rem);
    }

    .coming-soon-actions {
        flex-direction: column;
    }

    .coming-soon-home,
    .coming-soon-contact {
        width: 100%;
    }

    .hero {
        min-height: min(610px, calc(100vh - 74px));
    }

    .hero-carousel::after {
        bottom: -68px;
        height: 118px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(18, 10, 56, .56) 48%, rgba(0, 0, 0, .62) 100%);
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content-center {
        width: min(100% - 32px, 420px);
        padding: 24px 0 78px;
    }

    .hero-content-center h1 {
        font-size: clamp(2.15rem, 12vw, 3.25rem);
        line-height: 1.04;
    }

    .hero-content-center p {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .hero-quote-button {
        min-height: 50px;
        padding: 0 28px;
    }

    .hero-carousel + .section {
        padding-top: 68px;
    }

    .home-services {
        min-height: auto;
        padding: 68px 18px 62px;
    }

    .home-racks,
    .home-discover,
    .home-clients,
    .home-process {
        min-height: auto;
    }

    .home-racks {
        padding: 68px 18px 76px;
    }

    .home-racks-pill {
        min-height: 38px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: .9rem;
    }

    .home-rack-card {
        padding: 18px;
    }

    .home-discover {
        padding: 68px 18px 76px;
    }

    .home-discover-pill {
        min-height: 38px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: .9rem;
    }

    .discover-project-card {
        padding: 16px;
    }

    .discover-feature-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 14px;
        min-height: 136px;
        padding: 18px;
    }

    .discover-feature-icon {
        width: 62px;
        height: 62px;
    }

    .discover-feature-icon svg {
        width: 56px;
        height: 56px;
    }

    .home-clients {
        padding-top: 68px;
        padding-bottom: 76px;
    }

    .home-clients-heading {
        margin-bottom: 42px;
    }

    .home-clients-pill {
        min-height: 38px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: .9rem;
    }

    .clients-marquee {
        --client-gap: 34px;
    }

    .client-logo {
        flex-basis: 190px;
        width: 190px;
        height: 104px;
        padding: 6px;
    }

    .home-quote {
        min-height: auto;
        padding: 64px 18px 70px;
        background-position: 32% center;
    }

    .home-quote-heading {
        margin-bottom: 28px;
    }

    .home-quote-pill {
        min-height: 38px;
        margin-bottom: 18px;
        padding: 0 20px;
        font-size: .9rem;
    }

    .home-quote-heading h2 {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .home-quote-form {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .home-quote-submit {
        grid-column: auto;
        width: 100%;
    }

    .home-process {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .services-pill {
        min-height: 38px;
        margin-bottom: 22px;
        padding: 0 22px;
        font-size: .9rem;
    }

    .home-services h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .services-description {
        text-align: center;
    }

    .service-showcase-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 40px;
    }

    .service-showcase-item {
        gap: 14px;
    }

    .service-showcase-icon {
        width: 62px;
        height: 62px;
    }

    .service-showcase-icon svg {
        width: 52px;
        height: 52px;
    }

    .brand-logo {
        width: min(252px, 68vw);
        max-height: 52px;
    }

    .metric-row,
    .service-grid,
    .rack-grid,
    .rack-grid.wide,
    .process-grid,
    .form-card {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        left: 14px;
        bottom: 14px;
        min-height: 50px;
        padding: 6px 13px 6px 6px;
        font-size: .86rem;
    }

    .whatsapp-float-icon {
        width: 38px;
        height: 38px;
    }

    .whatsapp-float-icon svg {
        width: 25px;
        height: 25px;
    }
}
