:root {
  --blue: #0b47a1;
  --blue-deep: #082e70;
  --blue-bright: #3079ee;
  --ink: #0f0f0f;
  --ink-soft: #25334d;
  --muted: #5d6b81;
  --line: #dce3ec;
  --paper: #f5f7fa;
  --white: #fff;
  --dark: #080f1f;
  --dark-soft: #101b31;
  --glow: rgba(39, 116, 239, .23);
  --shadow: 0 18px 50px rgba(15, 38, 80, .10);
  --shadow-lift: 0 24px 56px rgba(12, 46, 108, .17);
  --radius: 18px;
  --radius-sm: 11px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --font: Inter, "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.62; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--blue); }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 14px; color: #fff; background: var(--blue); border-radius: 5px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffbc36; outline-offset: 3px; }

/* Navigation */
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(218, 228, 240, .8); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.site-header.scrolled { box-shadow: 0 10px 32px rgba(14, 43, 88, .09); }
body[data-page="home"] .site-header:not(.scrolled) { position: absolute; width: 100%; border-color: rgba(185,211,251,.13); background: transparent; backdrop-filter: none; }
body[data-page="home"] .site-header:not(.scrolled) .brand { color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .brand-text small { color: #a8cbff; }
body[data-page="home"] .site-header:not(.scrolled) .nav-links a, body[data-page="home"] .site-header:not(.scrolled) .menu-toggle { color: #dce9fb; }
body[data-page="home"] .site-header:not(.scrolled) .nav-links a:hover, body[data-page="home"] .site-header:not(.scrolled) .nav-links a[aria-current="page"] { color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .button-small { color: var(--blue-deep); background: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .nav-panel.open .nav-links a { color: #28364c; }
body[data-page="home"] .site-header:not(.scrolled) .nav-panel.open .button-small { color: #fff; background: var(--blue); }
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: inline-flex; flex-shrink: 0; align-items: center; gap: 10px; color: var(--ink); }
.site-logo{
    display: block;
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}
.brand-mark { position: relative; display: block; width: 33px; height: 33px; overflow: hidden; border-radius: 9px; background: linear-gradient(145deg, #0f5ecc, #062c6d); box-shadow: inset 0 1px 1px rgba(255,255,255,.32), 0 6px 15px rgba(11,71,161,.2); }
.brand-mark i { position: absolute; display: block; width: 8px; border-radius: 8px; background: #fff; transform: rotate(37deg); }
.brand-mark i:nth-child(1) { left: 8px; top: 8px; height: 20px; opacity: .95; }
.brand-mark i:nth-child(2) { left: 14px; top: 6px; height: 15px; opacity: .63; }
.brand-mark i:nth-child(3) { left: 20px; top: 11px; height: 17px; opacity: .37; }
.brand-text { display: grid; line-height: .93; letter-spacing: -.03em; }
.brand-text strong { font-size: 1.05rem; font-weight: 800; }
.brand-text small { margin-top: 4px; color: var(--blue); font-size: .53rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.nav-panel { display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 19px; }
.nav-links a { position: relative; padding: 26px 0; color: #28364c; font-size: .78rem; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.nav-links a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; border-radius: 8px; color: var(--ink); background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 51px; padding: 13px 19px; border: 1px solid transparent; border-radius: 9px; font-size: .88rem; font-weight: 780; line-height: 1.1; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.button svg, .text-link svg, .service-card a svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 9px 13px; color: #fff; background: var(--blue); font-size: .78rem; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 9px 22px rgba(11,71,161,.25); }
.button-primary:hover { background: var(--blue-deep); box-shadow: 0 13px 28px rgba(11,71,161,.3); }
.button-outline { color: var(--blue); border-color: #a7bee3; background: #fff; }
.button-outline:hover { color: #fff; border-color: var(--blue); background: var(--blue); }
.button-ghost-light { color: #fff; border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.06); }
.button-ghost-light:hover { color: var(--ink); border-color: #fff; background: #fff; }
.button-white { color: var(--blue-deep); background: #fff; box-shadow: 0 12px 25px rgba(0,0,0,.15); }
.button-white:hover { color: var(--blue-deep); background: #f5f8ff; }

/* Typography / common sections */
.section { padding: 116px 0; }
.section-soft { background: var(--paper); }
.section-dark { color: #fff; background: var(--dark); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--blue); font-size: .70rem; font-weight: 800; letter-spacing: .145em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.eyebrow-light { color: #9ec2ff; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { font-weight: 750; line-height: 1.08; letter-spacing: -.055em; }
h1 { margin: 0; font-size: clamp(3.2rem, 6.3vw, 6.55rem); }
h1 em { color: #8bb9ff; font-style: normal; }
h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 4rem); }
h2 span { color: var(--blue); }
h3 { margin: 0; font-size: 1.25rem; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 620px; margin: 17px 0 0; color: var(--muted); font-size: 1.04rem; }
.section-heading.narrow { max-width: 690px; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; max-width: none; }
.heading-light h2 { color: #fff; }
.heading-light p:last-child { color: #aebed7; }
.prose { max-width: 580px; color: var(--muted); font-size: 1.06rem; }
.prose p { margin: 0 0 17px; }
.prose h2 { margin: 0 0 22px; color: var(--ink); font-size: clamp(2.1rem, 3.1vw, 3.25rem); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .87rem; font-weight: 800; transition: gap .2s var(--ease), color .2s var(--ease); }
.text-link:hover { gap: 13px; color: var(--blue-deep); }
.two-column { display: grid; grid-template-columns: .88fr 1.12fr; gap: 118px; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.four-up { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Home hero */
.hero-section{
    position:relative;
    min-height:min(850px,94vh);
    overflow:hidden;
    color:#fff;

    background:
        linear-gradient(
            rgba(6,12,28,.78),
            rgba(6,12,28,.88)
        ),
        url("../images/bg.png") center center / cover no-repeat;
}
.hero-orb-one,
.hero-orb-two,
.hero-visual-glow{
    display:none;
}
.hero-content h1{
    text-shadow:0 4px 30px rgba(0,0,0,.45);
}

.hero-copy{
    text-shadow:0 2px 10px rgba(0,0,0,.45);
}
.hero-section::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:clamp(20px, 5vw, 60px);

    background:linear-gradient(
        transparent,
        #fff
    );
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { top: 15%; left: 36%; width: 310px; height: 310px; background: rgba(21, 109, 239, .16); filter: blur(75px); }
.hero-orb-two { right: -5%; bottom: 8%; width: 270px; height: 270px; background: rgba(37, 106, 245, .2); filter: blur(65px); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: min(850px, 94vh); gap: 20px; }
.hero-content { padding: 150px 0 84px; }
.hero-content h1 { max-width: 730px; }
.hero-copy { max-width: 605px; margin: 28px 0 34px; color: #c8d8ef; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; align-items: center; gap: 9px; margin-top: 37px; color: #b9c9e0; font-size: .8rem; font-weight: 600; }
.pulse-dot { width: 8px; height: 8px; border-radius: 100%; background: #62e6c5; box-shadow: 0 0 0 0 rgba(98,230,197,.6); animation: pulse 2.3s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(98,230,197,0); } 100% { box-shadow: 0 0 0 0 rgba(98,230,197,0); } }
.hero-visual { position: relative; align-self: stretch; min-height: 550px; transition: transform .2s linear; }
.hero-visual img { position: absolute; right: -12%; bottom: 0; width: min(850px, 132%); max-width: none; mix-blend-mode: screen; opacity: .98; filter: saturate(1.05) contrast(1.05); }
.hero-visual-glow { position: absolute; right: 11%; bottom: 14%; width: 380px; height: 380px; border-radius: 50%; background: #0a64df; filter: blur(85px); opacity: .19; }
.float-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 15px 11px 11px; border: 1px solid rgba(205,225,255,.33); border-radius: 12px; background: rgba(255,255,255,.12); box-shadow: 0 14px 34px rgba(0,0,0,.18); backdrop-filter: blur(15px); animation: drift 6s ease-in-out infinite alternate; }
.float-card-top { top: 21%; left: 7%; }
.float-card-bottom { right: 9%; bottom: 21%; animation-delay: -2s; }
.float-card b, .float-card small { display: block; line-height: 1.25; }
.float-card b { font-size: .76rem; }
.float-card small { color: #b9cbea; font-size: .66rem; }
.float-icon { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 8px; color: #d7e8ff; background: rgba(69,139,246,.32); }
.float-icon .icon { width: 17px; height: 17px; }
@keyframes drift { from { transform: translateY(-5px); } to { transform: translateY(7px); } }

/* Home patterns */
.section-intro { padding: 132px 0; }
.feature-intro h2 { max-width: 450px; }
.strategic-cards { counter-reset: card; }
.strategic-card { min-height: 292px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 3px 0 rgba(11,71,161,.03); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border .25s var(--ease); }
.strategic-card:hover { border-color: rgba(11,71,161,.28); box-shadow: var(--shadow); transform: translateY(-5px); }
.card-icon, .service-icon, .industry-icon { display: grid; width: 45px; height: 45px; margin-bottom: 25px; place-items: center; border-radius: 13px; color: var(--blue); background: #eaf1ff; }
.card-icon .icon, .service-icon .icon, .industry-icon .icon { width: 23px; height: 23px; }
.card-kicker { margin: 0 0 10px; color: #8da1bc; font-size: .70rem; font-weight: 800; letter-spacing: .15em; }
.strategic-card h3 { margin-bottom: 10px; }
.strategic-card > p:not(.card-kicker) { min-height: 73px; margin: 0 0 18px; color: var(--muted); font-size: .91rem; }
.strategic-card a,
.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 800;
}

.service-card a{
    margin-top:auto;
}
.strategic-card a:hover, .service-card a:hover { color: var(--blue-deep); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    display: flex;
    flex-direction: column;

    min-height: 340px;   /* adjust 340-360px if needed */

    padding: 27px;
    border: 1px solid #e0e7f0;
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 5px 14px rgba(13,41,83,.03);
    transform-style: preserve-3d;
    transition: border-color .25s var(--ease),
                box-shadow .25s var(--ease),
                transform .25s var(--ease);
}
.service-card:hover { border-color: rgba(11,71,161,.24); box-shadow: var(--shadow-lift); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon { margin-bottom: 25px; }
.service-index, .industry-number { color: #a9b8cd; font-size: .70rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p{
    flex:1;
    margin:0 0 16px;
    line-height:1.7;
    color: var(--muted);
    font-size: .88rem;
}
.industry-ticker { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(170,199,244,.26); border-radius: 100px; color: #dbe8fb; background: rgba(255,255,255,.04); font-size: .82rem; font-weight: 700; transition: background .2s, transform .2s; }
.industry-chip .icon { width: 17px; height: 17px; color: #86b7ff; }
.industry-chip:hover { color: #fff; background: rgba(55,117,220,.28); transform: translateY(-2px); }
.reason-card { min-height: 238px; padding: 28px 24px; border-top: 2px solid transparent; background: #fff; box-shadow: 0 8px 22px rgba(20,48,92,.05); transition: transform .25s, border-color .25s, box-shadow .25s; }
.reason-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-5px); }
.reason-card > span { display: block; margin-bottom: 33px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.reason-card h3 { margin-bottom: 9px; font-size: 1.07rem; }
.reason-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; }
.process-line li { position: relative; padding: 0 20px 0 0; }
.process-line li:not(:last-child)::after { position: absolute; z-index: 0; top: 20px; right: 0; left: 45px; height: 1px; content: ""; background: #b8cae7; }
.process-line span { position: relative; z-index: 1; display: grid; width: 41px; height: 41px; margin-bottom: 22px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 0 0 0 8px #e9f0fb; font-size: .72rem; font-weight: 800; }
.process-line h3 { margin-bottom: 7px; font-size: 1.05rem; }
.process-line p { margin: 0; color: var(--muted); font-size: .82rem; }
.technology-section { overflow: hidden; }
.technology-note { max-width: 370px; margin: 0; color: var(--muted); font-size: .86rem; }
.technology-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.technology-card { min-height: 198px; padding: 23px; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(135deg, #fff, #f7faff); }
.technology-card h3 { margin-bottom: 17px; color: var(--blue-deep); font-size: 1.03rem; }
.technology-card ul { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.technology-card li { display: flex; align-items: start; gap: 7px; color: var(--muted); font-size: .77rem; }
.technology-card .icon { flex: 0 0 auto; width: 14px; height: 14px; margin-top: 3px; color: var(--blue); }
.impact-section { background: radial-gradient(circle at 100% 0%, #103d86, #080f1f 58%); }
.impact-section .container { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.impact-copy p:last-child { max-width: 420px; color: #afbed3; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { padding: 28px; border: 1px solid rgba(164,199,255,.18); border-radius: 13px; background: rgba(255,255,255,.06); }
.stat-card strong { display: block; margin-bottom: 5px; color: #fff; font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; letter-spacing: -.06em; }
.stat-card span { display: block; color: #c7d3e4; font-size: .84rem; font-weight: 650; }
.stat-card small { display: inline-block; margin-top: 9px; padding: 2px 7px; border-radius: 12px; color: #a9c7ff; background: rgba(110,168,255,.13); font-size: .61rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.testimonial-placeholder { max-width: 770px; padding: 42px 50px; border: 1px dashed #a5b6ca; border-radius: var(--radius); background: #f9fbfd; }
.quote-mark { height: 47px; color: #c4d9fc; font-family: Georgia, serif; font-size: 5rem; line-height: .9; }
.testimonial-placeholder p { margin: 10px 0; color: #36445b; font-size: 1.25rem; font-weight: 650; letter-spacing: -.03em; }
.testimonial-placeholder span { color: var(--muted); font-size: .85rem; }
.cta-section { padding: 0 0 100px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 44px; padding: 56px 62px; overflow: hidden; border-radius: var(--radius); color: #fff; background: linear-gradient(125deg, #0b47a1, #082b68); box-shadow: 0 20px 50px rgba(11,71,161,.25); }
.cta-panel h2 { max-width: 700px; color: #fff; font-size: clamp(2rem, 3vw, 3.25rem); }
.cta-panel h2 span { color: #b9d5ff; }
.cta-panel p:last-child { margin: 13px 0 0; color: #d5e2f7; }

/* Inner page layout */
.page-hero{
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;

    min-height:560px;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #071124,
        #0b2e6b
    );
}
.page-hero::before { position: absolute; top: -230px; right: -80px; width: 700px; height: 700px; border: 1px solid rgba(137,186,255,.25); border-radius: 45% 55% 60% 40%; content: ""; box-shadow: -40px 70px 0 -10px rgba(62,125,227,.12), -100px 125px 0 -20px rgba(62,125,227,.07); transform: rotate(30deg); }
.page-hero::after{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(48,121,238,.08);

    filter:blur(90px);
}
.page-hero .container{
    position:relative;
    z-index:2;

    width:min(var(--container), calc(100% - 64px));

    margin:auto;
}
.page-hero h1 { max-width: 915px; font-size: clamp(3rem, 6vw, 5.75rem); }
.page-hero p:last-child { max-width: 650px; margin: 25px 0 0; color: #c9d9ef; font-size: 1.08rem; }
.page-hero.compact { padding: 89px 0 76px; }
.page-hero.compact h1 { font-size: clamp(3rem, 5vw, 4.7rem); }
.breadcrumb { display: flex; align-items: center; gap: 10px; min-height: 70px; color: #7b8ca3; font-size: .78rem; }
.breadcrumb a { color: var(--blue); font-weight: 700; }
.split-story { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.story-visual { position: relative; min-height: 396px; overflow: hidden; border-radius: var(--radius); background: radial-gradient(circle at 38% 27%, #2d82f2, #0a3a85 48%, #08162e 100%); box-shadow: var(--shadow); }
.story-year { position: absolute; z-index: 2; right: 10%; bottom: 10%; color: #fff; font-size: clamp(4rem, 7vw, 7rem); font-weight: 800; line-height: .8; letter-spacing: -.08em; }
.story-year span { display: block; margin: 14px 0 0 8px; color: #b8d6ff; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 48px 48px; transform: perspective(450px) rotateX(56deg) scale(1.6) translateY(35%); transform-origin: bottom; }
.story-grid i { position: absolute; border-radius: 50%; filter: blur(3px); }
.story-grid i:nth-child(1) { top: 10%; left: 25%; width: 100px; height: 100px; background: #d9eaff; opacity: .9; }
.story-grid i:nth-child(2) { top: 34%; left: 40%; width: 170px; height: 170px; border: 12px solid #73a9ff; }
.story-grid i:nth-child(3) { top: 5%; right: 13%; width: 62px; height: 62px; background: #3d7ee7; }
.story-grid i:nth-child(4) { bottom: 20%; left: 18%; width: 110px; height: 110px; background: #0f62d7; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.vision-grid article { padding: 5px 0 7px 25px; border-left: 3px solid var(--blue); }
.vision-grid h2 { font-size: clamp(1.65rem, 2.7vw, 2.6rem); }
.leadership-layout { display: grid; grid-template-columns: .74fr 1.26fr; align-items: center; gap: 88px; }
.leader-photo { display: grid; min-height: 390px; place-items: center; overflow: hidden; border: 1px solid rgba(169,205,255,.22); border-radius: var(--radius); color: #9cc4ff; background: linear-gradient(145deg, #113b7e, #091b36); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-photo > span { display: grid; width: 117px; height: 117px; place-items: center; border: 1px solid rgba(196,220,255,.5); border-radius: 50%; color: #dceaff; background: rgba(255,255,255,.08); font-size: 2.8rem; font-weight: 800; letter-spacing: -.08em; }
.leader-photo small { position: absolute; align-self: end; margin-bottom: 32px; color: #a8c3e8; font-size: .72rem; }
.leader-copy h2 { color: #fff; }
.leader-role { margin: 13px 0 26px; color: #9dc4ff; font-size: 1rem; font-weight: 700; }
.leader-copy blockquote { padding: 0 0 0 23px; margin: 0 0 24px; border-left: 2px solid #77aaf5; color: #e1edff; font-size: 1.25rem; font-weight: 600; line-height: 1.5; }
.leader-copy > p:last-child { color: #a9bad2; font-size: .81rem; }
.leader-copy code { color: #c2dcff; font-family: ui-monospace, monospace; }
.timeline { display: grid; gap: 0; max-width: 850px; padding: 0; margin: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 116px 1fr; gap: 32px; padding: 0 0 34px; }
.timeline li span { color: var(--blue); font-size: .84rem; font-weight: 800; letter-spacing: .1em; }
.timeline li div { position: relative; padding-left: 33px; border-left: 1px solid #c6d5eb; }
.timeline li div::before { position: absolute; top: 4px; left: -6px; width: 11px; height: 11px; border: 2px solid var(--blue); border-radius: 50%; content: ""; background: #fff; }
.timeline h3 { margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }
.glass-statements { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.glass-statements > div { padding: 27px; border: 1px solid #dce7f7; border-radius: 14px; background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(235,244,255,.7)); box-shadow: 0 11px 25px rgba(12,61,142,.07); }
.glass-statements > div:first-child { grid-column: span 2; }
.glass-statements > div > span { display: grid; width: 40px; height: 40px; margin-bottom: 20px; place-items: center; border-radius: 11px; color: var(--blue); background: #e6f0ff; }
.glass-statements .icon { width: 22px; height: 22px; }
.glass-statements h3 { margin-bottom: 7px; }
.glass-statements p { margin: 0; color: var(--muted); font-size: .84rem; }
.identity-banner { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 64px; padding: 51px; border-radius: var(--radius); color: #fff; background: linear-gradient(140deg, #102d5e, #0a4caf); }
.identity-banner h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 3rem); }
.identity-banner p:last-child { margin: 0; color: #d1e1f9; font-size: 1.02rem; }
.service-group { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 95px; }
.service-group-heading { position: sticky; top: 105px; }
.large-service-icon { display: grid; width: 53px; height: 53px; margin-bottom: 23px; place-items: center; border-radius: 14px; color: var(--blue); background: #e4efff; }
.large-service-icon .icon { width: 27px; height: 27px; }
.service-group-heading h2 { margin-bottom: 17px; font-size: clamp(2.1rem, 3.4vw, 3.4rem); }
.service-group-heading > p:last-child { margin: 0; color: var(--muted); }
.service-group-list { border-top: 1px solid var(--line); }
.line-service { display: grid; grid-template-columns: 46px 1fr 25px; align-items: center; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); transition: padding .25s var(--ease), color .25s var(--ease); }
.line-service:hover { padding-right: 9px; padding-left: 9px; color: var(--blue); }
.line-service > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: var(--blue); background: #eaf2ff; }
.line-service > span .icon, .line-service > .icon { width: 20px; height: 20px; }
.line-service h3 { margin-bottom: 6px; font-size: 1.05rem; }
.line-service p { margin: 0; color: var(--muted); font-size: .86rem; }
.service-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.service-note .large-service-icon { margin: 0; color: #9dc3ff; background: rgba(122,173,255,.15); }
.service-note h2 { margin: 0 0 8px; color: #fff; font-size: 2.3rem; }
.service-note p:last-child { margin: 0; color: #b5c7e0; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { display: flex; min-height: 286px; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border .25s var(--ease); }
.industry-card:hover { border-color: rgba(11,71,161,.26); box-shadow: var(--shadow); }
.industry-card > div { display: flex; align-items: flex-start; justify-content: space-between; }
.industry-card h3 { margin: 17px 0 10px; font-size: 1.1rem; }
.industry-card p { margin: 0 0 18px; color: var(--muted); font-size: .85rem; }
.industry-card a { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--blue); font-size: .77rem; font-weight: 800; }
.industry-card a .icon { width: 16px; height: 16px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.insight-art { position: relative; height: 155px; overflow: hidden; background: #0b3478; }
.insight-art::before, .insight-art::after { position: absolute; border: 1px solid rgba(255,255,255,.38); content: ""; }
.insight-art::before { top: -41px; right: 12%; width: 160px; height: 160px; border-radius: 50%; }
.insight-art::after { bottom: -60px; left: 10%; width: 180px; height: 115px; border-radius: 18px; transform: rotate(-20deg); }
.insight-art-1 { background: linear-gradient(135deg, #06397d, #0892b2); }
.insight-art-2 { background: linear-gradient(135deg, #162246, #315eb0); }
.insight-art span { position: absolute; z-index: 1; bottom: 15px; left: 19px; color: rgba(255,255,255,.75); font-size: 3.4rem; font-weight: 800; letter-spacing: -.08em; }
.insight-content { padding: 22px; }
.insight-content > p:first-child { margin: 0 0 10px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.insight-content h2 { margin: 0 0 10px; font-size: 1.25rem; }
.insight-content > p:nth-of-type(2) { margin: 0 0 17px; color: var(--muted); font-size: .86rem; }
.coming-soon { display: inline-block; padding: 4px 8px; border-radius: 20px; color: #51709c; background: #edf3fc; font-size: .66rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.feature-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 29px; padding: 38px 44px; border: 1px solid #dbe6f7; border-radius: var(--radius); background: #fff; }
.feature-note .large-service-icon { margin: 0; }
.feature-note h2 { margin: 0 0 8px; font-size: 1.65rem; }
.feature-note p:last-child { margin: 0; color: var(--muted); }
.news-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.news-toolbar h2 { font-size: clamp(2.1rem, 3.4vw, 3.4rem); }
.news-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 99px; color: #376397; background: #edf4ff; font-size: .72rem; font-weight: 750; }
.news-status i { width: 7px; height: 7px; border-radius: 50%; background: #3a90e9; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.news-card { display: grid; grid-template-columns: 82px 1fr; gap: 23px; padding: 27px; border: 1px solid var(--line); border-radius: 13px; background: #fff; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-date { display: grid; height: 70px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); text-align: center; }
.news-date span { display: block; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-date strong { display: block; font-size: 1.6rem; line-height: .8; }
.news-card div:last-child > p:first-child { margin: 0 0 7px; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 9px; font-size: 1.12rem; }
.news-card div:last-child > p:nth-of-type(2) { margin: 0 0 15px; color: var(--muted); font-size: .86rem; }

/* Contact and legal */
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 80px; }
.contact-details h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.contact-details > p { margin: 0 0 30px; color: var(--muted); }
.contact-detail-list { display: grid; gap: 19px; }
.contact-detail-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.contact-detail-list > div > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 9px; color: var(--blue); background: #e9f1ff; }
.contact-detail-list .icon { width: 18px; height: 18px; }
.contact-detail-list small, .contact-detail-list strong, .contact-detail-list em { display: block; }
.contact-detail-list small { margin-bottom: 1px; color: #60718a; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail-list strong { color: #1d2c42; font-size: .9rem; }
.contact-detail-list em { margin-top: 3px; color: #75849a; font-size: .73rem; font-style: normal; }
.contact-form { padding: 38px; border: 1px solid #dae5f2; border-radius: var(--radius); background: #f8fbff; box-shadow: var(--shadow); }
.form-heading h2 { margin: 0 0 7px; font-size: 1.8rem; }
.form-heading p:last-child { margin: 0 0 25px; color: var(--muted); font-size: .84rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 6px; color: #25344b; font-size: .8rem; font-weight: 760; }
.field label span { color: #b51d1d; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid #c7d4e5; border-radius: 8px; color: var(--ink); background: #fff; font-size: .91rem; line-height: 1.4; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 134px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(11,71,161,.12); }
.field small { display: block; margin-top: 5px; color: #748299; font-size: .71rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-message { padding: 12px 14px; margin: 0 0 18px; border-radius: 8px; font-size: .86rem; font-weight: 650; }
.form-message.success { border: 1px solid #b3e4ca; color: #136b3a; background: #e8f8ef; }
.form-message.error { border: 1px solid #f1c3c3; color: #951c1c; background: #ffefef; }
.form-privacy { margin: 15px 0 0; color: #6a7c94; font-size: .72rem; line-height: 1.55; }
.form-privacy a { color: var(--blue); text-decoration: underline; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.office-card { display: grid; grid-template-columns: 300px 1fr; gap: 28px; padding: 20px; border: 1px solid #dbe5ef; border-radius: var(--radius-sm); background: #fff; }
.office-card h3 { margin: 0 0 9px; font-size: 1.18rem; }
.office-card > div:last-child > p:not(.eyebrow) { margin: 0 0 15px; color: var(--muted); font-size: .88rem; }
.legal-content { max-width: 780px; color: var(--muted); }
.legal-content h2 { margin: 36px 0 11px; color: var(--ink); font-size: 1.65rem; }
.legal-content p { margin: 0 0 15px; }
.office-image{
    display:block;
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:14px;
    position:relative;
    transition:.35s ease;
}

.office-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.office-image::after{
    content:"View on Google Maps";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:14px;
    color:#fff;
    font-size:.8rem;
    font-weight:700;
    text-align:center;
    background:linear-gradient(transparent, rgba(0,0,0,.75));
    opacity:0;
    transition:.35s ease;
}

.office-card:hover .office-image img{
    transform:scale(1.08);
}

.office-card:hover .office-image::after{
    opacity:1;
}

/* Footer */
.site-footer { padding: 69px 0 24px; color: #c4d0e1; background: #070e1c; }
.footer-grid{
    display:grid;
    grid-template-columns:
        minmax(280px,1.8fr)
        minmax(140px,.9fr)
        minmax(160px,.9fr)
        minmax(160px,.8fr)
        minmax(290px,1.5fr);

    gap:50px;
    padding-bottom:50px;
    align-items:flex-start;
}
.brand-light { color: #fff; }
.footer-brand > p { max-width: 356px; margin: 19px 0; color: #9eafc7; font-size: .84rem; }
.footer-grid h2 { margin: 6px 0 17px; color: #fff; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: #a6b6ca; font-size: .81rem; }
.footer-list a:hover { color: #fff; }
.footer-list .icon { width: 14px; height: 14px; vertical-align: middle; }
.social-links{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:18px;
}
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.footer-phone strong{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.footer-phone a{
    display:block;
    color:#fff;
    font-size:.98rem;      /* smaller */
    font-weight:600;
    letter-spacing:.02em;
}

.footer-phone a:hover{
    color:#ffffff;
}

.footer-office-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-office strong{
    display:block;
    color:#ffffff;
    margin-bottom:6px;
    font-size:.85rem;
    font-weight:700;
}

.footer-office p{
    margin:4px 0 0;
    color:#9eafc7;
    line-height:1.45;
    font-size:.96rem;
}
.social-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffffff;
    border:1px solid #ffffff;
    transition:.3s ease;
}

.social-links a:hover{
    background:#0b47a1;
    border-color:#0b47a1;
    transform:translateY(-3px);
}

.social-icon{
    width:20px;
    height:20px;
    display:block;
}

.footer-placeholder{
    color:#8598b2;
    font-size:.73rem;
    font-style:italic;
}
.footer-placeholder { color: #8598b2; font-size: .73rem; font-style: italic; }
.newsletter { margin-top: 26px; }
.newsletter label { display: block; margin-bottom: 7px; color: #fff; font-size: .75rem; font-weight: 750; }
.newsletter > div { display: flex; overflow: hidden; border: 1px solid #33465e; border-radius: 7px; background: #101d31; }
.newsletter input { min-width: 0; width: 100%; padding: 10px; border: 0; color: #fff; background: transparent; font-size: .75rem; }
.newsletter input:focus { outline: 2px solid #78aafd; outline-offset: -2px; }
.newsletter button { width: 36px; border: 0; color: #fff; background: var(--blue); font-size: 1rem; }
.newsletter small { display: block; margin-top: 6px; color: #8293aa; font-size: .65rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid #26364e; color: #8fa0b7; font-size: .72rem; }
.footer-bottom > span:last-child { display: flex; gap: 16px; }
.footer-bottom a:hover { color: #fff; }

/* Motion enhancements */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .container { width: min(var(--container), calc(100% - 44px)); }
  .navbar { gap: 14px; }
  .nav-panel { gap: 14px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .71rem; }
  .hero-visual img { right: -20%; }
  .two-column, .split-story { gap: 70px; }
  .contact-layout { gap: 50px; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .site-header { backdrop-filter: blur(18px); }
  .menu-toggle { display: block; }
  .nav-panel { position: absolute; top: calc(100% + 1px); right: 12px; left: 12px; display: none; align-items: stretch; padding: 14px; border: 1px solid #dce5ef; border-radius: 0 0 13px 13px; background: rgba(255,255,255,.98); box-shadow: 0 20px 38px rgba(9,38,87,.16); }
  .nav-panel.open { display: grid; }
  .nav-links { display: grid; gap: 0; }
  .nav-links a { padding: 11px 9px; font-size: .86rem; }
  .nav-links a::after { display: none; }
  .nav-panel .button { margin: 7px 0 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 38px; }
  .hero-content { padding: 78px 0 12px; }
  .hero-visual { min-height: 410px; margin: 0 -20px; }
  .hero-visual img { right: -11%; width: 750px; }
  .hero-visual-glow { right: 13%; bottom: 15%; }
  .float-card-top { top: 17%; left: 10%; }
  .float-card-bottom { right: 12%; bottom: 17%; }
  .three-up, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: 1fr; gap: 22px; }
  .process-line li { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 0; }
  .process-line li:not(:last-child)::after { top: 42px; right: auto; bottom: -23px; left: 20px; width: 1px; height: 23px; }
  .process-line span { margin: 0; }
  .process-line h3 { margin-top: 4px; }
  .technology-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-section .container { grid-template-columns: 1fr; gap: 42px; }
  .service-group { grid-template-columns: 1fr; gap: 42px; }
  .service-group-heading { position: static; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-layout { gap: 55px; }
  .office-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > section:last-child { grid-column: span 3; }
}
@media (max-width:900px){
    .office-card{
        grid-template-columns:1fr;
    }

    .office-image{
        height:240px;
    }
}
@media (max-width: 660px) {
  body { font-size: 15px; }
  .container { width: min(100% - 32px, var(--container)); }
  .navbar { min-height: 68px; }
  .brand-mark { width: 31px; height: 31px; }
  .brand-text strong { font-size: .98rem; }
  .section, .section-intro { padding: 68px 0; }
  .hero-section { min-height: auto; }
  .hero-content { padding-top: 76px; }
  .hero-copy { margin: 22px 0 28px; }
  .hero-trust { margin-top: 27px; }
  .hero-visual { min-height: 292px; margin: 0 -16px; }
  .hero-visual img { right: -39%; width: 570px; }
  .float-card { padding: 8px 10px 8px 8px; border-radius: 9px; }
  .float-card b { font-size: .67rem; }
  .float-card small { display: none; }
  .float-card-top { left: 6%; }
  .float-card-bottom { right: 5%; }
  .section-heading { margin-bottom: 34px; }
  .heading-row, .cta-panel, .identity-banner, .feature-note, .service-note { display: grid; align-items: start; gap: 23px; }
  .heading-row .button { justify-self: start; }
  .two-column, .split-story, .vision-grid, .leadership-layout, .contact-layout { grid-template-columns: 1fr; gap: 37px; }
  .three-up, .service-grid, .four-up, .technology-grid, .industry-grid, .insight-grid, .office-grid, .news-grid { grid-template-columns: 1fr; }
  .strategic-card, .service-card { min-height: auto; }
  .strategic-card > p:not(.card-kicker), .service-card p { min-height: auto; }
  .technology-card { min-height: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 21px 17px; }
  .testimonial-placeholder { padding: 28px; }
  .cta-section { padding-bottom: 68px; }
  .cta-panel { padding: 34px 28px; }
  .page-hero { padding: 83px 0 69px; }
  .page-hero .container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
  .breadcrumb { min-height: 55px; }
  .story-visual { min-height: 305px; }
  .glass-statements { grid-template-columns: 1fr; }
  .glass-statements > div:first-child { grid-column: span 1; }
  .identity-banner { padding: 31px 26px; }
  .service-group-heading h2 { font-size: 2.35rem; }
  .line-service { grid-template-columns: 40px 1fr 20px; gap: 13px; }
  .line-service h3 { font-size: .98rem; }
  .line-service p { font-size: .8rem; }
  .service-note { grid-template-columns: auto 1fr; }
  .service-note .button { grid-column: span 2; justify-self: start; }
  .news-toolbar { display: grid; align-items: start; margin-bottom: 30px; }
  .news-card { grid-template-columns: 63px 1fr; gap: 16px; padding: 20px; }
  .news-date { height: 60px; }
  .contact-form { padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .office-card { padding: 16px; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > section:last-child { grid-column: span 2; }
  .footer-bottom { display: grid; gap: 12px; }
}

@media (max-width: 390px) {
  .hero-actions .button { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > section:last-child { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
