@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-heading: "Space Grotesk", "Segoe UI", sans-serif;
    --page-gutter: clamp(16px, 1.75vw, 20px);
    --shell-wide: min(1660px, 100%);
    --shell-main: min(1600px, 100%);
    --shell-content: min(1620px, 100%);
    --ink-950: #050816;
    --ink-900: #0b1120;
    --ink-800: #13203c;
    --ink-700: #20345c;
    --slate-50: #f4f7ff;
    --slate-100: #edf2ff;
    --slate-200: #d8e2ff;
    --slate-400: #8394ba;
    --slate-500: #60739a;
    --slate-700: #31405f;
    --white: #ffffff;
    --brand-blue: #0087d0;
    --brand-cyan: #00a7e6;
    --brand-violet: #004c9d;
    --brand-pink: #00358b;
    --brand-orange: #00b4ef;
    --brand-red: #0074c8;
    --success: #25d366;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --surface-dark: rgba(10, 16, 34, 0.72);
    --border-soft: rgba(36, 67, 137, 0.10);
    --border-strong: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 24px 60px rgba(12, 25, 60, 0.12);
    --shadow-strong: 0 32px 70px rgba(6, 12, 28, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(0, 167, 230, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 135, 208, 0.10), transparent 26%),
        linear-gradient(180deg, #f6f9ff 0%, #eef3ff 44%, #f7f9fd 100%);
    color: var(--ink-900);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -2;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.7;
}

body::before {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 167, 230, 0.18), transparent 70%);
}

body::after {
    width: 360px;
    height: 360px;
    right: -140px;
    top: 26%;
    background: radial-gradient(circle, rgba(0, 135, 208, 0.14), transparent 72%);
}

::selection {
    background: rgba(0, 135, 208, 0.18);
    color: var(--ink-900);
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

p {
    margin-top: 0;
}

section {
    position: relative;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 var(--page-gutter);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 76, 157, 0.10);
    box-shadow: 0 18px 42px rgba(12, 25, 60, 0.10);
}

body.is-scrolled header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(12, 25, 60, 0.12);
}

.header-container {
    width: var(--shell-wide);
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 198px;
    padding: 4px 10px;
    flex-shrink: 0;
}

.logo-wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 236px;
    min-height: 74px;
    text-decoration: none;
    transition: transform 0.28s ease;
}

.site-logo-lockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.site-logo-copy {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    width: 132px;
    height: 64px;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 64px;
    max-height: 64px;
    height: auto;
    transform-origin: center;
    filter:
        saturate(1.14)
        contrast(1.08)
        brightness(1.06)
        drop-shadow(0 8px 18px rgba(0, 53, 139, 0.14));
    transition: filter 0.28s ease;
    animation: logoSpin 8s linear infinite;
}

.site-logo-wordmark {
    color: #15489f;
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    -webkit-text-stroke: 0.45px #15489f;
    text-shadow: 0 0 0 #15489f;
}

.site-logo-tagline {
    color: #15489f;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    opacity: 0.86;
}

.logo-wrapper:hover a {
    transform: translateY(-1px);
}

.logo-wrapper:hover .site-logo {
    filter:
        saturate(1.18)
        contrast(1.12)
        brightness(1.08)
        drop-shadow(0 12px 24px rgba(0, 53, 139, 0.18));
    animation-duration: 4.8s;
}

nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(244, 248, 255, 0.96);
    border: 1px solid rgba(0, 76, 157, 0.10);
    box-shadow:
        0 10px 24px rgba(12, 25, 60, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

nav a {
    position: relative;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink-800);
    font-size: 0.98rem;
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.14), rgba(0, 167, 230, 0.10));
    opacity: 0;
    transition: opacity 0.25s ease;
}

nav a:hover {
    color: var(--brand-violet);
    transform: translateY(-1px);
}

nav a:hover::before {
    opacity: 1;
}

nav a[aria-current="page"] {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-violet) 48%, var(--brand-blue) 100%);
    box-shadow: 0 14px 28px rgba(76, 78, 199, 0.28);
}

nav a[aria-current="page"]::before {
    display: none;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    margin-left: auto;
    border: 1px solid rgba(0, 76, 157, 0.12);
    border-radius: 16px;
    background: rgba(244, 248, 255, 0.96);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow:
        0 10px 20px rgba(12, 25, 60, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink-800);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 999px;
    border: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-violet) 45%, var(--brand-blue) 100%);
    background-clip: padding-box;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 20px 36px rgba(72, 78, 191, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    transform: translateZ(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(72, 78, 191, 0.26);
    filter: brightness(1.03);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

body .hero-home {
    min-height: auto;
    padding: 126px var(--page-gutter) 96px;
    background-color: #020307;
    background-image:
        radial-gradient(circle at 18% 18%, rgba(0, 135, 208, 0.18), transparent 24%),
        radial-gradient(circle at 82% 26%, rgba(0, 167, 230, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(2, 3, 7, 0.44) 0%, rgba(5, 8, 22, 0.22) 40%, rgba(8, 11, 23, 0.18) 72%, rgba(3, 5, 12, 0.32) 100%);
    background-size: auto, auto, cover;
    background-position: center, center, center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.legacy-hero {
    display: none;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.92;
    filter: saturate(0.96) brightness(0.96) contrast(1.05);
    transform: scale(1.03);
    z-index: 0;
    pointer-events: none;
}

body .hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 3, 7, 0.96) 0%, rgba(2, 3, 7, 0.82) 24%, rgba(4, 9, 20, 0.38) 58%, rgba(4, 9, 20, 0.46) 100%),
        radial-gradient(circle at 78% 24%, rgba(0, 167, 230, 0.12), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: auto, auto, 72px 72px, 72px 72px;
    background-position: center, center, center, center;
    opacity: 0.78;
}

body .hero-home::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 640px;
    height: 640px;
    right: -140px;
    top: -40px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(0, 135, 208, 0.34), transparent 44%),
        radial-gradient(circle at 35% 60%, rgba(0, 167, 230, 0.14), transparent 32%);
    filter: blur(24px);
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1700px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 2.8vw, 46px);
    align-items: stretch;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 700px;
    padding: 24px 0 18px;
    width: 100%;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-cyan));
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}

body .hero-content h1 {
    margin: 24px 0 18px;
    max-width: 14.5ch;
    font-size: clamp(2.9rem, 4.15vw, 4.55rem);
    color: var(--white);
    line-height: 0.95;
}

