*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0f172a;
    --navy-dark: #020617;
    --navy-mid: #1e293b;
    --blue: #2563eb;
    --sky: #38bdf8;
    --cyan: #06b6d4;
    --violet: #7c3aed;
    --emerald: #10b981;
    --amber: #f59e0b;
    --coral: #f43f5e;
    --orange: #f97316;
    --gold: #2563eb;
    --gold-light: #60a5fa;
    --gold-dark: #1d4ed8;
    --bronze: #8b5cf6;
    --white: #ffffff;
    --off-white: #f8fafc;
    --cream: #f1f5f9;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 32px 80px rgba(15, 23, 42, 0.14);
    --shadow-glow: 0 0 48px rgba(37, 99, 235, 0.18);
    --shadow-luxe: 0 20px 48px rgba(15, 23, 42, 0.12);
    --glass: rgba(255, 255, 255, 0.92);
    --gradient-brand: linear-gradient(135deg, #2563eb 0%, #06b6d4 40%, #7c3aed 75%, #10b981 100%);
    --gradient-prestige: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #f43f5e 50%, #7c3aed 100%);
    --gradient-hero: linear-gradient(155deg, #020617 0%, #0f172a 38%, #1e1b4b 72%, #0f172a 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --nav-height: 80px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background:
        radial-gradient(ellipse 55% 40% at 100% 0%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 0% 100%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 90%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        var(--white);
    line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; }

.container {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

.section-label {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 0.85rem;
}
.section-label span {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.section-label span::after { content: ' —'; color: var(--border); }

/* Preloader */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    display: grid; place-items: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    height: 56px; width: auto; margin: 0 auto 1.5rem;
}
.preloader-bar {
    width: 180px; height: 3px; background: var(--border);
    border-radius: 99px; overflow: hidden;
}
.preloader-progress {
    height: 100%; width: 0;
    background: var(--gradient-brand);
    transition: width 0.1s linear;
}

/* Navigation */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 1000;
    height: var(--nav-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-color: rgba(37, 99, 235, 0.12);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(37, 99, 235, 0.2);
}
.nav:not(.scrolled) .nav-wordmark strong { color: var(--white); }
.nav:not(.scrolled) .nav-wordmark span { color: var(--sky); }
.nav:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.65); }
.nav:not(.scrolled) .nav-link:hover,
.nav:not(.scrolled) .nav-link.active { color: var(--white); }
.nav:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-brand { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.nav-icon {
    height: 44px; width: auto; flex-shrink: 0;
    object-fit: contain;
    background: transparent;
}
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.nav-wordmark strong {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 800; color: var(--navy);
}
.nav-wordmark span {
    font-size: 0.68rem; font-weight: 600; color: var(--blue);
    letter-spacing: 0.04em; text-transform: uppercase;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-links { display: flex; gap: 2rem; }
.nav-link {
    font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.2s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--gradient-gold);
    transition: width 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    font-family: var(--font-display);
    font-size: 0.82rem; font-weight: 700; color: var(--white);
    background: var(--gradient-prestige);
    padding: 0.65rem 1.2rem; border-radius: var(--radius-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s; white-space: nowrap;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 28px; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; background: var(--navy);
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-logo {
    height: auto;
    width: auto;
    max-height: 160px;
    max-width: 280px;
    object-fit: contain;
    background: transparent;
}
.mobile-menu-nav { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.mobile-menu-link { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.mobile-menu-cta {
    padding: 0.85rem 1.5rem;
    background: var(--gradient-brand);
    color: var(--white); font-weight: 700; border-radius: var(--radius-sm);
}

/* Homepage / minimal header: hamburger-first */
.nav--minimal .nav-links { display: none !important; }
.nav--minimal .nav-toggle { display: flex; }
.nav-minimal-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}
.nav-cta--compact {
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
}
.nav-cta--careers {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    box-shadow: none;
    visibility: visible !important;
    opacity: 1 !important;
}
.nav.scrolled .nav-cta--careers,
.nav--minimal.scrolled .nav-cta--careers,
.page-about .nav-cta--careers {
    color: var(--navy);
    border-color: rgba(15, 23, 42, 0.22);
    background: #fff;
}
.nav:not(.scrolled) .nav-cta--careers:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
    border-color: #fff;
}
.nav.scrolled .nav-cta--careers:hover,
.page-about .nav-cta--careers:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff;
}
.mobile-menu-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: min(100%, 280px);
    margin-top: 1rem;
}
.mobile-menu-cta--secondary {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1.5px solid rgba(15, 23, 42, 0.18);
}
.mobile-menu-close {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
}

@media (max-width: 960px) {
    .nav-links, .nav:not(.nav--minimal) .nav-cta:not(.nav-cta--careers) { display: none; }
    .nav-toggle { display: flex; }
    .nav-wordmark span { display: none; }
    .nav-cta--compact:not(.nav-cta--careers) { display: none; }
    .nav-cta--careers {
        display: inline-flex !important;
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }
}

/* Typography */
.eyebrow {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 0.85rem;
}
.eyebrow-light { color: var(--sky); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    font-weight: 600; line-height: 1.2; margin-bottom: 0.85rem;
}
.text-accent-light {
    background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 45%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lead { font-size: 1.05rem; color: var(--text-muted); max-width: 58ch; margin-bottom: 1.75rem; }
.lead-light { color: rgba(255, 255, 255, 0.72); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 58ch; margin-top: 0.5rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.92rem; font-weight: 700;
    padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
    cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary {
    color: var(--white);
    background: var(--gradient-prestige);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.38);
    filter: brightness(1.05);
}
.btn-shine::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease);
}
.btn-shine:hover::after { transform: translateX(120%); }
.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
    border-color: rgba(56, 189, 248, 0.65);
    background: rgba(37, 99, 235, 0.14);
    transform: translateY(-2px);
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; border-radius: var(--radius-sm); }

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--nav-height) + 5.5rem) 0 6rem;
    background:
        radial-gradient(ellipse 55% 45% at 85% 10%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 80%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 60% 60%, rgba(6, 182, 212, 0.14) 0%, transparent 50%),
        var(--gradient-hero);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
}
.hero-mesh {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
}
.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(72px); opacity: 0.55;
}
.hero-blob--1 {
    width: 420px; height: 420px;
    top: -8%; right: -6%;
    background: rgba(37, 99, 235, 0.45);
}
.hero-blob--2 {
    width: 360px; height: 360px;
    bottom: 5%; left: -8%;
    background: rgba(124, 58, 237, 0.38);
}
.hero-blob--3 {
    width: 280px; height: 280px;
    top: 35%; left: 42%;
    background: rgba(6, 182, 212, 0.32);
}
.hero-blob--4 {
    width: 220px; height: 220px;
    bottom: 18%; right: 28%;
    background: rgba(16, 185, 129, 0.28);
}
.hero-serif {
    font-family: var(--font-serif);
    font-style: italic; font-weight: 500;
    -webkit-text-fill-color: var(--gold-light);
    color: var(--gold-light);
}
.hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem; align-items: center;
}
.hero h1 { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.25rem; }
.hero-highlights {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}
.hero-highlight {
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.hero-highlight:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}
.hero-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--sky);
    margin-bottom: 0.2rem;
}
.hero-highlight:nth-child(1) strong { color: #60a5fa; }
.hero-highlight:nth-child(2) strong { color: #22d3ee; }
.hero-highlight:nth-child(3) strong { color: #34d399; }
.hero-highlight span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }

/* Dashboard panel */
.hero-panel { will-change: transform; }
.dashboard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    box-shadow: var(--shadow), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}
.dashboard::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-brand);
}
.dashboard-header {
    display: flex; align-items: center; gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.dashboard-logo { height: 36px; width: auto; }
.dashboard-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 700; color: var(--navy);
}
.dashboard-status {
    font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.dashboard-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.dash-stat {
    text-align: center;
    padding: 0.85rem 0.5rem;
    background: var(--off-white);
    border-radius: 8px;
}
.dash-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    color: var(--navy);
}
.dashboard-list {
    list-style: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}
