/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #1D1D1F;
    overflow-x: hidden;
    line-height: 1.7
}

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

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

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --white: #FFFFFF;
    --bg-alt: #F5F5F7;
    --navy: #0A1628;
    --navy-2: #0D1E3A;
    --text-1: #1D1D1F;
    --text-2: #6E6E73;
    --text-3: #AEAEB2;
    --blue: #185FA5;
    --blue-l: #378ADD;
    --blue-xl: #85B7EB;
    --gold: #EF9F27;
    --gold-l: #FAC775;
    --green: #1D9E75;
    --green-l: #5DCAA5;
    --red-cyber: #C84B31;
    --border: rgba(0, 0, 0, 0.07);
    --border-strong: rgba(0, 0, 0, 0.12);
    --r: 16px;
    --r-sm: 10px;
    --t: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.1);
    --shadow-xl: 0 32px 80px rgba(0,0,0,.14);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    line-height: 1.08;
    letter-spacing: -0.025em
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.75rem);
    font-weight: 700
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700
}

h3 {
    font-size: 1.25rem;
    font-weight: 600
}

p {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.75
}

/* ============================================================
   LAYOUT UTILS
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px
}

.section {
    padding: 128px 0
}

.section-alt {
    background: var(--bg-alt)
}

.section-dark {
    background: var(--navy)
}

.text-center {
    text-align: center
}

.text-center .section-desc {
    margin: 0 auto
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(24, 95, 165, .07);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 1.25rem;
}

.eyebrow-green {
    color: var(--green);
    background: rgba(29, 158, 117, .07)
}

.eyebrow-gold {
    color: var(--gold);
    background: rgba(239, 159, 39, .08)
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor
}

.section-title {
    color: var(--text-1);
    margin-bottom: .75rem
}

.section-desc {
    font-size: 1.075rem;
    color: var(--text-2);
    max-width: 560px;
    line-height: 1.75
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9375rem;
    font-weight: 500;
    transition: var(--t);
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: #fff
}

.btn-primary:hover {
    background: var(--blue-l);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(24, 95, 165, .28)
}

.btn-outline-w {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px)
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-2px)
}

.btn-outline-d {
    background: transparent;
    color: var(--text-1);
    border: 1px solid var(--border-strong)
}

.btn-outline-d:hover {
    background: var(--bg-alt);
    transform: translateY(-2px)
}

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

.btn-green:hover {
    background: color-mix(in srgb, var(--green) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(29, 158, 117, .28)
}

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(239, 159, 39, .3)
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s cubic-bezier(0.16, 1, .3, 1), transform .75s cubic-bezier(0.16, 1, .3, 1)
}

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

.d1 { transition-delay: .08s }
.d2 { transition-delay: .16s }
.d3 { transition-delay: .24s }
.d4 { transition-delay: .32s }
.d5 { transition-delay: .40s }
.d6 { transition-delay: .48s }
.d7 { transition-delay: .56s }
.d8 { transition-delay: .64s }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
    transition: opacity .7s .15s ease, visibility .7s .15s ease;
}

#loader.out {
    opacity: 0;
    visibility: hidden
}

.loader-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: lPop .6s cubic-bezier(0.16, 1, .3, 1) both
}

.loader-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.loader-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em
}

.loader-progress {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    animation: lFill 1.2s cubic-bezier(.4, 0, .2, 1) both .1s
}

@keyframes lPop {
    from { opacity: 0; transform: scale(.8) translateY(8px) }
    to { opacity: 1; transform: none }
}

@keyframes lFill {
    from { width: 0 }
    to { width: 100% }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 22px 0;
    transition: all .45s cubic-bezier(0.16, 1, .3, 1);
}

#nav.s {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: color .3s;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--t);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08);
}

#nav.s .nav-logo {
    color: var(--text-1)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-links a {
    display: block;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    transition: all .25s;
    position: relative;
}

#nav.s .nav-links a {
    color: var(--text-2)
}

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

#nav.s .nav-links a:hover {
    color: var(--text-1);
    background: var(--bg-alt)
}

.nav-links a.active {
    color: #fff;
}

#nav.s .nav-links a.active {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 9px 22px !important;
    font-weight: 500 !important;
    transition: var(--t) !important;
}

.nav-cta:hover {
    background: var(--blue-l) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(24, 95, 165, .3) !important
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5.5px;
    padding: 6px;
    cursor: pointer;
    border: none;
    background: none;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    border-radius: 2px;
    background: #fff;
    transition: var(--t);
}

#nav.s .nav-burger span {
    background: var(--text-1)
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, .97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(0.16, 1, .3, 1);
    padding: 100px 40px 60px;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible
}

.mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    text-align: center;
    padding: 8px 0;
    transition: color .25s;
    width: 100%;
}

.mobile-menu a:hover {
    color: #fff
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    will-change: transform;
    background-image:
        linear-gradient(rgba(55, 138, 221, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(55, 138, 221, .055) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 24s linear infinite;
}

@keyframes gridDrift {
    to { background-position: 64px 64px }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    will-change: transform
}

.hero-orb-a {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(24, 95, 165, .28) 0%, transparent 70%);
    top: -180px;
    right: -120px;
    animation: orbA 10s ease-in-out infinite;
}

.hero-orb-b {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(239, 159, 39, .14) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    animation: orbA 14s ease-in-out infinite reverse;
}

.hero-orb-c {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 158, 117, .12) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: orbA 18s ease-in-out infinite 3s;
}

@keyframes orbA {
    0%, 100% { transform: translate(0, 0) }
    50% { transform: translate(24px, -32px) }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 88px 0 96px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .2s both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: .7
}

.hero-title {
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .35s both
}

.hero-title em {
    font-style: normal;
    color: var(--gold)
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .55);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    animation: fadeUp .8s .5s both;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .8s .65s both
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.75rem;
    animation: fadeUp .8s .8s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .38);
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-trust-item:first-child { padding-left: 0 }
.hero-trust-item:last-child { border-right: none }

.hero-trust-check {
    color: var(--green-l);
    font-size: .85rem
}

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fadeUp .9s .4s both
}

.hero-code-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg) }
    50% { transform: translateY(-18px) rotate(-1.5deg) }
}

.code-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.code-url {
    font-size: .68rem;
    color: rgba(255, 255, 255, .25);
    margin-left: 6px;
    font-family: monospace
}

.code-body {
    padding: 22px;
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    line-height: 1.85
}

.c-gray { color: rgba(255, 255, 255, .28) }
.c-blue { color: #85B7EB }
.c-gold { color: #FAC775 }
.c-green { color: #5DCAA5 }
.c-white { color: rgba(255, 255, 255, .88) }
.c-pink { color: #F093B0 }

.code-cursor {
    display: inline-block;
    width: 2px;
    height: 13px;
    background: var(--blue-xl);
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1 }
    50% { opacity: 0 }
}

/* Floating badges */
.f-badge {
    position: absolute;
    background: rgba(10, 22, 40, .9);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 10px 16px;
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.fb-1 {
    top: -18px;
    right: -10px;
    animation: fb1 5s ease-in-out infinite
}

.fb-2 {
    bottom: 24px;
    left: -28px;
    animation: fb2 7s ease-in-out infinite
}

@keyframes fb1 {
    0%, 100% { transform: translate(0, 0) }
    50% { transform: translate(4px, -10px) }
}

@keyframes fb2 {
    0%, 100% { transform: translate(0, 0) }
    50% { transform: translate(-4px, 8px) }
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(29, 158, 117, .2);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(29, 158, 117, .2) }
    50% { box-shadow: 0 0 0 7px rgba(29, 158, 117, .07) }
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 1.4s both;
}