.hero-accent {
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0087d0 0%, #004c9d 48%, #00a7e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body .hero-tagline {
    max-width: 630px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 1rem;
    line-height: 1.58;
}

body .established {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin-top: 0;
}

.hero-proof-item {
    min-height: 88px;
    padding: 12px 14px 11px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.proof-label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-proof-item strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.38;
}

.hero-stage {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
    padding-top: 0;
}

.hero-orbit {
    position: absolute;
    width: min(82%, 470px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0, 53, 139, 0.20), transparent 58%),
        conic-gradient(from 180deg, rgba(0, 135, 208, 0.42), rgba(0, 167, 230, 0.24), rgba(0, 53, 139, 0.46), rgba(0, 135, 208, 0.40));
    filter: blur(20px);
    opacity: 0.78;
    animation: orbitPulse 9s ease-in-out infinite;
}

.hero-platform {
    position: relative;
    z-index: 1;
    width: min(100%, 585px);
    padding-top: 0;
    transform: rotateX(5deg) scale(0.94);
    transform-style: preserve-3d;
    margin-inline: auto;
}

.platform-top {
    position: relative;
    width: 84%;
    margin: 0 auto;
    min-height: 72px;
    padding: 15px 22px 20px;
    clip-path: polygon(11% 0, 89% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(76, 86, 156, 0.95) 0%, rgba(47, 56, 110, 0.94) 56%, rgba(28, 34, 73, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 34px rgba(4, 8, 22, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.platform-top::before {
    content: "";
    position: absolute;
    inset: 10px 22% 18px;
    background: radial-gradient(circle at center top, rgba(255, 255, 255, 0.22), transparent 62%);
    opacity: 0.88;
    pointer-events: none;
}

.platform-top::after {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    bottom: 10px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 167, 230, 0.92), rgba(0, 135, 208, 0.9), rgba(0, 167, 230, 0.92));
    box-shadow: 0 0 18px rgba(0, 167, 230, 0.42);
    opacity: 0.82;
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.signal-header-single {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 14px;
    text-align: center;
}

.signal-header-single span {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-align: center;
}

.signal-header-single::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(88%, 320px);
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(0, 167, 230, 0.92), rgba(0, 135, 208, 0.9), rgba(0, 167, 230, 0.92));
    box-shadow: 0 0 16px rgba(0, 167, 230, 0.28);
    opacity: 0.82;
}

.platform-top-title {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow:
        0 0 18px rgba(0, 135, 208, 0.20),
        0 0 22px rgba(0, 167, 230, 0.16);
}

.platform-top-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 135, 208, 0.78), rgba(0, 167, 230, 0.78));
    opacity: 0.9;
    box-shadow: 0 0 16px rgba(0, 167, 230, 0.26);
}

.platform-core {
    position: relative;
    margin-top: -2px;
    padding: 24px 24px 20px;
    border-radius: 0 0 22px 22px;
    background:
        linear-gradient(180deg, rgba(20, 25, 55, 0.98) 0%, rgba(12, 16, 35, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.platform-core::before {
    display: none;
}

.platform-glow {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 10px;
    border-radius: 999px;
    filter: blur(12px);
}

.platform-glow-top {
    top: 8px;
    background: linear-gradient(90deg, rgba(0, 167, 230, 0.9), rgba(0, 135, 208, 0.9));
}

.platform-glow-bottom {
    bottom: 16px;
    background: linear-gradient(90deg, rgba(0, 135, 208, 0.78), rgba(0, 167, 230, 0.78));
}

.platform-ribbon {
    position: relative;
    z-index: 1;
    margin-top: 6px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(0, 135, 208, 0.14), rgba(0, 76, 157, 0.12), rgba(0, 167, 230, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: 1.45;
}

.platform-video {
    position: relative;
    min-height: 250px;
    margin-bottom: 16px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 135, 208, 0.28), transparent 26%),
        radial-gradient(circle at 78% 22%, rgba(0, 167, 230, 0.26), transparent 24%),
        linear-gradient(140deg, rgba(10, 16, 32, 0.98) 0%, rgba(17, 25, 54, 0.96) 48%, rgba(8, 11, 24, 0.98) 100%);
    border: 1px solid rgba(145, 163, 255, 0.16);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 38px rgba(4, 8, 22, 0.32);
}

.platform-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04) 100%);
    opacity: 0.88;
}

.platform-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px,
        transparent 5px
    );
    opacity: 0.08;
    animation: scanDrift 8s linear infinite;
}

.platform-video-grid,
.platform-video-noise,
.platform-video-beam,
.platform-video-ring {
    position: absolute;
}

.platform-video-grid {
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.14;
    animation: gridDrift 16s linear infinite;
}

.platform-video-noise {
    inset: -20%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 167, 230, 0.16) 0 1px, transparent 1px);
    background-size: 28px 28px, 36px 36px;
    background-position: 0 0, 12px 16px;
    opacity: 0.12;
    mix-blend-mode: screen;
    animation: noiseShift 10s steps(4) infinite;
}

.platform-video-beam {
    width: 44%;
    height: 180%;
    top: -42%;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.72;
}

.platform-video-beam-a {
    left: -8%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 135, 208, 0.78) 48%, transparent 100%);
    transform: rotate(18deg);
    animation: beamSweepA 10s ease-in-out infinite;
}

.platform-video-beam-b {
    right: -12%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 167, 230, 0.74) 44%, transparent 100%);
    transform: rotate(-16deg);
    animation: beamSweepB 12s ease-in-out infinite;
}

.platform-video-ring {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 0 26px rgba(0, 76, 157, 0.10),
        0 0 24px rgba(0, 167, 230, 0.12);
}

.platform-video-ring-a {
    width: 260px;
    height: 260px;
    right: 8%;
    top: -10%;
    animation: ringPulse 7.5s ease-in-out infinite;
}

.platform-video-ring-b {
    width: 170px;
    height: 170px;
    left: 8%;
    bottom: 10%;
    animation: ringPulse 9s ease-in-out infinite 1.4s;
}

.platform-video-ring-c {
    width: 92px;
    height: 92px;
    left: 50%;
    top: 22%;
    border-color: rgba(255, 255, 255, 0.22);
    animation: ringPulse 6.4s ease-in-out infinite 0.8s;
}