.dashboard-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
}
.dashboard-list li:last-child { border-bottom: none; }
.dashboard-list li span { color: var(--text-muted); }
.dashboard-list li strong { color: var(--navy); font-weight: 600; }
.dash-label {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted);
}
.dashboard-chart {
    display: flex; align-items: flex-end; gap: 0.5rem;
    height: 100px; padding: 0.75rem;
    background: var(--off-white); border-radius: 8px;
    margin-bottom: 1rem;
}
.chart-bar {
    flex: 1; height: var(--h);
    background: var(--gradient-soft);
    border-radius: 4px 4px 0 0;
    animation: growBar 1.2s var(--ease) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}
@keyframes growBar { to { transform: scaleY(1); } }
.dashboard-footer {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted); text-align: center;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-highlights { grid-template-columns: 1fr; }
}

/* Trust bar */
.trust-bar {
    background: linear-gradient(90deg, #020617, #0f172a 30%, #1e1b4b 70%, #020617);
    border-bottom: 1px solid var(--border-dark);
    padding: 1.15rem 0;
}
.trust-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
}
.trust-pill {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 99px;
    border: 1px solid transparent;
}
.trust-pill--blue { color: #93c5fd; background: rgba(37, 99, 235, 0.18); border-color: rgba(96, 165, 250, 0.35); }
.trust-pill--cyan { color: #67e8f9; background: rgba(6, 182, 212, 0.18); border-color: rgba(34, 211, 238, 0.35); }
.trust-pill--violet { color: #c4b5fd; background: rgba(124, 58, 237, 0.2); border-color: rgba(167, 139, 250, 0.35); }
.trust-pill--emerald { color: #6ee7b7; background: rgba(16, 185, 129, 0.18); border-color: rgba(52, 211, 153, 0.35); }
.trust-pill--amber { color: #fcd34d; background: rgba(245, 158, 11, 0.18); border-color: rgba(251, 191, 36, 0.35); }

/* Stats */
.stats-bar {
    background: linear-gradient(180deg, var(--navy-dark), #1f1a14);
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, #06b6d4, #7c3aed, #10b981, #f59e0b, transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    padding: 2.5rem 1.5rem; text-align: center;
    border-right: 1px solid var(--border-dark);
    transition: background 0.3s;
}
.stat:hover { background: rgba(255, 255, 255, 0.02); }
.stat:last-child { border-right: none; }
.stat-value, .stat-static {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--sky);
    line-height: 1; margin-bottom: 0.45rem;
}
.stat:nth-child(1) .stat-value, .stat:nth-child(1) .stat-static { color: #60a5fa; }
.stat:nth-child(2) .stat-value, .stat:nth-child(2) .stat-static { color: #22d3ee; }
.stat:nth-child(3) .stat-value, .stat:nth-child(3) .stat-static { color: #a78bfa; }
.stat:nth-child(4) .stat-value, .stat:nth-child(4) .stat-static { color: #34d399; }
.stat-label {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
}

.visual-highlights { padding-top: 2rem; }
.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.visual-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.visual-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.visual-card img { margin-bottom: 0.85rem; }
.visual-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--navy);
}
.visual-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.hero-secondary-links {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    align-items: center;
}
.hero-secondary-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-secondary-links a:hover { color: #fff; }
.sticky-cta--single { min-width: auto; }
.sticky-cta--single .sticky-cta-primary { min-width: 180px; }

.sticky-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: stretch;
    min-width: 168px;
}
.sticky-cta-primary,
.sticky-cta-secondary {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}
.sticky-cta-primary {
    background: var(--gradient-brand);
    color: var(--white);
}
.sticky-cta-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

@media (max-width: 900px) {
    .visual-grid { grid-template-columns: repeat(2, 1fr); }
    .sticky-cta { right: 0.75rem; bottom: 0.75rem; min-width: 150px; }
}
@media (max-width: 560px) {
    .visual-grid { grid-template-columns: 1fr; }
}

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-light {
    background: var(--off-white);
    background-image:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 0% 100%, rgba(6, 182, 212, 0.05) 0%, transparent 55%);
}
.section-dark {
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .eyebrow { color: var(--sky); }
.section-dark .section-desc { color: rgba(255, 255, 255, 0.65); }
.section-dark .metric > span { color: rgba(255, 255, 255, 0.55); }
.section-dark .metric-track { background: rgba(255, 255, 255, 0.1); }
.section-dark .metric strong { color: var(--sky); }
.section-dark .feature-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
}
.section-dark .feature-item p { color: rgba(255, 255, 255, 0.6); }
.section-dark .process-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
}
.section-dark .process-card p { color: rgba(255, 255, 255, 0.62); }
.section-dark .process-card .step {
    background: rgba(37, 99, 235, 0.2);
    color: var(--sky);
}

.section-head { margin-bottom: 2.75rem; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }

/* Services */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.85rem;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
    cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.35s;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-prestige);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover {
    border-color: rgba(168, 139, 61, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
    position: absolute; top: 1rem; right: 1rem;
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 800;
    color: var(--border); letter-spacing: 0.05em;
}
.service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(184,115,51,0.1));
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
    color: var(--blue);
    display: grid; place-items: center; margin-bottom: 1.1rem;
    position: relative; z-index: 1;
    transition: transform 0.35s var(--ease-spring);
}
.service-card:hover .service-icon { transform: none; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-link { font-size: 0.8rem; font-weight: 700; color: var(--blue); letter-spacing: 0.03em; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.metrics { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.metric {
    display: grid; grid-template-columns: 9.5rem 1fr auto;
    gap: 0.85rem; align-items: center;
}
.metric > span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.metric-track {
    height: 6px; background: var(--border);
    border-radius: 99px; overflow: hidden;
}
.metric-fill {
    height: 100%; width: 0;
    background: var(--gradient-brand);
    border-radius: 99px; transition: width 1.1s ease;
}
.metric strong { font-family: var(--font-display); color: var(--blue); font-size: 0.95rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem; background: var(--off-white);
    border: 1px solid var(--border); border-radius: 10px;
}
.feature-icon {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 8px;
    background: var(--gradient-soft);
    color: var(--white); display: grid; place-items: center;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .metric { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* Global */
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.global-list {
    list-style: none; margin-top: 1.75rem;
    display: flex; flex-direction: column; gap: 0.85rem;
}
.global-list li {
    font-size: 0.95rem; color: var(--text-body);
    padding-left: 1.25rem; position: relative;
}
.global-list li::before {
    content: ''; position: absolute; left: 0; top: 0.55em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.global-list strong { color: var(--navy); }
.global-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.global-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s;
}
.global-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
}
.global-card-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.global-card-label {
    font-size: 0.78rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .global-grid { grid-template-columns: 1fr; }
}

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.industry-pill {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.95rem 1rem;
    font-size: 0.88rem; font-weight: 600; color: var(--navy);
    text-align: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.industry-pill:hover {
    background: var(--off-white);
    border-color: var(--gold);
    color: var(--navy);
    transform: none;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 1.5rem;
    transition: transform 0.25s;
}
.process-card:hover { transform: translateY(-3px); }
.process-card .step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: rgba(212, 175, 55, 0.1); color: var(--blue);
    font-family: var(--font-display); font-weight: 800;
    margin-bottom: 1rem;
}
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* Excellence strip */
.excellence-strip {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.excellence-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.excellence-item {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-md);
}
.excellence-item:hover {
    border-color: var(--border);
    border-left-color: var(--blue);
    box-shadow: var(--shadow);
    transform: none;
}
.excellence-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.2rem;
}
.excellence-item span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .excellence-grid { grid-template-columns: 1fr; }
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background:
        radial-gradient(ellipse 60% 80% at 15% 50%, rgba(37, 99, 235, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 40%, rgba(124, 58, 237, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 50% 100%, rgba(6, 182, 212, 0.2) 0%, transparent 55%),
        linear-gradient(135deg, #1e1b4b, var(--navy), var(--navy-dark));
    padding: 5rem 0;
    overflow: hidden;
}
.cta-glow {
    position: absolute; width: 500px; height: 500px;
    top: 50%; left: 30%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-banner h2 {
    color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}
.cta-banner p { color: rgba(255, 255, 255, 0.68); font-size: 1.05rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.faq-email {
    display: inline-block; margin-top: 1.5rem;
    font-weight: 600; color: var(--blue); font-size: 1rem;
}
.faq-email:hover { color: var(--navy); }
.accordion { display: flex; flex-direction: column; gap: 0.65rem; }
.accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}
.accordion-trigger {
    width: 100%; text-align: left;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
}
.accordion-trigger::after {
    content: '+'; font-size: 1.2rem; font-weight: 400;
    color: var(--blue); transition: transform 0.25s;
}
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); }
.accordion-trigger:hover { background: var(--off-white); }
.accordion-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-panel { max-height: 200px; }
.accordion-panel p {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.contact-value { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
a.contact-value:hover { color: var(--blue); }
.cert-row, .footer-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert-row span {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--navy);
    border: 1px solid var(--border); background: var(--white);
    padding: 0.35rem 0.65rem; border-radius: 4px;
}
.contact-form {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
    background: var(--gradient-prestige);
    border-radius: 99px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
}
.form-field input, .form-field select, .form-field textarea {
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--white); color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-success {
    margin-top: 1rem; padding: 0.9rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px; color: var(--navy); font-size: 0.92rem;
}
.form-error {
    margin-top: 1rem; padding: 0.9rem 1rem;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 6px; color: var(--navy); font-size: 0.92rem;
}
.form-error a { color: var(--blue); font-weight: 600; }
.hp-field { display: none !important; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 4rem 0 1.5rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #7c3aed, #10b981, #f59e0b);
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem; margin-bottom: 2.5rem;
}
.footer-logo {
    height: auto;
    width: auto;
    max-height: 140px;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 34ch; margin-bottom: 0.85rem; }
.footer-email { font-weight: 600; color: var(--sky); font-size: 0.95rem; }
.footer-email:hover { color: var(--white); }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42); margin-bottom: 0.35rem;
}
.footer-col a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); transition: color 0.2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap;
    padding-top: 1.5rem; border-top: 1px solid var(--border-dark);
    font-size: 0.8rem; color: rgba(255, 255, 255, 0.45);
}
.footer-certs span {
    background: transparent; border-color: var(--border-dark);
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/* Back to top */
.back-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--white); font-size: 1.2rem; font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
    opacity: 0; visibility: hidden;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

/* Voice agent — left side so it never overlaps sticky Request Proposal (right) */
.voice-agent-fab {
    position: fixed;
    bottom: 1.5rem;
    left: 1.25rem;
    right: auto;
    z-index: 950;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s;
}
.voice-agent-fab:hover { transform: translateY(-2px); }
.voice-agent {
    position: fixed;
    bottom: 5rem;
    left: 1.25rem;
    right: auto;
    z-index: 960;
    width: min(340px, calc(100vw - 2rem));
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.voice-agent[hidden] { display: none; }
.voice-agent-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--gradient-hero);
    color: var(--white);
}
.voice-agent-header strong { display: block; font-size: 0.92rem; }
.voice-agent-header span { font-size: 0.72rem; opacity: 0.8; }
.voice-agent-close {
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}
.voice-agent-messages {
    height: 220px;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--off-white);
}
.voice-agent-msg {
    max-width: 92%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
}
.voice-agent-msg--user {
    align-self: flex-end;
    background: rgba(37, 99, 235, 0.12);
    color: var(--navy);
}
.voice-agent-msg--bot {
    align-self: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
}
.voice-agent-input {
    display: flex;
    gap: 0.35rem;
    padding: 0.65rem;
    border-top: 1px solid var(--border);
}
.voice-agent-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    font-size: 0.85rem;
}
.voice-agent-mic,
.voice-agent-send {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 8px;
    width: 38px;
    cursor: pointer;
    font-size: 1rem;
}
.voice-agent-mic--active { background: rgba(244, 63, 94, 0.12); border-color: #f43f5e; }
.voice-agent-send { background: var(--blue); color: var(--white); border-color: var(--blue); font-weight: 700; }
@media (max-width: 560px) {
    .voice-agent-fab { bottom: 1rem; left: 0.85rem; }
    .voice-agent { bottom: 4.5rem; left: 0.85rem; width: min(320px, calc(100vw - 1.5rem)); }
}

/* Modal */
.modal {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, 0.55); }
.modal-panel {
    position: relative; width: min(560px, calc(100% - 2rem));
    max-height: 85vh; overflow: auto;
    background: var(--white); border-radius: 12px;
    padding: 2rem; box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    transition: transform 0.3s var(--ease);
}
.modal.open .modal-panel { transform: translateY(0); }
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--off-white); color: var(--text-muted);
    font-size: 1.4rem; cursor: pointer;
}
.modal-close:hover { background: var(--border); color: var(--navy); }
.modal-panel h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.modal-category {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 1rem;
}
.modal-panel p { color: var(--text-muted); margin-bottom: 1rem; }
.modal-panel ul {
    list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
    border-top: 1px solid var(--border); padding-top: 1rem;
}
.modal-panel li {
    font-size: 0.9rem; color: var(--text-body);
    padding-left: 1.1rem; position: relative;
}
.modal-panel li::before {
    content: ''; position: absolute; left: 0; top: 0.55em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

/* Hero video background */
.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.22;
}
.hero-video-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(155deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(30, 27, 75, 0.85) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(2, 6, 23, 0.96) 100%);
}
.hero-video-overlay--heavy {
    background:
        linear-gradient(155deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(30, 27, 75, 0.9) 100%);
}
@media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
}

