:root {
    color-scheme: light;
    --navy-950: #020b16;
    --navy-900: #061426;
    --navy-850: #0a1c32;
    --navy-800: #0d2540;
    --blue-600: #2f79be;
    --blue-500: #4b9bdf;
    --blue-300: #8cc9ff;
    --cyan-400: #4ed6d1;
    --ink: #0b1c2e;
    --muted: #66768a;
    --paper: #f3f7fb;
    --white: #ffffff;
    --line-light: rgba(255, 255, 255, 0.14);
    --font-sans: "Lato", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--navy-950);
    color: var(--ink);
    font-family: var(--font-sans);
}

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

a {
    text-decoration: none;
}

.agency-page {
    overflow: hidden;
    background: var(--paper);
}

.hero-section {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 89% 23%, rgba(41, 117, 182, 0.25), transparent 24%),
        radial-gradient(circle at 8% 72%, rgba(31, 105, 164, 0.2), transparent 24%),
        linear-gradient(120deg, #030b15 0%, #061426 48%, #081d32 100%);
    isolation: isolate;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.hero-section::before {
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 55%, rgba(0, 0, 0, 0.35));
}

.hero-section::after {
    right: -16%;
    bottom: -69%;
    width: 88vw;
    aspect-ratio: 1;
    border: 1px solid rgba(91, 166, 227, 0.17);
    border-radius: 50%;
    box-shadow:
        0 0 0 44px rgba(91, 166, 227, 0.04),
        0 0 0 88px rgba(91, 166, 227, 0.04),
        0 0 0 132px rgba(91, 166, 227, 0.035),
        0 0 0 176px rgba(91, 166, 227, 0.03),
        0 0 0 220px rgba(91, 166, 227, 0.025);
    transform: rotate(-11deg);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-left {
    top: 25%;
    left: -230px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 121, 189, 0.2), transparent 68%);
}

.hero-glow-right {
    top: -230px;
    right: -160px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(34, 104, 164, 0.2), transparent 68%);
}

.site-header {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 106px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-link {
    display: inline-flex;
    width: 190px;
    border-radius: 6px;
}

.brand-link img {
    width: 100%;
}

.site-nav {
    justify-content: center;
    gap: 38px;
}

.site-nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    background: var(--blue-300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn:focus-visible,
.brand-link:focus-visible,
.scroll-cue:focus-visible {
    outline: 3px solid rgba(140, 201, 255, 0.72);
    outline-offset: 4px;
}

.btn-primary-action {
    --bs-btn-color: #03111f;
    --bs-btn-bg: var(--blue-300);
    --bs-btn-border-color: var(--blue-300);
    --bs-btn-hover-color: #03111f;
    --bs-btn-hover-bg: #b4dcff;
    --bs-btn-hover-border-color: #b4dcff;
    --bs-btn-active-color: #03111f;
    --bs-btn-active-bg: #b4dcff;
    --bs-btn-active-border-color: #b4dcff;
    padding-inline: 24px;
    box-shadow: 0 12px 30px rgba(75, 155, 223, 0.18);
}

.btn-secondary-action {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: rgba(255, 255, 255, 0.06);
    --bs-btn-border-color: rgba(255, 255, 255, 0.22);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.42);
    padding-inline: 24px;
}

.header-action {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.9rem;
}

.btn-whatsapp .fa-whatsapp {
    flex: 0 0 auto;
    font-size: 1.18rem;
    line-height: 1;
}

.header-action .fa-whatsapp {
    font-size: 1.05rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
    min-height: 620px;
    padding: 66px 0 84px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: var(--blue-300);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.hero-content h1,
.section-intro h2,
.process-heading h2,
.cta-panel h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.hero-content h1 {
    max-width: 690px;
    color: var(--white);
    font-size: clamp(3.35rem, 5vw, 5.15rem);
    line-height: 0.98;
}

.hero-content h1 em,
.section-intro h2 em,
.process-heading h2 em {
    color: var(--blue-300);
    font-style: normal;
}

.hero-copy {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.08rem;
    line-height: 1.7;
}

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

.hero-actions .btn-lg,
.cta-panel .btn-lg {
    min-height: 54px;
    font-size: 0.96rem;
}

.hero-summary {
    display: flex;
    gap: 56px;
    margin: 52px 0 0;
}

.hero-summary > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-summary dt {
    color: var(--white);
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
}

.hero-summary dd {
    margin: 0;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-height: 540px;
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-image-frame {
    position: absolute;
    top: 68px;
    right: 0;
    width: min(100%, 430px);
    height: 480px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 48% 48% 44% 44% / 34% 34% 58% 58%;
    background: var(--navy-800);
    box-shadow: 0 30px 80px rgba(0, 5, 12, 0.5);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 22, 40, 0.04), rgba(4, 18, 33, 0.42));
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.05);
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-badge {
    position: absolute;
    z-index: 3;
    top: -16px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-badge > span {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-300);
    color: var(--navy-950);
    font-size: 1.2rem;
}

.visual-badge p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    line-height: 1.45;
}