.platform-video-overlay {
    position: relative;
    z-index: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0.10) 0%, rgba(4, 8, 20, 0.10) 38%, rgba(4, 8, 20, 0.78) 100%);
}

.video-live-pill {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(5, 10, 25, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.video-live-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-cyan));
    box-shadow: 0 0 18px rgba(0, 135, 208, 0.64);
}

.platform-video-overlay h3 {
    max-width: 320px;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    line-height: 1.2;
}

.platform-video-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.video-stat {
    padding: 10px 10px 9px;
    border-radius: 14px;
    background: rgba(6, 10, 24, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.video-stat strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    line-height: 1.38;
}

.signal-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.74rem;
    font-weight: 800;
}

.signal-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.signal-card {
    position: relative;
    min-height: 114px;
    padding: 14px 14px 13px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(24, 31, 67, 0.86) 0%, rgba(14, 20, 44, 0.90) 100%);
    border: 1px solid rgba(118, 136, 226, 0.16);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 24px rgba(3, 6, 18, 0.24);
}

.signal-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 135, 208, 0.90), rgba(0, 167, 230, 0.90));
    opacity: 0.74;
}

.signal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.18), rgba(0, 167, 230, 0.16));
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 800;
}

.signal-card h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 0.94rem;
}

.signal-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.4;
}

.platform-footer {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    padding: 12px 14px 10px;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(180deg, rgba(10, 16, 34, 0.96) 0%, rgba(5, 8, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.platform-footer span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 64px;
    padding: 8px 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-footer span i {
    color: var(--brand-cyan);
    font-size: 0.84rem;
}

.platform-footer span small {
    display: block;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.03em;
    white-space: normal;
    text-wrap: balance;
}

.platform-footer span:last-child {
    border-right: 0;
}

.capability-strip {
    position: relative;
    z-index: 3;
    margin: -58px auto 92px;
    padding: 0 var(--page-gutter);
}

.capability-track {
    width: var(--shell-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(23, 54, 121, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 247, 255, 0.88) 100%);
    border: 1px solid rgba(23, 54, 121, 0.08);
}

.capability-item i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.12), rgba(0, 167, 230, 0.12));
    color: var(--ink-900);
    font-size: 1.1rem;
}

.capability-item span {
    color: var(--ink-800);
    font-size: 0.98rem;
    font-weight: 800;
}

body .stats-section {
    padding: 0 var(--page-gutter) 92px;
    background: transparent;
    text-align: left;
}

body .stats-grid {
    width: var(--shell-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body .stat {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.94) 0%, rgba(16, 24, 46, 0.90) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

body .stat::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-cyan));
}

body .stat i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-cyan);
    font-size: 1.5rem;
}

body .stat h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 2.8rem;
    line-height: 1;
}

body .stat p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
}

body .services-section {
    padding: 0 var(--page-gutter) 96px;
    background: transparent;
    text-align: center;
}

body .services-section h2,
body .partners-section h2,
body .why-section h2,
body .why-solutions h2,
body .section-header h2,
body .openings-header h2,
body .about-hero h1,
body .services-hero h1,
body .solutions-hero h1,
body .career-hero h1,
body .contact-hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

body .services-section > h2,
body .why-section > h2 {
    width: min(760px, 100%);
    margin: 0 auto 18px;
    color: var(--ink-900);
}

body .services-grid {
    width: var(--shell-content);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

body .services-section .service-card,
body .service-section .service-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 247, 255, 0.92) 100%);
    border: 1px solid rgba(25, 57, 129, 0.10);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body .services-section .service-card::before,
body .service-section .service-card::before,
body .highlight-item::before,
body .value-card::before,
body .job-card::before,
body .solution-box::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue), var(--brand-cyan));
}

body .services-section .service-card:hover,
body .service-section .service-card:hover,
body .highlight-item:hover,
body .value-card:hover,
body .job-card:hover,
body .solution-box:hover,
body .contact-info:hover,
body .contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 70px rgba(15, 31, 72, 0.18);
    border-color: rgba(36, 67, 137, 0.16);
}

body .service-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.14), rgba(0, 167, 230, 0.14));
    color: var(--brand-violet);
    font-size: 1.6rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body .services-section .service-card h3,
body .service-section .service-card h3 {
    margin-bottom: 12px;
    color: var(--ink-900);
    font-size: 1.45rem;
}

body .services-section .service-card p,
body .service-section .service-card p,
body .solution-box p,
body .why-item p,
body .why-card p,
body .highlight-item p,
body .value-card p,
body .job-card p,
body .section-header p,
body .openings-header p,
body .intro-text,
body .lead,
body .career-hero p,
body .contact-hero p {
    color: var(--slate-700);
    line-height: 1.8;
}

body .service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 800;
}

body .service-link:hover {
    color: var(--brand-violet);
}

.operations-section {
    padding: 0 24px 96px;
}

.operations-shell {
    width: var(--shell-main);
    margin: 0 auto;
    padding: 48px 44px 42px;
    border-radius: 34px;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at top right, rgba(0, 167, 230, 0.14), transparent 26%),
        linear-gradient(135deg, #071020 0%, #111c38 44%, #16264c 100%);
    color: var(--white);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    border: 1px solid rgba(146, 196, 255, 0.10);
}

.operations-shell::before,
.operations-shell::after,
body .why-section::before,
body .why-solutions::before,
body .why-section::after,
body .why-solutions::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.operations-shell::before,
body .why-section::before,
body .why-solutions::before {
    width: 320px;
    height: 320px;
    top: -170px;
    right: -170px;
    background: radial-gradient(circle, rgba(0, 167, 230, 0.26) 0%, rgba(0, 135, 208, 0.16) 38%, transparent 72%);
}

.operations-shell::after,
body .why-section::after,
body .why-solutions::after {
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(0, 76, 157, 0.22) 0%, rgba(0, 167, 230, 0.10) 40%, transparent 72%);
}

.operations-shell h2 {
    max-width: 15ch;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 3.6vw, 3.25rem);
    line-height: 1.02;
}

.operations-shell p {
    max-width: none;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.operations-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: end;
}

.operations-copy,
.operations-summary,
.operations-grid {
    position: relative;
    z-index: 1;
}

.operations-summary {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.operations-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.operations-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(151, 201, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.operations-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.operations-grid::before {
    content: "";
    position: absolute;
    left: 36px;
    right: 36px;
    top: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 196, 255, 0.34), transparent);
    z-index: 0;
}

