:root {
    --primary:    #0A1FEE;
    --secondary:  #0077FF;
    --accent:     #00C2FF;
    --white:      #FFFFFF;
    --gray:       #6B7280;
    --dark:       #050A1A;
    --dark-card:  #080E22;
    --border:     rgba(0,194,255,0.15);
    --glow:       0 0 30px rgba(0,194,255,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
    background: rgba(5,10,26,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: padding .3s, box-shadow .3s;
}
#navbar.scrolled {
    padding: .55rem 0;
    box-shadow: 0 4px 30px rgba(0,119,255,.12);
}
.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.brand-accent { color: var(--accent); }
.nav-link {
    color: rgba(255,255,255,.78) !important;
    font-weight: 500;
    font-size: .88rem;
    letter-spacing: .02em;
    padding: .5rem .95rem !important;
    transition: color .25s;
}
.nav-link:hover { color: var(--accent) !important; }
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    border-radius: 7px;
    padding: .48rem 1.2rem !important;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .03em;
    transition: box-shadow .3s, transform .2s;
}
.btn-nav-cta:hover {
    box-shadow: 0 0 20px rgba(0,119,255,.5);
    transform: translateY(-1px);
}
.navbar-toggler { border-color: rgba(0,194,255,.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,194,255,.9%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 65% at 65% 38%, rgba(10,31,238,.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 55% at 18% 80%, rgba(0,194,255,.1) 0%, transparent 60%),
        radial-gradient(ellipse 45% 45% at 82% 10%, rgba(0,119,255,.14) 0%, transparent 60%);
}
.grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
}
.hero-content { position: relative; z-index: 2; }

.badge-pill {
    display: inline-block;
    background: rgba(0,194,255,.1);
    border: 1px solid rgba(0,194,255,.3);
    color: var(--accent);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.68);
    line-height: 1.8;
    max-width: 490px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,194,255,.07);
    border: 1px solid rgba(0,194,255,.18);
    padding: .28rem .75rem;
    border-radius: 50px;
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.chip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: transform .25s, box-shadow .3s;
}
.btn-primary-hero:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,119,255,.45);
}
.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(0,194,255,.38);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}
.btn-outline-hero:hover {
    background: rgba(0,194,255,.08);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero shield visual */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-visual img {
    position: relative; z-index: 1;
    max-width: 100%;
}
.shield-pulse {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,119,255,.25) 0%, transparent 70%);
    animation: shieldPulse 3.5s ease-in-out infinite;
}
@keyframes shieldPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.12);opacity:1} }
.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(0,194,255,.15);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}
.orbit-ring:nth-child(2) { width:340px;height:340px;animation-duration:25s; }
.orbit-ring:nth-child(3) { width:420px;height:420px;animation-direction:reverse; }
@keyframes rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(90deg, rgba(10,31,238,.14) 0%, rgba(0,119,255,.08) 50%, rgba(0,194,255,.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.8rem 0;
}
.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-lbl { font-size: .8rem; color: var(--gray); font-weight: 500; margin-top: .3rem; }

/* ── SECTIONS ── */
section { padding: 5.5rem 0; }

.sec-badge {
    display: inline-block;
    background: rgba(0,194,255,.1);
    border: 1px solid rgba(0,194,255,.2);
    color: var(--accent);
    padding: .28rem .8rem;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.sec-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
}
.sec-line {
    width: 54px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ── ABOUT ── */
#about { background: linear-gradient(180deg, var(--dark) 0%, #080E20 100%); }

.glass-card {
    background: rgba(10,17,40,.85);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.glass-card:hover {
    border-color: rgba(0,194,255,.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,119,255,.12);
}
.icon-box {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(10,31,238,.3), rgba(0,194,255,.18));
    border: 1px solid rgba(0,194,255,.28);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
}

/* ── VMV ── */
#vmv { background: var(--dark-card); }

.vmv-card {
    background: rgba(10,17,40,.7);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, box-shadow .3s;
}
.vmv-card:hover { border-color: rgba(0,194,255,.4); box-shadow: var(--glow); }
.vmv-card .vmv-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
}
.vmv-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem;
}
.value-row {
    display: flex; align-items: flex-start; gap: .9rem;
    padding: .65rem .75rem;
    background: rgba(0,194,255,.05);
    border: 1px solid rgba(0,194,255,.1);
    border-radius: 8px;
}
.value-icon {
    width: 34px; min-width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: #fff;
}
.value-title { font-size: .88rem; font-weight: 700; margin-bottom: .1rem; }
.value-sub { font-size: .78rem; color: var(--gray); }

/* ── SERVICE PILLARS ── */
#services { background: var(--dark); }

.pillar-card {
    background: rgba(10,17,40,.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pillar-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .35s;
    transform-origin: left;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover {
    border-color: rgba(0,194,255,.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,119,255,.16);
}
.pillar-bg-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem; font-weight: 900;
    color: rgba(0,194,255,.07);
    line-height: 1;
    margin-bottom: -.5rem;
}
.pillar-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(10,31,238,.35), rgba(0,194,255,.18));
    border: 1px solid rgba(0,194,255,.28);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .9rem;
    font-size: 1.5rem;
    color: var(--accent);
}
.pillar-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1rem; margin-bottom: .7rem;
    letter-spacing: .04em;
}
.tag-wrap { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin-top: .9rem; }
.tag {
    font-size: .7rem;
    background: rgba(0,194,255,.07);
    border: 1px solid rgba(0,194,255,.14);
    color: rgba(255,255,255,.7);
    padding: .18rem .55rem;
    border-radius: 4px;
}