/* Client logo strip */
.clients-strip {
    background: var(--white);
    padding: 3.5rem 0 3rem;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.clients-strip--compact { padding: 2.5rem 0 2rem; }
.clients-head {
    text-align: center; margin-bottom: 2rem;
}
.clients-head h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 0;
}
.clients-head .eyebrow { margin-bottom: 0.5rem; }
.clients-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.clients-track {
    display: flex; align-items: center; gap: 3.5rem;
    width: max-content;
    animation: clientsMarquee 40s linear infinite;
}
.client-logo {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}
.client-logo:hover { opacity: 1; color: var(--navy); }
.client-mark {
    display: inline-grid; place-items: center;
    width: 2.5rem; height: 2.5rem; border-radius: 10px;
    font-size: 0.95rem; font-weight: 800; color: var(--white);
    flex-shrink: 0;
}
.client-mark--b { background: linear-gradient(135deg, #9a7b2f, #d4af37); }
.client-mark--t { background: linear-gradient(135deg, #2a2218, #b8860b); }
.client-mark--s { background: linear-gradient(135deg, #8b6914, #f0d78c); }
.client-mark--n { background: linear-gradient(135deg, #3d3226, #d4af37); }
.client-mark--m { background: linear-gradient(135deg, #7a5c1a, #b87333); }
.client-mark--a { background: linear-gradient(135deg, #9a7b2f, #f0d78c); }
.client-mark--p { background: linear-gradient(135deg, #2a2218, #d4af37); }
.client-mark--v { background: linear-gradient(135deg, #b8860b, #f5e6b8); }
@keyframes clientsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About page */
.page-about .nav { background: var(--glass); backdrop-filter: blur(20px); border-color: var(--border); }
.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 5rem) 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 45% at 70% 15%, rgba(37, 99, 235, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 15% 75%, rgba(124, 58, 237, 0.16) 0%, transparent 50%),
        var(--gradient-hero);
}
.page-hero-inner {
    position: relative; z-index: 2;
    max-width: 780px;
}
.page-hero h1 { color: var(--white); }
.about-intro-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem; align-items: start;
}
.about-body {
    font-size: 1rem; color: var(--text-body);
    line-height: 1.75; margin-top: 1.25rem;
}
.about-stats-card {
    background: linear-gradient(160deg, #020617, #0f172a 55%, #1e1b4b);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex; flex-direction: column; gap: 0.25rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.about-stat-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-stat-row:last-child { border-bottom: none; }
.about-stat-row strong {
    font-family: var(--font-display);
    font-size: 1.65rem; font-weight: 700;
    color: #60a5fa;
}
.about-stat-row:nth-child(2) strong { color: #22d3ee; }
.about-stat-row:nth-child(3) strong { color: #a78bfa; }
.about-stat-row:nth-child(4) strong { color: #34d399; }
.about-stat-row span {
    font-size: 0.82rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase; letter-spacing: 0.08em;
}

.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.value-card:hover {
    border-color: rgba(240, 215, 140, 0.25);
    transform: translateY(-4px);
}
.value-icon {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(240, 215, 140, 0.12);
    color: var(--sky); margin-bottom: 1.1rem;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.55rem;
}
.value-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.62); line-height: 1.7; }

.timeline {
    position: relative; max-width: 720px;
    margin: 0 auto;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), transparent);
}
.timeline-item {
    position: relative;
    padding: 0 0 2.5rem 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute; left: -2rem; top: 0.35rem;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--blue);
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--blue);
    transform: translateX(-5px);
}
.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 0.45rem;
}
.timeline-content h3 {
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.4rem;
}
.timeline-content p {
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.principle-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.principle-card strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 0.4rem;
}
.principle-card h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--navy);
}
.principle-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}
.ceo-desk { max-width: 820px; margin: 0 auto; }
.ceo-desk-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.ceo-desk-inner h2 {
    font-size: 1.65rem;
    margin: 0.25rem 0 0.35rem;
    color: var(--navy);
}
.ceo-role {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 1.25rem;
}
.ceo-body p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.ceo-sign {
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border);
}
.ceo-sign strong { display: block; font-size: 1.05rem; color: var(--navy); }
.ceo-sign span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 0.15rem; }

.leadership-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.leadership-list {
    list-style: none; margin-top: 1.5rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.leadership-list li {
    font-size: 0.95rem; color: var(--text-body);
    padding-left: 1.25rem; position: relative;
}
.leadership-list li::before {
    content: ''; position: absolute; left: 0; top: 0.55em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.leadership-cards { display: flex; flex-direction: column; gap: 1rem; }
.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.leader-card:hover {
    border-color: rgba(168, 139, 61, 0.3);
    box-shadow: var(--shadow);
    transform: none;
}
.leader-role {
    font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue);
}
.leader-card h4 {
    font-size: 1rem; font-weight: 700;
    margin: 0.35rem 0 0.45rem;
}
.leader-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 900px) {
    .about-intro-grid,
    .leadership-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .principles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; }
    .ceo-desk-inner { padding: 1.35rem 1.25rem; }
}

.section-head h2::after {
    content: '';
    display: block;
    width: 56px; height: 3px;
    margin-top: 0.85rem;
    border-radius: 99px;
    background: var(--gradient-brand);
}
.section-head--center h2::after { margin-left: auto; margin-right: auto; }

.global-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.process-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* ── Colorful brand accents ── */
.preloader-logo {
    filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.45));
}
.dash-stat:nth-child(1) .dash-val { color: #2563eb; }
.dash-stat:nth-child(2) .dash-val { color: #06b6d4; }
.dash-stat:nth-child(3) .dash-val { color: #7c3aed; }
.dash-stat:nth-child(1) { background: rgba(37, 99, 235, 0.06); }
.dash-stat:nth-child(2) { background: rgba(6, 182, 212, 0.06); }
.dash-stat:nth-child(3) { background: rgba(124, 58, 237, 0.06); }

.service-card[data-accent="blue"]::after { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.service-card[data-accent="cyan"]::after { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.service-card[data-accent="violet"]::after { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.service-card[data-accent="emerald"]::after { background: linear-gradient(90deg, #10b981, #34d399); }
.service-card[data-accent="amber"]::after { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-card[data-accent="coral"]::after { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.service-card[data-accent="blue"] .service-icon { background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(56,189,248,0.1)); color: #2563eb; }
.service-card[data-accent="cyan"] .service-icon { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(34,211,238,0.1)); color: #06b6d4; }
.service-card[data-accent="violet"] .service-icon { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(167,139,250,0.1)); color: #7c3aed; }
.service-card[data-accent="emerald"] .service-icon { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.1)); color: #10b981; }
.service-card[data-accent="amber"] .service-icon { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(251,191,36,0.1)); color: #f59e0b; }
.service-card[data-accent="coral"] .service-icon { background: linear-gradient(135deg, rgba(244,63,94,0.15), rgba(251,113,133,0.1)); color: #f43f5e; }
.service-card[data-accent="blue"] .card-link { color: #2563eb; }
.service-card[data-accent="cyan"] .card-link { color: #0891b2; }
.service-card[data-accent="violet"] .card-link { color: #7c3aed; }
.service-card[data-accent="emerald"] .card-link { color: #059669; }
.service-card[data-accent="amber"] .card-link { color: #d97706; }
.service-card[data-accent="coral"] .card-link { color: #e11d48; }

.feature-item:nth-child(1) .feature-icon { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.feature-item:nth-child(2) .feature-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.feature-item:nth-child(3) .feature-icon { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.feature-item:nth-child(4) .feature-icon { background: linear-gradient(135deg, #10b981, #34d399); }

.metric:nth-child(1) .metric-fill { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.metric:nth-child(2) .metric-fill { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.metric:nth-child(3) .metric-fill { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.metric:nth-child(4) .metric-fill { background: linear-gradient(90deg, #10b981, #34d399); }
.metric:nth-child(1) strong { color: #2563eb; }
.metric:nth-child(2) strong { color: #0891b2; }
.metric:nth-child(3) strong { color: #7c3aed; }
.metric:nth-child(4) strong { color: #059669; }

.global-list li:nth-child(1)::before { background: #2563eb; }
.global-list li:nth-child(2)::before { background: #06b6d4; }
.global-list li:nth-child(3)::before { background: #7c3aed; }
.global-list li:nth-child(4)::before { background: #10b981; }
.global-card:nth-child(1) { border-top: 3px solid #2563eb; }
.global-card:nth-child(2) { border-top: 3px solid #06b6d4; }
.global-card:nth-child(3) { border-top: 3px solid #7c3aed; }
.global-card:nth-child(4) { border-top: 3px solid #10b981; }
.global-card:nth-child(1) .global-card-val { color: #2563eb; }
.global-card:nth-child(2) .global-card-val { color: #0891b2; }
.global-card:nth-child(3) .global-card-val { color: #7c3aed; }
.global-card:nth-child(4) .global-card-val { color: #059669; }

.industry-pill:nth-child(6n+1):hover { border-color: #2563eb; background: rgba(37,99,235,0.06); }
.industry-pill:nth-child(6n+2):hover { border-color: #06b6d4; background: rgba(6,182,212,0.06); }
.industry-pill:nth-child(6n+3):hover { border-color: #7c3aed; background: rgba(124,58,237,0.06); }
.industry-pill:nth-child(6n+4):hover { border-color: #10b981; background: rgba(16,185,129,0.06); }
.industry-pill:nth-child(6n+5):hover { border-color: #f59e0b; background: rgba(245,158,11,0.06); }
.industry-pill:nth-child(6n+6):hover { border-color: #f43f5e; background: rgba(244,63,94,0.06); }

.process-card:nth-child(1) .step { background: rgba(37,99,235,0.12); color: #2563eb; }
.process-card:nth-child(2) .step { background: rgba(6,182,212,0.12); color: #0891b2; }
.process-card:nth-child(3) .step { background: rgba(124,58,237,0.12); color: #7c3aed; }
.process-card:nth-child(4) .step { background: rgba(16,185,129,0.12); color: #059669; }

.excellence-item:nth-child(1) { border-left-color: #2563eb; }
.excellence-item:nth-child(2) { border-left-color: #06b6d4; }
.excellence-item:nth-child(3) { border-left-color: #7c3aed; }

.cert-row span:nth-child(1) { color: #2563eb; border-color: rgba(37,99,235,0.25); background: rgba(37,99,235,0.06); }
.cert-row span:nth-child(2) { color: #0891b2; border-color: rgba(6,182,212,0.25); background: rgba(6,182,212,0.06); }
.cert-row span:nth-child(3) { color: #7c3aed; border-color: rgba(124,58,237,0.25); background: rgba(124,58,237,0.06); }
.footer-certs span:nth-child(1) { color: #93c5fd; border-color: rgba(96,165,250,0.3); }
.footer-certs span:nth-child(2) { color: #67e8f9; border-color: rgba(34,211,238,0.3); }
.footer-certs span:nth-child(3) { color: #c4b5fd; border-color: rgba(167,139,250,0.3); }

.value-card:nth-child(1) .value-icon { background: rgba(37,99,235,0.2); color: #60a5fa; }
.value-card:nth-child(2) .value-icon { background: rgba(6,182,212,0.2); color: #22d3ee; }
.value-card:nth-child(3) .value-icon { background: rgba(124,58,237,0.2); color: #a78bfa; }
.value-card:nth-child(4) .value-icon { background: rgba(16,185,129,0.2); color: #34d399; }
.value-card:nth-child(5) .value-icon { background: rgba(245,158,11,0.2); color: #fbbf24; }
.value-card:nth-child(6) .value-icon { background: rgba(244,63,94,0.2); color: #fb7185; }
.value-card:hover { border-color: rgba(56, 189, 248, 0.3); }

.leader-card:nth-child(1) .leader-role { color: #2563eb; }
.leader-card:nth-child(2) .leader-role { color: #06b6d4; }
.leader-card:nth-child(3) .leader-role { color: #7c3aed; }

.timeline::before {
    background: linear-gradient(180deg, #2563eb, #06b6d4, #7c3aed, #10b981, transparent);
}
.timeline-item:nth-child(1)::before { background: #2563eb; box-shadow: 0 0 0 2px #2563eb; }
.timeline-item:nth-child(2)::before { background: #06b6d4; box-shadow: 0 0 0 2px #06b6d4; }
.timeline-item:nth-child(3)::before { background: #7c3aed; box-shadow: 0 0 0 2px #7c3aed; }
.timeline-item:nth-child(4)::before { background: #10b981; box-shadow: 0 0 0 2px #10b981; }
.timeline-item:nth-child(5)::before { background: #f59e0b; box-shadow: 0 0 0 2px #f59e0b; }
.timeline-item:nth-child(6)::before { background: #f43f5e; box-shadow: 0 0 0 2px #f43f5e; }
.timeline-year { color: #38bdf8; }

.contact-form::before { background: var(--gradient-brand); height: 3px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.back-top {
    background: var(--gradient-prestige);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}