.operation-card {
    position: relative;
    z-index: 1;
    padding: 26px 22px 24px;
    border-radius: 24px;
    min-height: 232px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 38px rgba(2, 7, 20, 0.18);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.operation-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
    opacity: 0.22;
}

.operation-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -52px;
    right: -48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 167, 230, 0.20) 0%, transparent 72%);
    pointer-events: none;
}

.operation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(3, 11, 30, 0.28);
    border-color: rgba(126, 197, 255, 0.24);
}

.operation-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(74, 144, 255, 0.24) 0%, transparent 72%);
}

.operation-card:nth-child(3)::after {
    background: radial-gradient(circle, rgba(0, 204, 255, 0.20) 0%, transparent 72%);
}

.operation-card:nth-child(4)::after {
    background: radial-gradient(circle, rgba(90, 151, 255, 0.22) 0%, transparent 72%);
}

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

body .why-section,
body .why-solutions {
    width: min(1600px, calc(100% - 48px));
    margin: 0 auto 104px;
    padding: 82px 28px;
    border-radius: 34px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #071020 0%, #111c38 44%, #1a2d59 100%);
    box-shadow: var(--shadow-strong);
    color: var(--white);
    text-align: center;
}

.operation-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-cyan);
    font-size: 1rem;
    font-weight: 800;
}

.operation-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 167, 230, 0.18), rgba(0, 135, 208, 0.30));
    border: 1px solid rgba(131, 211, 255, 0.18);
    color: rgba(230, 247, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.operation-icon i {
    font-size: 1.18rem;
}

.operation-card h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.24rem;
}

.operation-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.98rem;
    line-height: 1.65;
}

body .why-section h2,
body .why-solutions h2 {
    margin-bottom: 18px;
    color: var(--white);
}

body .why-grid {
    width: var(--shell-content);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body .why-item,
body .why-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    text-align: left;
}

body .why-item i {
    margin-bottom: 18px;
    color: var(--brand-cyan);
    font-size: 1.8rem;
}

body .why-item h4,
body .why-card h3,
body .why-card h4 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.25rem;
}

body .why-item p,
body .why-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

body .partners-section {
    padding: 0 24px 116px !important;
    background: transparent !important;
    text-align: center;
}

body .partners-section p {
    width: min(780px, 100%);
    margin: 0 auto 38px !important;
    color: var(--slate-700) !important;
    line-height: 1.8;
}

body .partners-grid {
    width: var(--shell-content);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px !important;
    padding: 10px 4px 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

body .partner-logo {
    flex: 0 0 clamp(150px, 14vw, 178px);
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(23, 54, 121, 0.10);
    box-shadow: 0 20px 50px rgba(17, 37, 86, 0.12);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 108px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: partnerFloat 6.2s ease-in-out infinite;
}

body .partner-logo:hover {
    animation: none;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(12, 25, 60, 0.16);
}

body .partners-grid::-webkit-scrollbar {
    display: none;
}

body .partner-logo:nth-child(2n) {
    animation-delay: -1.2s;
}

body .partner-logo:nth-child(3n) {
    animation-delay: -2.4s;
}

body .partner-mark {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.14), rgba(0, 167, 230, 0.12));
    color: var(--brand-pink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body .partner-mark i {
    font-size: 1.8rem;
}

body .partner-logo strong {
    color: var(--ink-900);
    font-size: 1.12rem;
    font-family: var(--font-heading);
}

body .partner-logo span {
    color: var(--ink-700);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 260px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body .partner-logo img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: saturate(0.95);
}

body .partner-brand {
    display: block;
    transform-origin: center;
}

body .partner-brand--trendmicro,
body .partner-brand--sophos {
    transform: scale(1.42);
}

body .partner-brand--fortinet {
    max-height: 36px;
    transform: scale(1.08);
}

body .partner-brand--kaspersky {
    max-height: 34px;
    transform: scale(1.08);
}

body .partner-brand--checkpoint {
    max-height: 32px;
    transform: scale(1.2);
}

body .partner-brand--netwitness {
    max-height: 38px;
}

body .about-hero,
body .services-hero,
body .solutions-hero,
body .career-hero,
body .contact-hero {
    position: relative;
    overflow: hidden;
    --hero-accent-a: rgba(0, 167, 230, 0.22);
    --hero-accent-b: rgba(111, 66, 193, 0.18);
    --hero-accent-c: rgba(255, 255, 255, 0.06);
    background-color: #07162f !important;
    background-image:
        radial-gradient(circle at 14% 18%, var(--hero-accent-a) 0%, transparent 26%),
        radial-gradient(circle at 84% 20%, var(--hero-accent-b) 0%, transparent 30%),
        linear-gradient(125deg, rgba(5, 18, 47, 0.86) 0%, rgba(9, 45, 101, 0.76) 54%, rgba(16, 96, 176, 0.62) 100%) !important;
    background-size: auto, auto, cover !important;
    background-position: center, center, center !important;
    background-repeat: no-repeat !important;
    padding: 150px var(--page-gutter) 112px !important;
    text-align: center;
    border-bottom-left-radius: 38px;
    border-bottom-right-radius: 38px;
    box-shadow: var(--shadow-strong);
    isolation: isolate;
}

body .about-hero {
    --hero-accent-a: rgba(0, 167, 230, 0.22);
    --hero-accent-b: rgba(111, 66, 193, 0.18);
    --hero-video-position: center 32%;
    --hero-video-opacity: 0.34;
}

body .services-hero {
    --hero-accent-a: rgba(0, 167, 230, 0.26);
    --hero-accent-b: rgba(21, 208, 142, 0.18);
    --hero-video-position: center 42%;
    --hero-video-opacity: 0.36;
}

body .solutions-hero {
    --hero-accent-a: rgba(72, 78, 191, 0.20);
    --hero-accent-b: rgba(0, 167, 230, 0.24);
    --hero-video-position: center;
    --hero-video-opacity: 0.3;
}

body .career-hero {
    --hero-accent-a: rgba(255, 61, 77, 0.16);
    --hero-accent-b: rgba(0, 167, 230, 0.22);
    --hero-video-position: center 34%;
    --hero-video-opacity: 0.34;
}

body .contact-hero {
    --hero-accent-a: rgba(0, 167, 230, 0.18);
    --hero-accent-b: rgba(37, 211, 102, 0.16);
    --hero-video-position: center 28%;
    --hero-video-opacity: 0.32;
}

.page-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-video-position, center);
    opacity: var(--hero-video-opacity, 0.34);
    filter: saturate(0.95) brightness(0.72) contrast(1.04);
    transform: scale(1.02);
    z-index: 0;
    pointer-events: none;
}