/* ── SERVICE DETAILS ── */
#service-details { background: var(--dark-card); }

.svc-card {
    background: rgba(10,17,40,.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, box-shadow .3s;
}
.svc-card:hover { border-color: rgba(0,194,255,.4); box-shadow: 0 8px 40px rgba(0,119,255,.1); }
.svc-num {
    font-size: .68rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: .45rem;
}
.svc-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.15rem; margin-bottom: .9rem;
}
.svc-card p.desc {
    color: var(--gray); font-size: .875rem; line-height: 1.75; margin-bottom: 1.25rem;
}
.feat {
    display: flex; align-items: center; gap: .55rem;
    font-size: .83rem; color: rgba(255,255,255,.8);
    padding: .28rem 0;
}
.feat i { color: var(--accent); font-size: .65rem; }
.outcomes-hdr {
    font-size: .66rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-top: 1.4rem; margin-bottom: .65rem;
}
.kpi {
    display: inline-block;
    background: rgba(10,31,238,.14);
    border: 1px solid rgba(10,31,238,.3);
    color: rgba(255,255,255,.82);
    padding: .22rem .6rem;
    border-radius: 4px;
    font-size: .72rem;
    margin: .18rem;
}

/* ── INDUSTRIES ── */
#industries { background: var(--dark); }

.ind-card {
    background: rgba(10,17,40,.85);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.ind-card:hover {
    border-color: rgba(0,194,255,.5);
    background: rgba(0,119,255,.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,119,255,.14);
}
.ind-icon { font-size: 1.9rem; color: var(--accent); margin-bottom: .7rem; }
.ind-card p { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.85); margin: 0; }

/* ── WHY US ── */
#why-us { background: var(--dark-card); }

.diff-row {
    display: flex; gap: 1.1rem; align-items: flex-start;
    padding: 1.3rem;
    background: rgba(10,17,40,.65);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .3s, transform .3s;
}
.diff-row:hover {
    border-color: rgba(0,194,255,.4);
    transform: translateX(5px);
}
.diff-icon-box {
    width: 44px; min-width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(10,31,238,.4), rgba(0,119,255,.28));
    border: 1px solid rgba(0,119,255,.38);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; color: var(--accent);
}
.diff-row h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: .92rem; margin-bottom: .22rem;
}
.diff-row p { font-size: .82rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ── METHODOLOGY ── */
#methodology { background: var(--dark); }

.step-wrap { position: relative; text-align: center; padding: 2rem 1rem; }
.step-num {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 800; color: #fff;
    box-shadow: 0 0 22px rgba(0,119,255,.4);
    transition: box-shadow .3s, transform .3s;
}
.step-wrap:hover .step-num {
    box-shadow: 0 0 40px rgba(0,194,255,.65);
    transform: scale(1.06);
}
.step-wrap h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: .97rem; margin-bottom: .35rem;
}
.step-wrap p { font-size: .8rem; color: var(--gray); line-height: 1.55; }
.connector {
    position: absolute; top: 2.55rem; right: -48%;
    width: 96%; height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: .22;
}

.benefit-card {
    display: flex; align-items: center; gap: .85rem;
    padding: 1.1rem 1.25rem;
    background: rgba(10,17,40,.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .3s, transform .3s;
}
.benefit-card:hover { border-color: rgba(0,194,255,.35); transform: translateY(-2px); }
.benefit-icon {
    width: 40px; min-width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(10,31,238,.3), rgba(0,194,255,.18));
    border: 1px solid rgba(0,194,255,.25);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--accent);
}
.benefit-card p { font-size: .85rem; font-weight: 600; margin: 0; }

/* ── CTA BAND ── */
#cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(10,31,238,.18) 0%,
        rgba(0,119,255,.1) 50%,
        rgba(0,194,255,.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── CONTACT ── */
#contact { background: var(--dark-card); }

.contact-card {
    background: rgba(10,17,40,.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.contact-card:hover {
    border-color: rgba(0,194,255,.45);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}
.contact-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(10,31,238,.3), rgba(0,194,255,.18));
    border: 1px solid rgba(0,194,255,.28);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem; color: var(--accent);
}
.contact-card h6 { font-family:'Space Grotesk',sans-serif; font-weight:700; margin-bottom:.2rem; }
.contact-card .sub { font-size:.8rem; color:var(--gray); margin-bottom:.65rem; }
.contact-card a, .contact-card span {
    color: var(--accent); font-size: .88rem; text-decoration: none; font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: #030610;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid var(--border);
}
.ft-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; font-weight: 800;
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: .5rem;
}
.ft-tagline {
    font-size: .72rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gray); margin-bottom: 1rem;
}
.ft-desc { font-size: .83rem; color: var(--gray); line-height: 1.7; }
.ft-head {
    font-size: .7rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: .9rem;
}
.ft-link {
    display: block;
    color: rgba(255,255,255,.58);
    text-decoration: none;
    font-size: .84rem;
    padding: .18rem 0;
    transition: color .25s;
}
.ft-link:hover { color: var(--accent); }
.ft-hr { border-color: var(--border); margin: 2rem 0 1.2rem; }
.ft-copy { font-size: .78rem; color: var(--gray); }

/* ── SCROLL ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .connector { display: none; }
}