.scroll-hint-text {
    font-size: .65rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .12em;
    text-transform: uppercase
}

.scroll-hint-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1) }
    50% { opacity: .8; transform: scaleY(1.15) }
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.svc-header {
    margin-bottom: 72px
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
}

.svc-card {
    background: #fff;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    cursor: pointer;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(0.16, 1, .3, 1);
}

.svc-card:hover {
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.svc-card:hover::after {
    transform: scaleX(1)
}

.svc-card.ai-highlight::after {
    background: var(--green)
}

.svc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(24, 95, 165, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--t);
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(24, 95, 165, .12);
    transform: scale(1.06)
}

.svc-card.ai-highlight .svc-icon-wrap {
    background: rgba(29, 158, 117, .07)
}

.svc-card.ai-highlight:hover .svc-icon-wrap {
    background: rgba(29, 158, 117, .14)
}

.svc-card h3 {
    font-size: 1rem;
    margin-bottom: 9px;
    color: var(--text-1)
}

.svc-card p {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--text-2)
}

.svc-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--t);
}

.svc-card.ai-highlight .svc-more {
    color: var(--green);
    opacity: 1;
    transform: none
}

.svc-card:hover .svc-more {
    opacity: 1;
    transform: none
}

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section {
    background: var(--navy-2);
    position: relative;
    overflow: hidden
}

.ai-section-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(29, 158, 117, .1), transparent);
    pointer-events: none;
}

.ai-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(29, 158, 117, .1);
    color: var(--green-l);
    border: 1px solid rgba(29, 158, 117, .2);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 1.5rem;
}

.ai-title {
    color: #fff;
    margin-bottom: .9rem
}