body .about-hero::before,
body .services-hero::before,
body .solutions-hero::before,
body .career-hero::before,
body .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 18% 20%, var(--hero-accent-c) 0%, transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
        linear-gradient(120deg, rgba(3, 10, 26, 0.16) 0%, rgba(7, 31, 78, 0.08) 56%, rgba(0, 167, 230, 0.06) 100%);
    background-size: 86px 86px, 86px 86px, auto, auto, auto;
    opacity: 0.88;
}

body .about-hero::after,
body .services-hero::after,
body .solutions-hero::after,
body .career-hero::after,
body .contact-hero::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -220px;
    bottom: -220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 167, 230, 0.28) 0%, rgba(0, 135, 208, 0.14) 42%, transparent 72%);
    filter: blur(2px);
}

body .about-hero > :not(.page-hero-video),
body .services-hero > :not(.page-hero-video),
body .solutions-hero > :not(.page-hero-video),
body .career-hero > :not(.page-hero-video),
body .contact-hero > :not(.page-hero-video) {
    position: relative;
    z-index: 1;
}

body .about-hero h1,
body .services-hero h1,
body .solutions-hero h1,
body .career-hero h1,
body .contact-hero h1 {
    margin-bottom: 16px;
    color: var(--white);
}

body .about-hero .tagline,
body .services-hero .lead,
body .solutions-hero .lead,
body .career-hero p,
body .contact-hero p {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

body .breadcrumb {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
}

body .breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

body .breadcrumb a:hover {
    text-decoration: underline;
}

body .section-padding,
body .service-section,
body .openings-section {
    padding: 100px var(--page-gutter) !important;
}

body .overview-highlights,
body .values-grid,
body .service-grid {
    width: var(--shell-main);
    margin-left: auto;
    margin-right: auto;
}

body .overview-highlights,
body .values-grid,
body .service-grid,
body .why-grid {
    gap: 24px !important;
}

body .highlight-item,
body .value-card,
body .job-card,
body .contact-info,
body .contact-form,
body .solution-box,
body .milestone {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 247, 255, 0.92) 100%);
    border: 1px solid rgba(23, 54, 121, 0.10);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

body .highlight-item,
body .value-card,
body .job-card,
body .milestone {
    padding: 32px 28px !important;
}

body .highlight-item h4,
body .value-card h3,
body .job-card h3 {
    color: var(--ink-900) !important;
}

body .milestones {
    width: var(--shell-main);
    margin: 42px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px !important;
}

body .milestone .number {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

body .milestone p {
    margin-bottom: 0;
    color: var(--slate-700);
}

body .value-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.14), rgba(0, 167, 230, 0.14));
    color: var(--brand-violet) !important;
    font-size: 1.8rem !important;
}

body .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

body .service-item {
    color: var(--slate-700);
    line-height: 1.7;
}

body .service-item strong {
    color: var(--ink-900) !important;
}

body .section-header,
body .openings-header {
    width: min(820px, 100%);
    margin: 0 auto 58px !important;
}

body .section-header h2,
body .openings-header h2 {
    color: var(--ink-900);
    margin-bottom: 16px !important;
}

body .solution-wrapper {
    width: min(1700px, calc(100% - 28px));
    margin: -72px auto 108px !important;
    padding: 0 14px !important;
}

body .solution-box {
    display: grid !important;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    gap: 36px !important;
    align-items: stretch;
    text-align: left !important;
    padding: 40px !important;
    margin-bottom: 30px !important;
    border-radius: 30px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.96)) !important;
    border: 1px solid rgba(0, 76, 157, 0.10) !important;
    box-shadow:
        0 26px 60px rgba(12, 25, 60, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

body .solution-box img {
    width: 100% !important;
    min-height: 260px;
    object-fit: cover;
    border-radius: 22px !important;
    box-shadow: 0 20px 38px rgba(12, 25, 60, 0.16);
}

body .solution-visual {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    border-radius: 28px !important;
    overflow: hidden;
    box-shadow: 0 26px 48px rgba(12, 25, 60, 0.18);
    isolation: isolate;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

body .solution-visual::before,
body .solution-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body .solution-visual::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.18;
}

body .solution-visual::after {
    inset: auto auto -34px -18px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
    filter: blur(6px);
    opacity: 0.7;
}

body .solution-visual span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(6, 10, 25, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body .solution-visual-cyber {
    background-image:
        linear-gradient(180deg, rgba(5, 12, 28, 0.18) 0%, rgba(4, 11, 28, 0.72) 100%),
        radial-gradient(circle at 78% 18%, rgba(0, 167, 230, 0.30) 0%, transparent 22%),
        url("images/stock/solution-cyber.jpg");
    background-position: center, center, center;
}

body .solution-visual-infra {
    background-image:
        linear-gradient(180deg, rgba(8, 16, 34, 0.18) 0%, rgba(7, 18, 46, 0.68) 100%),
        radial-gradient(circle at 76% 24%, rgba(21, 208, 142, 0.24) 0%, transparent 20%),
        url("images/stock/solution-infra.jpg");
    background-position: center, center, center;
}

body .solution-visual-creative {
    background-image:
        linear-gradient(180deg, rgba(17, 9, 24, 0.16) 0%, rgba(35, 11, 49, 0.70) 100%),
        radial-gradient(circle at 78% 20%, rgba(255, 108, 55, 0.22) 0%, transparent 22%),
        url("images/stock/solution-creative.jpg");
    background-position: center, center, center;
}

body .solution-visual-digital {
    background-image:
        linear-gradient(180deg, rgba(11, 12, 29, 0.18) 0%, rgba(11, 16, 49, 0.70) 100%),
        radial-gradient(circle at 76% 18%, rgba(111, 66, 193, 0.24) 0%, transparent 22%),
        url("images/stock/solution-digital.jpg");
    background-position: center, center, center;
}

body .solution-box h3 {
    color: var(--ink-900) !important;
    font-size: 2.02rem !important;
    margin-bottom: 16px !important;
}

body .solution-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

body .solution-copy > p {
    margin: 0 !important;
    color: var(--slate-700) !important;
    font-size: 1.08rem !important;
    line-height: 1.85 !important;
    max-width: 92ch;
}

body .solution-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body .solution-subcard {
    padding: 18px 20px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(238, 245, 255, 0.92));
    border: 1px solid rgba(0, 76, 157, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 22px rgba(12, 25, 60, 0.05);
}

body .solution-subcard h4 {
    margin: 0 0 9px !important;
    color: var(--ink-900) !important;
    font-size: 1.02rem !important;
    line-height: 1.35;
}

body .solution-subcard p {
    margin: 0 !important;
    color: var(--slate-700) !important;
    font-size: 0.96rem !important;
    line-height: 1.68 !important;
}

body .contact-wrapper {
    width: var(--shell-content);
    margin: -86px auto 110px !important;
    padding: 0 var(--page-gutter) !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px !important;
    align-items: stretch;
}

body .contact-info,
body .contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body .info-header,
body .form-header {
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--brand-violet) 54%, var(--brand-blue) 100%) !important;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 1.4rem !important;
    letter-spacing: -0.02em;
    padding: 22px 28px !important;
    border-radius: 28px 28px 0 0;
}