.visual-badge strong {
    display: block;
    color: var(--white);
    font-size: 0.98rem;
}

.visual-orbit {
    position: absolute;
    z-index: -1;
    --orbit-base-x: 0%;
    --orbit-parallax-x: 0px;
    --orbit-parallax-y: 0px;
    --orbit-rotation: 0deg;
    top: 30px;
    right: -70px;
    width: 505px;
    height: 505px;
    border: 1px solid rgba(112, 186, 247, 0.2);
    border-radius: 50%;
    transform: translate3d(calc(var(--orbit-base-x) + var(--orbit-parallax-x)), var(--orbit-parallax-y), 0) rotate(var(--orbit-rotation));
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-orbit::before,
.visual-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(112, 186, 247, 0.11);
    border-radius: 50%;
}

.visual-orbit::before {
    inset: 20px;
}

.visual-orbit::after {
    inset: 40px;
}

.visual-dot {
    position: absolute;
    z-index: 4;
    right: 1px;
    bottom: 42px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--navy-900);
    border-radius: 50%;
    background: var(--blue-300);
    box-shadow: 0 0 0 1px var(--blue-300);
}

.scroll-cue {
    position: absolute;
    right: 18px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--blue-300);
    font-style: normal;
    writing-mode: horizontal-tb;
}

.services-section {
    position: relative;
    padding: 0 0 120px;
    background: var(--paper);
}

.clients-showcase {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding: 22px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 12%, rgba(75, 155, 223, 0.2), transparent 28%),
        linear-gradient(135deg, #d8e8f5 0%, #e8f1f8 52%, #dbeaf6 100%);
}

.clients-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 28, 46, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 28, 46, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
}

.clients-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: clients-scroll 52s linear infinite;
}

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

.clients-list {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
}

.client-logo {
    display: grid;
    flex: 0 0 126px;
    width: 126px;
    height: 104px;
    margin: 0;
    overflow: hidden;
    place-items: center;
}

.client-logo img {
    width: 116px;
    max-width: none;
    height: 116px;
    max-height: none;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(1);
    opacity: 0.4;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.client-logo:hover img {
    filter: grayscale(0.18);
    opacity: 0.82;
    transform: scale(1.04);
}

@keyframes clients-scroll {
    to {
        transform: translateX(-50%);
    }
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 52px;
}

.eyebrow-dark {
    color: var(--blue-600);
}

.section-intro h2,
.process-heading h2,
.cta-panel h2 {
    font-size: clamp(2.6rem, 4.2vw, 4.25rem);
    line-height: 1.03;
}

.section-intro h2 {
    max-width: 840px;
    color: var(--ink);
}

.services-promise {
    padding-left: 22px;
    border-left: 2px solid var(--blue-500);
}

.services-promise > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-promise p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.services-promise strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.35;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid #d7e1eb;
    border-radius: 8px;
    background: #d7e1eb;
}

.service-card {
    min-height: 340px;
    padding: 30px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    transition: background-color 200ms ease, color 200ms ease;
}

.service-card:hover {
    background: var(--navy-850);
}

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

.service-number {
    color: var(--blue-600);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.service-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d7e1eb;
    border-radius: 50%;
    color: var(--ink);
    font-size: 1.1rem;
    transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
}

.service-card h3 {
    max-width: 490px;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
    transition: color 200ms ease;
}

.service-card p {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
    transition: color 200ms ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.62);
}

.service-card:hover .service-arrow {
    border-color: var(--blue-300);
    background: var(--blue-300);
    color: var(--navy-950);
}

.hosting-section {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
    border-top: 1px solid #b6cede;
    background:
        radial-gradient(circle at 7% 90%, rgba(6, 20, 38, 0.14), transparent 32%),
        radial-gradient(circle at 91% 9%, rgba(47, 121, 190, 0.18), transparent 30%),
        linear-gradient(rgba(13, 37, 64, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 37, 64, 0.05) 1px, transparent 1px),
        #e3edf5;
    background-size: 100% 100%, 100% 100%, 58px 58px, 58px 58px, auto;
}

.hosting-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(6, 20, 38, 0.08), transparent 24%, transparent 76%, rgba(47, 121, 190, 0.08));
    pointer-events: none;
}