.ai-title span {
    color: var(--green-l)
}

.ai-desc {
    color: rgba(255, 255, 255, .5);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.75
}

.ai-feats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 2.5rem
}

.ai-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.ai-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(29, 158, 117, .09);
    border: 1px solid rgba(29, 158, 117, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ai-feat-title {
    font-family: 'Syne', sans-serif;
    font-size: .9375rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px
}

.ai-feat-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65
}

/* AI Network Visual */
.ai-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.ai-svg {
    width: 100%;
    max-width: 420px
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 72px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 19px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    border-top: 1px dashed var(--border-strong);
}

.proc-step {
    padding-top: 0
}

.proc-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: var(--t);
}

.proc-step:hover .proc-num {
    transform: scale(1.15);
    box-shadow: 0 10px 28px rgba(24, 95, 165, .32)
}

.proc-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-1)
}

.proc-step p {
    font-size: .85rem;
    color: var(--text-2);
    line-height: 1.65
}

/* ============================================================
   SPLIT CARDS (Data & Cyber)
   ============================================================ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 72px
}

.split-card {
    border-radius: 20px;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    transition: var(--t);
    cursor: default;
}

.split-card:hover {
    transform: translateY(-5px)
}

.sc-data {
    background: #EAF3FF;
    box-shadow: 0 1px 0 0 rgba(24, 95, 165, .1)
}

.sc-cyber {
    background: #0D1923
}

.sc-data:hover {
    box-shadow: 0 24px 60px rgba(24, 95, 165, .12)
}

.sc-cyber:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3)
}

.sc-tag {
    position: absolute;
    top: 36px;
    left: 44px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 6px 14px;
    border-radius: 100px;
}

.sc-tag-data {
    background: rgba(24, 95, 165, .1);
    color: var(--blue)
}

.sc-tag-cyber {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .5)
}

.sc-bg-icon {
    position: absolute;
    top: 70px;
    right: 36px;
    opacity: .09;
}

.split-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px
}

.sc-data h3 { color: var(--text-1) }
.sc-cyber h3 { color: #fff }

.split-card>p {
    font-size: .925rem;
    margin-bottom: 16px
}

.sc-data>p { color: var(--text-2) }
.sc-cyber>p { color: rgba(255, 255, 255, .4) }

.sc-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px
}

.sc-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .85rem
}

.sc-data .sc-list li { color: var(--text-2) }
.sc-cyber .sc-list li { color: rgba(255, 255, 255, .45) }

.arrow-blue { color: var(--blue); font-weight: 700 }
.arrow-teal { color: var(--green-l); font-weight: 700 }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    background: var(--navy-2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(24, 95, 165, .35), transparent 65%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
}

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

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem
}

.cta-section .lead {
    color: rgba(255, 255, 255, .45);
    font-size: 1.1rem;
    margin-bottom: 2.5rem
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.cta-reassure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-r-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

.gold-ck {
    color: var(--gold)
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #0F0F0F;
    padding: 80px 0 0
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.foot-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.foot-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 7px;
}

.foot-tagline {
    font-size: .875rem;
    color: rgba(255, 255, 255, .3);
    max-width: 280px;
    line-height: 1.7
}

.foot-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    transition: color .25s;
}

.foot-email-link:hover {
    color: var(--blue-l);
}

.foot-email-link svg {
    flex-shrink: 0;
}

.foot-col h5 {
    font-family: 'Syne', sans-serif;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .01em;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.foot-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .32);
    transition: color .25s
}

.foot-links a:hover {
    color: rgba(255, 255, 255, .85)
}

.foot-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 10px;
    transition: color .25s;
}

.foot-contact-item:hover {
    color: rgba(255, 255, 255, .7)
}

.foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.foot-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .18)
}

.foot-bottom-links {
    display: flex;
    gap: 24px
}

.foot-bottom-links a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .22);
    transition: color .25s
}

.foot-bottom-links a:hover {
    color: rgba(255, 255, 255, .6)
}

/* ============================================================
   EMAIL FAB (replaces WhatsApp)
   ============================================================ */
.email-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(24, 95, 165, .35);
    transition: var(--t);
    animation: fabEntry .6s 1.6s cubic-bezier(0.16, 1, .3, 1) both;
}

.email-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 14px 44px rgba(24, 95, 165, .48)
}