body .contact-body {
    padding: 30px !important;
}

body .contact-info .contact-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 18px;
}

body .contact-form .contact-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 18px;
}

body .contact-form form {
    display: grid;
    gap: 16px;
    width: 100%;
}

body .form-privacy {
    margin: 2px 2px 0;
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

body .form-privacy a {
    color: var(--brand-violet);
    text-decoration: none;
    font-weight: 700;
}

body .form-privacy a:hover {
    text-decoration: underline;
}

body .contact-assurance,
body .contact-location-panel {
    margin-top: auto;
    display: grid;
    grid-template-columns: minmax(140px, 188px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 18%, rgba(0, 167, 230, 0.18) 0%, transparent 28%),
        linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(235, 242, 255, 0.94) 100%);
    border: 1px solid rgba(23, 54, 121, 0.10);
    box-shadow: 0 18px 34px rgba(7, 33, 84, 0.08);
    align-self: start;
}

body .contact-assurance-visual,
body .contact-location-visual {
    position: relative;
    min-height: 150px;
    padding: 14px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 18%, rgba(120, 141, 255, 0.18) 0%, transparent 28%),
        linear-gradient(135deg, rgba(8, 22, 52, 0.98) 0%, rgba(13, 52, 112, 0.92) 52%, rgba(12, 126, 196, 0.82) 100%);
    overflow: hidden;
}

body .contact-assurance-visual::before,
body .contact-location-visual::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

body .contact-assurance-visual img,
body .contact-location-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 122px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(2, 7, 20, 0.22));
}

body .contact-assurance-copy h3,
body .contact-location-copy h3 {
    margin-bottom: 14px !important;
    color: var(--ink-900) !important;
    font-size: 1.2rem !important;
    line-height: 1.26;
}

body .contact-assurance-copy,
body .contact-location-copy {
    align-self: start;
}

body .contact-assurance-copy p,
body .contact-location-copy p {
    margin: 0 0 14px;
    color: var(--slate-600);
    line-height: 1.65;
}

body .contact-assurance-points,
body .contact-location-points {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
}

body .contact-assurance-item,
body .contact-location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 54, 121, 0.08);
}

body .contact-assurance-item i,
body .contact-location-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.12), rgba(0, 167, 230, 0.18));
    color: var(--brand-violet) !important;
    font-size: 0.92rem !important;
}

body .contact-assurance-item span,
body .contact-location-item span {
    color: var(--ink-900);
    font-weight: 600;
    line-height: 1.42;
}

body .info-item {
    align-items: flex-start;
    gap: 16px !important;
    padding: 18px;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(238, 244, 255, 0.92) 100%);
    border: 1px solid rgba(23, 54, 121, 0.08);
    border-radius: 22px;
}

body .info-item div {
    flex: 1;
}

body .info-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.12), rgba(0, 167, 230, 0.12));
    color: var(--brand-violet) !important;
    font-size: 1.1rem !important;
}

body .info-item div strong {
    color: var(--ink-900) !important;
}

body .form-group {
    position: relative;
    margin: 0;
}

body .form-group input,
body .form-group textarea {
    width: 100%;
    display: block;
    padding: 16px 18px 16px 52px;
    border: 1px solid rgba(23, 54, 121, 0.14) !important;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px !important;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink-900);
    line-height: 1.5;
}

body .form-group input:focus,
body .form-group textarea:focus {
    border-color: rgba(0, 135, 208, 0.40) !important;
    box-shadow: 0 0 0 4px rgba(0, 135, 208, 0.12) !important;
}

body .form-group i {
    position: absolute;
    left: 18px;
    top: 19px;
    color: var(--slate-500) !important;
    z-index: 1;
    pointer-events: none;
}

body .form-group textarea {
    min-height: 152px;
    resize: vertical;
}

body .submit-btn {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-violet) 42%, var(--brand-blue) 100%) !important;
    color: var(--white) !important;
    border-radius: 18px !important;
    border: 0;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(72, 78, 191, 0.22);
    cursor: pointer;
}

body .message {
    border-radius: 18px !important;
    border: 1px solid transparent;
    margin: 0;
}

body .success {
    background: rgba(37, 211, 102, 0.10) !important;
    color: #166c3c !important;
    border-color: rgba(37, 211, 102, 0.18);
}

body .error {
    background: rgba(255, 61, 77, 0.10) !important;
    color: #9e2433 !important;
    border-color: rgba(255, 61, 77, 0.16);
}

body .whatsapp-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px !important;
    text-decoration: none;
    background: linear-gradient(135deg, #1fca64, #25d366) !important;
    border-radius: 18px !important;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(37, 211, 102, 0.20);
}

body .whatsapp-submit-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 18px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #1fca64, #25d366);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(37, 211, 102, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body .whatsapp-submit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(37, 211, 102, 0.24);
    filter: brightness(1.02);
}

body .contact-map {
    border: 1px solid rgba(23, 54, 121, 0.10) !important;
    border-radius: 22px !important;
    overflow: hidden;
    min-height: 248px;
    margin-top: auto;
}

body .contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 248px;
}