.hosting-section::after {
    content: "";
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(13, 37, 64, 0.17);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(13, 37, 64, 0.045), 0 0 0 108px rgba(47, 121, 190, 0.035);
    pointer-events: none;
}

.hosting-section .container {
    position: relative;
    z-index: 1;
}

.hosting-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
    align-items: end;
    gap: clamp(40px, 7vw, 100px);
    margin-bottom: 46px;
}

.hosting-intro h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.6rem, 4.2vw, 4.25rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.hosting-intro h2 em {
    color: var(--blue-600);
    font-style: normal;
}

.hosting-intro > p {
    margin: 0;
    padding-left: 22px;
    border-left: 2px solid var(--blue-500);
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

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

.hosting-card {
    display: grid;
    grid-template-rows: 150px 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #cfdeea;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(13, 37, 64, 0.07);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.hosting-card:hover {
    border-color: #aac8df;
    box-shadow: 0 24px 55px rgba(13, 37, 64, 0.12);
    transform: translateY(-4px);
}

.hosting-logo {
    display: grid;
    min-width: 0;
    padding: 34px 42px;
    place-items: center;
    border-bottom: 1px solid #e1eaf1;
    background: #ffffff;
}

.hosting-logo img {
    width: auto;
    max-width: min(100%, 300px);
    max-height: 72px;
    object-fit: contain;
}

.hosting-card-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    gap: 26px;
    padding: 30px;
    background: #f9fbfd;
}

.hosting-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--ink);
    font-size: 1.55rem;
    font-weight: 900;
}

.hosting-brand i {
    flex: 0 0 auto;
    font-size: 0.78em;
}

.hosting-brand--rapidcloud i,
.hosting-brand--rapidcloud span {
    background: linear-gradient(90deg, #741fe3 0%, #a417f0 54%, #6533dd 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-brand--interserver i {
    background: linear-gradient(135deg, #f2a11f 10%, #20afd9 90%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-brand--interserver span {
    background: linear-gradient(90deg, #e99b1b 0%, #18212b 26%, #18212b 58%, #20aeda 75%, #18212b 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-card .hosting-brand--hostinger {
    color: #673de6;
}

.hosting-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--blue-600);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 900;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hosting-link:hover,
.hosting-link:focus-visible {
    background: var(--navy-850);
    color: var(--white);
    transform: translateY(-2px);
}

.hosting-link:focus-visible {
    outline: 3px solid rgba(47, 121, 190, 0.28);
    outline-offset: 3px;
}

.process-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 100%, rgba(54, 130, 193, 0.17), transparent 34%),
        var(--navy-900);
    color: var(--white);
}

.process-section::after {
    content: "";
    position: absolute;
    top: -210px;
    right: -240px;
    width: 630px;
    height: 630px;
    border: 1px solid rgba(140, 201, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(140, 201, 255, 0.025), 0 0 0 120px rgba(140, 201, 255, 0.018);
}

.process-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1fr);
    gap: clamp(60px, 9vw, 140px);
}

.process-heading {
    align-self: start;
    position: sticky;
    top: 40px;
}

.process-heading h2 {
    color: var(--white);
}

.process-heading > p:not(.eyebrow) {
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.04rem;
    line-height: 1.75;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 31px 0;
    border-top: 1px solid var(--line-light);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(140, 201, 255, 0.38);
    border-radius: 50%;
    color: var(--blue-300);
    font-size: 0.76rem;
    font-weight: 900;
}

.process-list h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
}

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

.cta-section {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(75, 155, 223, 0.2), transparent 24%),
        radial-gradient(circle at 8% 88%, rgba(78, 214, 209, 0.1), transparent 25%),
        linear-gradient(120deg, #edf6fc 0%, #dcecf8 52%, #eaf4fa 100%);
    isolation: isolate;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.cta-section::before {
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(47, 121, 190, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 121, 190, 0.055) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 52%, rgba(0, 0, 0, 0.55));
}