.email-fab-tooltip {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .75rem;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.email-fab:hover .email-fab-tooltip {
    opacity: 1
}

@keyframes fabEntry {
    from { opacity: 0; transform: scale(0.5) translateY(20px) }
    to { opacity: 1; transform: scale(1) translateY(0) }
}

/* ============================================================
   SERVICE MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, .65);
    backdrop-filter: saturate(120%) blur(20px);
    -webkit-backdrop-filter: saturate(120%) blur(20px);
}

.modal-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    max-width: 620px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.94) translateY(16px);
    transition: transform .4s cubic-bezier(0.16, 1, .3, 1);
    overscroll-behavior: contain;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-card::-webkit-scrollbar {
    width: 6px;
}

.modal-card::-webkit-scrollbar-track {
    background: transparent;
}

.modal-card::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.12);
    border-radius: 3px;
}

.modal-header {
    padding: 40px 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(24, 95, 165, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon.green {
    background: rgba(29, 158, 117, .08);
}

.modal-header-text {
    flex: 1;
}

.modal-tag {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    margin-bottom: 6px;
}

.modal-tag.green {
    color: var(--green);
}

.modal-header-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.2;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    z-index: 2;
}

.modal-close:hover {
    background: rgba(0,0,0,.08);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 16px;
    height: 16px;
    color: var(--text-2);
}

.modal-body {
    padding: 28px 40px;
}

.modal-body p {
    font-size: .925rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .875rem;
    color: var(--text-1);
    padding: 12px 16px;
    background: var(--bg-alt);
    border-radius: 12px;
    transition: var(--t);
}

.modal-feature:hover {
    background: rgba(24, 95, 165, .06);
    transform: translateX(4px);
}

.modal-feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(24, 95, 165, .1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 700;
}

.modal-feature-check.green {
    background: rgba(29, 158, 117, .1);
    color: var(--green);
}

.modal-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.modal-footer {
    padding: 0 40px 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-footer .btn {
    flex: 1;
    justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px) {
    .section { padding: 88px 0 }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 0 56px }
    .hero-visual { display: none }
    .svc-grid { grid-template-columns: repeat(2, 1fr) }
    .ai-inner { grid-template-columns: 1fr; gap: 48px }
    .ai-visual-wrap { display: none }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 40px }
    .process-grid::before { display: none }
    .split-grid { grid-template-columns: 1fr }
    .foot-grid { grid-template-columns: 1fr 1fr }
    .nav-links { display: none }
    .nav-burger { display: flex }
}

@media(max-width:640px) {
    .section { padding: 72px 0 }
    h1 { font-size: 2.25rem }
    h2 { font-size: 1.85rem }
    
    /* Hero */
    .hero-eyebrow { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 1rem }
    .hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 2rem }
    .hero-inner { padding: 40px 0 40px }
    .hero-btns { flex-direction: column; align-items: stretch; width: 100%; gap: 14px }
    .hero-btns .btn { width: 100%; justify-content: center }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 2rem }
    .hero-trust-item { border-right: none; padding: 0 }
    
    /* Services */
    .svc-grid { grid-template-columns: 1fr; border-radius: 16px }
    .svc-card { padding: 32px 24px }
    
    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 32px }
    
    /* Split cards (Data & Cyber) */
    .split-card { padding: 36px 24px; min-height: 320px }
    .sc-tag { left: 24px; top: 24px; font-size: 0.6rem; padding: 5px 12px }
    .sc-bg-icon { display: none } /* Hide large bg icons to save vertical space on mobile */
    .split-card h3 { font-size: 1.35rem }
    .split-card>p { font-size: 0.88rem }
    .sc-list li { font-size: 0.8rem }
    .split-card .btn { width: 100%; justify-content: center }
    
    /* CTA */
    .cta-btns { flex-direction: column; align-items: stretch; width: 100% }
    .cta-btns .btn { width: 100%; justify-content: center }
    .cta-reassure { flex-direction: column; gap: 10px; align-items: center }
    
    /* Footer */
    .foot-grid { grid-template-columns: 1fr; gap: 40px }
    .foot-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 20px }
    
    /* Modals */
    .modal-overlay { padding: 16px }
    .modal-card { max-height: 90vh; border-radius: 16px; margin: auto 0; max-width: 100% }
    .modal-header { padding: 24px 24px 0; flex-direction: column; align-items: flex-start; gap: 16px }
    .modal-icon { width: 48px; height: 48px; border-radius: 12px }
    .modal-header-text h3 { font-size: 1.2rem }
    .modal-body { padding: 20px 24px }
    .modal-body p { font-size: 0.88rem; line-height: 1.6 }
    .modal-features { margin: 16px 0; gap: 8px }
    .modal-feature { padding: 10px 14px; font-size: 0.8rem; gap: 10px }
    .modal-feature-check { width: 18px; height: 18px; font-size: 0.65rem }
    .modal-footer { padding: 0 24px 24px; flex-direction: column; gap: 12px }
    .modal-footer .btn { width: 100% }
}