body .contact-assurance-note {
    margin: 8px 2px 0;
    color: var(--slate-500);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

body .job-card h3 {
    align-items: center;
    gap: 14px !important;
}

body .job-card h3 i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 135, 208, 0.12), rgba(0, 167, 230, 0.12));
    color: var(--brand-violet) !important;
    font-size: 1.2rem !important;
}

body .apply-btn {
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-violet) 42%, var(--brand-blue) 100%) !important;
    color: var(--white) !important;
    border-radius: 999px !important;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(72, 78, 191, 0.22);
}

body .no-fit {
    width: min(920px, 100%);
    margin: 70px auto 0 !important;
    padding: 28px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(23, 54, 121, 0.10);
    box-shadow: var(--shadow-soft);
}

body .career-email-link {
    color: var(--brand-blue) !important;
}

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0f1f 0%, #070b16 100%) !important;
    color: var(--white) !important;
    padding: 70px var(--page-gutter) 34px !important;
    font-family: var(--font-body) !important;
    text-align: left !important;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 112% 10%, rgba(0, 135, 208, 0.16), transparent 30%),
        radial-gradient(circle at -10% 92%, rgba(0, 167, 230, 0.10), transparent 32%);
    pointer-events: none;
}

.site-footer-grid {
    position: relative;
    z-index: 1;
    width: var(--shell-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.site-footer-grid > div {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer h4 {
    margin-bottom: 18px !important;
    color: var(--white) !important;
    font-size: 1.35rem !important;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0 !important;
    line-height: 1.65 !important;
}

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a:not(.social-icon) {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
}

.site-footer a:not(.social-icon):hover {
    color: var(--white) !important;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 0 !important;
    line-height: 1.85;
}

.site-footer strong {
    color: var(--white);
}

.site-footer-bottom {
    position: relative;
    z-index: 1;
    width: var(--shell-content);
    margin: 28px auto 0 !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.46) !important;
}

.footer-social-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-social-links h5 {
    width: 100%;
    margin-bottom: 14px !important;
    color: var(--white) !important;
    font-size: 1.2rem !important;
    text-align: center;
}

.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-links .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-social-links .social-icon i {
    color: var(--white);
}

.footer-social-links .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26);
    filter: brightness(1.05);
}

.footer-social-links .social-facebook {
    background: #1877f2;
}

.footer-social-links .social-linkedin {
    background: #0a66c2;
}

.footer-social-links .social-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
}

.footer-social-links .social-x {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 74px;
    height: 74px;
    padding: 6px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 54, 121, 0.12);
    box-shadow: 0 22px 46px rgba(6, 12, 28, 0.20);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(6, 12, 28, 0.24);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 108px;
    z-index: 998;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
    color: var(--white);
    box-shadow: 0 20px 40px rgba(41, 73, 184, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-target {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.legal-hero {
    padding: 138px 20px 88px;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(0, 53, 139, 0.92), rgba(0, 135, 208, 0.86)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    margin-bottom: 16px;
}

.legal-hero p {
    width: min(760px, 100%);
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.legal-shell {
    width: min(1540px, calc(100% - 32px));
    margin: -44px auto 80px;
    position: relative;
    z-index: 1;
}

.legal-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 76, 157, 0.10);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(12, 25, 60, 0.12);
    overflow: hidden;
}

.legal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(0, 76, 157, 0.10);
}

.legal-meta-item {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.98);
}

.legal-meta-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-violet);
}

.legal-meta-item strong {
    color: var(--ink-900);
    font-size: 1rem;
}

.legal-content {
    padding: 34px 34px 40px;
}

.legal-intro {
    padding: 0 0 26px;
    border-bottom: 1px solid rgba(0, 76, 157, 0.10);
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.legal-section {
    padding: 26px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96));
    border: 1px solid rgba(0, 76, 157, 0.10);
    box-shadow: 0 12px 28px rgba(12, 25, 60, 0.08);
}

.legal-section.legal-section-full {
    grid-column: 1 / -1;
}

.legal-section h2 {
    font-size: 1.42rem;
    color: var(--brand-pink);
    margin-bottom: 14px;
}

.legal-section p:last-child,
.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-list {
    margin: 0;
    padding-left: 18px;
}

.legal-list li + li {
    margin-top: 10px;
}

.legal-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 135, 208, 0.08);
    border: 1px solid rgba(0, 135, 208, 0.12);
    color: var(--ink-800);
}

.legal-note strong {
    color: var(--brand-pink);
}

@keyframes orbitPulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.64;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.84;
    }
}

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

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

@keyframes logoFullRotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(-360deg);
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 44px 26px, 20px 44px;
    }
}

@keyframes noiseShift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(-2%, 1%, 0);
    }
    50% {
        transform: translate3d(2%, -1%, 0);
    }
    75% {
        transform: translate3d(-1%, 2%, 0);
    }
}

@keyframes beamSweepA {
    0%,
    100% {
        transform: translate3d(-6%, 0, 0) rotate(18deg);
        opacity: 0.36;
    }
    50% {
        transform: translate3d(18%, 6%, 0) rotate(22deg);
        opacity: 0.8;
    }
}

@keyframes beamSweepB {
    0%,
    100% {
        transform: translate3d(10%, -4%, 0) rotate(-16deg);
        opacity: 0.34;
    }
    50% {
        transform: translate3d(-14%, 8%, 0) rotate(-20deg);
        opacity: 0.76;
    }
}

@keyframes ringPulse {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.22;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.58;
    }
}

@keyframes scanDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-wrapper a,
    .logo-wrapper img,
    .hero-orbit,
    .platform-video::after,
    .platform-video-grid,
    .platform-video-noise,
    .platform-video-beam-a,
    .platform-video-beam-b,
    .platform-video-ring {
        animation: none !important;
    }
}