.cta-section::after {
    top: -260px;
    right: -180px;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(47, 121, 190, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(75, 155, 223, 0.035), 0 0 0 104px rgba(75, 155, 223, 0.02);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 54px;
    padding: 58px 0;
    border-top: 1px solid #b7d2e7;
    border-bottom: 1px solid #b7d2e7;
}

.cta-panel > div {
    max-width: 810px;
}

.cta-panel h2 {
    color: var(--ink);
}

.cta-panel .eyebrow {
    color: var(--blue-600);
}

.cta-panel p:not(.eyebrow) {
    max-width: 730px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-panel .btn-primary-action {
    box-shadow: 0 16px 38px rgba(47, 121, 190, 0.2);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 18%, rgba(50, 130, 195, 0.2), transparent 28%),
        radial-gradient(circle at 92% 72%, rgba(78, 214, 209, 0.08), transparent 26%),
        linear-gradient(120deg, #020b16 0%, #061426 58%, #071c2f 100%);
    isolation: isolate;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.site-footer::before {
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 55%, #000);
}

.site-footer::after {
    right: -230px;
    bottom: -310px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(140, 201, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(140, 201, 255, 0.025), 0 0 0 116px rgba(140, 201, 255, 0.016);
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand {
    display: inline-flex;
    width: 180px;
}

.footer-brand img {
    width: 100%;
}

.footer-action {
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-action p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.35;
}

.footer-action p span,
.footer-action p strong {
    display: block;
}

.footer-action p strong {
    margin-top: 3px;
    color: var(--white);
    font-size: 1.08rem;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.42fr) minmax(190px, 0.48fr);
    gap: clamp(54px, 8vw, 120px);
    padding: 76px 0;
}

.footer-contact h2 {
    max-width: 690px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.45rem, 4.2vw, 4.25rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--blue-300);
    font-size: 1.1rem;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-email:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column h3 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 900;
}

.footer-column ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.56);
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
    color: var(--blue-300);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.error-section {
    min-height: 520px;
    padding: 80px 0;
    background: var(--paper);
}

.error-section h1 {
    margin: 0;
    color: var(--ink);
    font-size: 3rem;
    font-weight: 900;
}

.error-section p:not(.section-kicker) {
    max-width: 560px;
    margin: 18px auto 28px;
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
        gap: 44px;
    }

    .hero-image-frame {
        height: 440px;
    }

    .hero-summary {
        gap: 30px;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 62px 0 72px;
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-content h1 {
        max-width: 780px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-image-frame {
        right: auto;
        left: 50%;
        width: min(78vw, 560px);
        height: 430px;
        transform: translateX(-50%);
    }

    .visual-badge {
        right: 9%;
    }

    .visual-orbit {
        right: 50%;
        --orbit-base-x: 50%;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hosting-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .process-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-heading {
        position: static;
        max-width: 740px;
    }

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

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .hero-section::after {
        right: -58%;
        bottom: -12%;
        width: 150vw;
    }

    .site-header {
        min-height: 88px;
    }

    .brand-link {
        width: 138px;
    }

    .header-action {
        min-height: 40px;
        padding-inline: 16px;
        font-size: 0.78rem;
    }

    .hero-layout {
        padding-top: 52px;
    }

    .hero-content h1 {
        font-size: clamp(2.75rem, 12vw, 4.2rem);
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-image-frame {
        top: 66px;
        width: min(86vw, 460px);
        height: 350px;
    }

    .visual-badge {
        right: 0;
    }

    .visual-orbit {
        top: 25px;
        width: 400px;
        height: 400px;
    }

    .services-section {
        padding: 0 0 82px;
    }

    .process-section {
        padding: 82px 0;
    }

    .hosting-section {
        padding: 82px 0;
    }

    .clients-showcase {
        margin-bottom: 30px;
        padding: 16px 0;
    }

    .clients-list {
        gap: 6px;
        padding-right: 6px;
    }

    .client-logo {
        flex-basis: 114px;
        width: 114px;
        height: 94px;
    }

    .client-logo img {
        width: 104px;
        height: 104px;
    }

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

    .service-card {
        min-height: auto;
    }

    .service-card-top {
        margin-bottom: 42px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-panel {
        gap: 30px;
        padding: 46px 0;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        padding: 58px 0;
    }
}

@media (max-width: 575.98px) {
    .site-header {
        gap: 14px;
    }

    .brand-link {
        width: 116px;
    }

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

    .footer-action {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .footer-action .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-contact h2 {
        font-size: 2.55rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .visual-badge {
        left: 10px;
        right: auto;
    }

    .hero-image-frame {
        width: 92vw;
        height: 330px;
    }

    .section-intro h2,
    .process-heading h2,
    .cta-panel h2 {
        font-size: 2.55rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .hosting-intro h2 {
        font-size: 2.55rem;
    }

    .hosting-card {
        grid-template-rows: 126px 1fr;
    }

    .hosting-logo {
        padding: 28px 30px;
    }

    .hosting-logo img {
        max-height: 58px;
    }

    .hosting-card-content {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
        padding: 26px 24px;
    }

    .hosting-link {
        width: 100%;
        justify-content: center;
    }

    .process-list li {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .process-list li > span {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .clients-marquee {
        overflow-x: auto;
        mask-image: none;
    }

    .clients-track {
        animation: none;
        transform: none;
    }

    .clients-list[aria-hidden="true"] {
        display: none;
    }
}