@media (max-width: 1100px) {
    .operations-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .operations-grid::before {
        display: none;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-platform {
        padding-top: 0;
        width: min(100%, 760px);
    }

    .platform-footer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 10px;
    }

    .platform-footer span:nth-child(3) {
        border-right: 0;
    }

    .hero-proof,
    .capability-track,
    body .stats-grid,
    .operations-grid,
    body .why-grid,
    .legal-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 900px) {
    header {
        padding: 0 18px;
    }

    .header-container {
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        margin-left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 76, 157, 0.10);
        box-shadow: 0 24px 52px rgba(12, 25, 60, 0.12);
    }

    nav.is-open {
        display: flex;
    }

    nav a {
        padding: 13px 16px;
    }

    body .contact-wrapper {
        grid-template-columns: 1fr;
    }

    body .solution-box {
        grid-template-columns: 1fr !important;
    }

    body .solution-subgrid {
        grid-template-columns: 1fr;
    }

    body .contact-assurance,
    body .contact-location-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body .hero-home {
        min-height: auto;
        padding: 130px 18px 102px;
    }

    .hero-bg-video {
        opacity: 0.82;
        object-position: center;
    }

    .hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 0.10em;
    }

    body .hero-content h1 {
        max-width: 9.2ch;
        font-size: clamp(2.15rem, 8.8vw, 3.2rem);
        line-height: 1.01;
    }

    body .hero-tagline {
        font-size: 1.02rem;
    }

    .hero-stage {
        min-height: auto;
        align-items: center;
    }

    .hero-platform {
        padding-top: 0;
        transform: none;
    }

    .platform-top {
        width: 100%;
        min-height: auto;
        padding: 54px 18px 18px;
        clip-path: none;
        border-radius: 26px 26px 0 0;
    }

    .platform-top-title {
        top: 14px;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .platform-core {
        padding: 24px 20px 22px;
    }

    .platform-ribbon {
        font-size: 0.9rem;
    }

    .signal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .signal-header-single {
        gap: 0;
    }

    .signal-header-single span {
        font-size: 0.8rem;
        letter-spacing: 0.11em;
    }

    .platform-video {
        min-height: 232px;
    }

    .platform-video-overlay {
        min-height: 232px;
        padding: 22px 18px;
    }

    .platform-video-overlay h3 {
        max-width: none;
        font-size: 1.12rem;
    }

    .platform-video-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .platform-footer {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 18px;
    }

    .platform-footer span {
        border-right: 0;
        min-height: 0;
        padding: 8px 0;
    }

    .signal-grid,
    .hero-proof,
    .capability-track,
    body .stats-grid,
    body .services-grid,
    .operations-grid,
    body .why-grid,
    body .milestones,
    .site-footer-grid,
    .legal-grid,
    .legal-meta {
        grid-template-columns: 1fr;
    }

    .capability-strip {
        margin-top: -48px;
        margin-bottom: 76px;
        padding: 0 18px;
    }

    .operations-shell {
        padding: 30px 22px;
    }

    .operations-shell h2 {
        max-width: none;
    }

    .operations-tags {
        gap: 10px;
    }

    .operations-tags span {
        font-size: 0.78rem;
        padding: 9px 12px;
    }

    .operation-card {
        min-height: 0;
        padding: 22px 18px 20px;
    }

    body .why-section,
    body .why-solutions {
        width: calc(100% - 36px);
        padding: 68px 20px;
        margin-bottom: 84px;
    }

    body .services-section,
    body .stats-section,
    .operations-section,
    body .partners-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    body .section-padding,
    body .service-section,
    body .openings-section {
        padding: 78px 18px !important;
    }

    body .about-hero,
    body .services-hero,
    body .solutions-hero,
    body .career-hero,
    body .contact-hero {
        padding: 128px 18px 90px !important;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .page-hero-video {
        opacity: calc(var(--hero-video-opacity, 0.34) + 0.04);
        object-position: center;
    }

    body .partners-grid {
        justify-content: flex-start;
        padding-bottom: 14px;
    }

    body .partner-logo {
        flex-basis: 152px;
        min-height: 94px;
        padding: 12px 14px;
    }

    body .partner-logo img {
        max-height: 32px;
    }

    body .partner-brand--trendmicro,
    body .partner-brand--sophos {
        transform: scale(1.28);
    }

    body .partner-brand--checkpoint {
        transform: scale(1.12);
    }

    body .solution-wrapper {
        margin-top: -46px !important;
        padding: 0 18px !important;
    }

    body .contact-wrapper {
        margin-top: -58px !important;
        padding: 0 18px !important;
    }

    body .contact-assurance,
    body .contact-location-panel {
        padding: 20px;
    }

    body .contact-assurance-visual,
    body .contact-location-visual {
        min-height: 168px;
    }

    .site-footer {
        background: #262626 !important;
        padding: 44px 18px 24px !important;
    }

    .site-footer-grid > div {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-footer h4 {
        font-size: 1.2rem !important;
        margin-bottom: 14px !important;
    }

    .site-footer p,
    .site-footer a:not(.social-icon) {
        color: rgba(255, 255, 255, 0.82) !important;
        font-size: 1rem;
    }

    .site-footer .footer-social-links {
        align-items: flex-start;
        text-align: left;
        margin-top: 10px !important;
    }

    .site-footer .footer-social-links h5 {
        text-align: left;
        margin-bottom: 16px !important;
    }

    .site-footer .footer-social-list {
        justify-content: flex-start;
        gap: 14px;
    }

    .whatsapp-float {
        width: 66px;
        height: 66px;
        right: 16px;
        bottom: 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 92px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 520px) {
    header {
        padding: 0 14px;
    }

    .logo-wrapper {
        min-width: 146px;
        padding: 2px 6px;
    }

    .logo-wrapper a {
        width: 184px;
        min-height: 60px;
    }

    .site-logo {
        max-width: 48px;
        max-height: 48px;
    }

    .site-logo-lockup {
        gap: 8px;
    }

    .site-logo-copy {
        width: 104px;
        height: 48px;
        gap: 1px;
    }

    .site-logo-copy {
        width: 104px;
        gap: 3px;
    }

    .site-logo-wordmark {
        font-size: 1.45rem;
    }

    .site-logo-tagline {
        font-size: 0.4rem;
        letter-spacing: 0.015em;
    }

    .legal-hero {
        padding: 120px 16px 74px;
    }

    .legal-content {
        padding: 24px 18px 28px;
    }

    .legal-meta-item,
    .legal-section {
        padding: 18px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-actions {
        gap: 12px;
    }

    .signal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    body .services-section .service-card,
    body .service-section .service-card,
    body .highlight-item,
    body .value-card,
    body .job-card,
    body .contact-info,
    body .contact-form,
    body .solution-box,
    body .milestone {
        border-radius: 24px;
        padding: 24px !important;
    }

    body .contact-body {
        padding: 24px !important;
    }
}
