/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:   #0b3866;
  --cobalt: #145a96;
  --sky:    #1886c3;
  --ink:    #152344;
  --mid:    #607194;
  --muted:  #AFC0D9;
  --border: #D4E2F0;
  --ice:    #EAF5FC;
  --bg:     #F5F9FD;
  --white:  #FFFFFF;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }
ul { list-style:none; }

h1 { font-size:clamp(36px,5vw,60px); font-weight:800; line-height:1.1; letter-spacing:-1.5px; }
h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; line-height:1.15; letter-spacing:-1px; color:var(--ink); }
h3 { font-size:20px; font-weight:700; color:var(--ink); }
p  { font-size:16px; line-height:1.75; color:var(--mid); }
strong { font-weight:700; color:var(--ink); }
.sky { color:var(--sky); }

.section-label {
  display:inline-block;
  font-size:11px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--sky);
  margin-bottom:14px;
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  position:fixed; top:0; left:0; right:0; z-index:201;
  height:36px;
  background:var(--white);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px;
  transition:transform .25s ease;
}
.topbar-group { display:flex; align-items:center; gap:20px; }
.topbar-item {
  display:flex; align-items:center; gap:6px;
  font-size:12px; color:var(--mid); letter-spacing:.01em;
}
.topbar-item svg { width:13px; height:13px; stroke:var(--sky); flex-shrink:0; }
.topbar-dot { width:4px; height:4px; border-radius:50%; background:var(--border); }
@media(max-width:860px){ .topbar { display:none; } }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position:fixed; top:36px; left:0; right:0; z-index:200;
  height:68px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .2s, top .2s;
}
.nav.scrolled { box-shadow:0 4px 24px rgba(21,35,68,.07); top:0; }

.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo img { height:48px; width:auto; border-radius:6px; }
.nav-logo-name {
  font-size:10px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--mid); line-height:1;
}
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a {
  font-size:15px; font-weight:500; color:var(--mid);
  transition:color .15s; letter-spacing:.1px;
}
.nav-links a:hover { color:var(--navy); }
.nav-links a.active-page { color:var(--navy); font-weight:600; }
.nav-cta {
  background:linear-gradient(135deg,var(--navy),var(--sky));
  color:var(--white) !important;
  padding:9px 22px; border-radius:999px;
  font-weight:600 !important; font-size:14px !important;
  transition:opacity .15s !important;
}
.nav-cta:hover { opacity:.88; }

/* ─── DROPDOWN ───────────────────────────────────────────── */
.nav-item { position:relative; list-style:none; }
.nav-item-btn {
  display:inline-flex; align-items:center; gap:5px;
  font-size:15px; font-weight:500;
  color:var(--mid); background:none; border:none;
  cursor:pointer; padding:0; font-family:'DM Sans',sans-serif;
  letter-spacing:.1px; transition:color .15s;
}
.nav-item-btn:hover { color:var(--navy); }
.nav-item-btn.active-page { color:var(--navy); font-weight:600; }
.nav-item-btn svg { width:14px; height:14px; stroke:currentColor; flex-shrink:0; transition:transform .2s; }
.nav-item.open .nav-item-btn svg { transform:rotate(180deg); }
.nav-dropdown {
  display:none;
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%); min-width:220px;
  background:var(--white); border:1px solid var(--border);
  border-radius:12px; box-shadow:0 16px 48px rgba(10,20,66,.13);
  padding:8px 0; z-index:300; animation:dd-in .18s ease both;
}
.nav-item.open .nav-dropdown { display:block; }
@keyframes dd-in {
  from { opacity:0; transform:translateX(-50%) translateY(8px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.nav-dropdown a {
  display:block; padding:11px 20px;
  font-size:14px; font-weight:500; color:var(--ink);
  border-bottom:1px solid var(--border);
  transition:background .15s, color .15s; white-space:nowrap;
}
.nav-dropdown a:last-child { border-bottom:none; }
.nav-dropdown a:hover { background:var(--ice); color:var(--sky); }

.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.burger span { width:22px; height:1.5px; background:var(--navy); border-radius:2px; transition:.3s; }
.mob-nav {
  display:none; position:fixed; top:104px; left:0; right:0;
  background:var(--white); border-bottom:1px solid var(--border);
  padding:12px 0; z-index:199; flex-direction:column;
}
.mob-nav.open { display:flex; }
.mob-nav a {
  padding:14px 28px; font-size:15px; color:var(--ink);
  border-bottom:1px solid var(--border); transition:background .15s;
}
.mob-nav a:hover { background:var(--bg); }
.mob-nav a.active-page { color:var(--navy); font-weight:600; }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position:relative;
  min-height:46vh;
  display:flex; align-items:center;
  padding:140px 0 80px;
  overflow:hidden;
  background:url('../images/banner.jpeg') center 40% / cover no-repeat;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(
    120deg,
    rgba(10,18,56,.95) 0%,
    rgba(21,38,100,.88) 55%,
    rgba(17,88,168,.74) 100%
  );
}
.page-hero-container {
  position:relative; z-index:1;
  width:100%; max-width:1360px;
  margin:0 auto; padding:0 60px;
}
.page-hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.62); margin-bottom:18px;
}
.page-hero-eyebrow::before {
  content:''; display:inline-block; width:20px; height:2px; background:var(--sky);
}
.page-hero h1 { color:var(--white); max-width:680px; }
.page-hero h1 strong { color:var(--sky); }
.page-hero p {
  margin-top:18px; font-size:18px;
  color:rgba(255,255,255,.68); line-height:1.72; max-width:580px;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  margin-top:32px; font-size:13px; color:rgba(255,255,255,.42);
}
.breadcrumb a { color:rgba(255,255,255,.55); transition:color .15s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { font-size:11px; }

/* ─── INTRO STRIP ────────────────────────────────────────── */
.intro-shell {
  background:var(--white);
  border-bottom:1px solid var(--border);
}
.intro-wrap {
  max-width:1360px; margin:0 auto;
  padding:80px 60px 72px;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
}
.intro-text {
  max-width:700px;
}
.intro-text p {
  font-size:17px; line-height:1.8; color:var(--mid);
  margin-top:0;
}
.intro-stats {
  display:flex; gap:24px; margin-top:52px; flex-wrap:wrap; justify-content:center;
}
.intro-stat {
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 36px;
  min-width:160px;
  text-align:center;
  transition:box-shadow .2s, transform .2s;
}
.intro-stat:hover {
  box-shadow:0 8px 32px rgba(21,35,68,.08);
  transform:translateY(-3px);
}
.intro-stat-num {
  font-size:36px; font-weight:800;
  color:var(--navy); letter-spacing:-1px; line-height:1;
  display:block; margin-bottom:6px;
}
.intro-stat-label {
  font-size:13px; font-weight:500; color:var(--mid);
  letter-spacing:.02em;
}

/* ─── INDUSTRIES GRID ────────────────────────────────────── */
.industries-shell {
  background:var(--bg);
  border-top:1px solid var(--border);
}
.industries-wrap {
  max-width:1360px; margin:0 auto;
  padding:88px 60px;
}
.industries-head {
  text-align:center; margin-bottom:60px;
}
.industries-head h2 { margin-bottom:12px; }
.industries-head p { max-width:560px; margin:0 auto; }

.industries-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.industry-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px 40px 36px;
  transition:box-shadow .2s, transform .2s, border-color .2s;
  position:relative;
  overflow:hidden;
}
.industry-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--navy), var(--sky));
  opacity:0;
  transition:opacity .2s;
}
.industry-card:hover {
  box-shadow:0 12px 48px rgba(21,35,68,.1);
  transform:translateY(-4px);
  border-color:rgba(23,136,199,.25);
}
.industry-card:hover::before { opacity:1; }

.industry-icon {
  font-size:40px; line-height:1; margin-bottom:18px;
  display:block;
}
.industry-card h3 {
  font-size:22px; font-weight:800; color:var(--ink);
  margin-bottom:8px; letter-spacing:-.4px;
}
.industry-challenge {
  font-size:12px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--sky); margin-bottom:16px;
  display:flex; align-items:center; gap:6px;
}
.industry-challenge::before {
  content:''; display:inline-block; width:14px; height:2px;
  background:var(--sky); border-radius:2px; flex-shrink:0;
}
.industry-card > p {
  font-size:15px; line-height:1.75; color:var(--mid);
  margin-bottom:24px;
}
.industry-focus-label {
  font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); margin-bottom:12px;
}
.industry-focus-list {
  display:flex; flex-direction:column; gap:8px;
}
.industry-focus-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--mid); line-height:1.55;
}
.industry-focus-list li::before {
  content:'';
  display:inline-block;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--sky);
  flex-shrink:0;
  margin-top:6px;
}

/* ─── CROSS-INDUSTRY CAPABILITIES ────────────────────────── */
.cross-shell {
  position:relative; overflow:hidden;
  background:url('../images/11869.jpg') center center / cover no-repeat;
}
.cross-shell::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(
    130deg,
    rgba(10,18,56,.94) 0%,
    rgba(21,38,100,.88) 50%,
    rgba(23,88,168,.80) 100%
  );
  pointer-events:none;
}
.cross-inner {
  position:relative; z-index:1;
  max-width:1360px; margin:0 auto;
  padding:96px 60px;
}
.cross-head {
  text-align:center; margin-bottom:56px;
}
.cross-head .section-label { color:rgba(255,255,255,.55); }
.cross-head h2 {
  color:var(--white); font-size:clamp(28px,3.5vw,42px);
  max-width:640px; margin:0 auto; letter-spacing:-1px;
}
.cross-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.cross-card {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  padding:36px 36px;
  backdrop-filter:blur(8px);
  transition:background .2s, border-color .2s;
}
.cross-card:hover {
  background:rgba(255,255,255,.11);
  border-color:rgba(255,255,255,.22);
}
.cross-card-icon {
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg, var(--navy), var(--sky));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  font-size:22px; line-height:1;
}
.cross-card h3 {
  font-size:19px; font-weight:700; color:var(--white);
  margin-bottom:10px; letter-spacing:-.3px;
}
.cross-card p {
  font-size:15px; color:rgba(255,255,255,.62); line-height:1.72;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-shell {
  position:relative; overflow:hidden;
  background:url('../images/656.jpg') center center / cover no-repeat;
}
.cta-shell::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(110deg,rgba(13,21,60,.92) 0%,rgba(21,38,100,.86) 45%,rgba(23,136,199,.70) 100%);
  pointer-events:none;
}
.cta-inner {
  position:relative; z-index:1;
  max-width:1360px; margin:0 auto;
  padding:88px 60px;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.cta-copy h2 { color:var(--white); max-width:520px; }
.cta-copy p {
  margin-top:12px; font-size:18px;
  color:rgba(255,255,255,.72); line-height:1.72; max-width:460px;
}
.cta-btns { display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap; }
.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--navy);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700;
  padding:14px 28px; border-radius:999px;
  transition:opacity .15s; white-space:nowrap;
}
.btn-white:hover { opacity:.88; }
.btn-ghost-cta {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.22);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  padding:13px 26px; border-radius:999px;
  transition:border-color .15s, color .15s; white-space:nowrap;
}
.btn-ghost-cta:hover { border-color:rgba(255,255,255,.5); color:var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background:#001327; border-top:1px solid rgba(255,255,255,.06); }
.footer-inner {
  max-width:1360px; margin:0 auto;
  padding:64px 60px 48px;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:0 48px; align-items:start;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand img { height:48px; width:auto; border-radius:6px; margin-bottom:18px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.46); line-height:1.75; max-width:280px; }
.footer-social-label {
  font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.36); margin-top:28px; margin-bottom:14px;
}
.footer-socials { display:flex; gap:10px; }
.footer-social-btn {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, border-color .15s;
}
.footer-social-btn:hover { background:var(--sky); border-color:var(--sky); }
.footer-social-btn svg { width:16px; height:16px; fill:rgba(255,255,255,.7); }
.footer-social-btn:hover svg { fill:var(--white); }
.footer-col h4 { font-size:13px; font-weight:700; color:var(--white); margin-bottom:20px; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col li { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.footer-col li::before { content:''; width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.2); flex-shrink:0; }
.footer-col a { font-size:14px; color:rgba(255,255,255,.52); transition:color .15s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom {
  max-width:1360px; margin:0 auto; padding:20px 60px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.28); }
.footer-back-top {
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s; cursor:pointer;
}
.footer-back-top:hover { background:var(--sky); border-color:var(--sky); }
.footer-back-top svg { width:16px; height:16px; stroke:rgba(255,255,255,.7); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { font-size:13px; color:rgba(255,255,255,.36); transition:color .15s; }
.footer-bottom-links a:hover { color:var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1100px) {
  .industries-grid { grid-template-columns:1fr; }
  .cross-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:860px) {
  .nav { padding:0 24px; top:0; }
  .nav-links { display:none; }
  .burger { display:flex; }
  .mob-nav { top:68px; }
  .page-hero { padding:100px 0 60px; min-height:auto; }
  .page-hero-container,
  .intro-wrap,
  .industries-wrap,
  .cross-inner,
  .cta-inner { padding-left:24px; padding-right:24px; }
  .industries-grid { grid-template-columns:1fr; }
  .cross-grid { grid-template-columns:1fr; }
  .industry-card { padding:28px 24px; }
  .cross-card { padding:28px 24px; }
  .intro-stats { gap:16px; }
  .intro-stat { min-width:130px; padding:22px 24px; }
  .cta-inner { padding-top:60px; padding-bottom:60px; flex-direction:column; align-items:flex-start; }
  .footer-inner { grid-template-columns:1fr; gap:32px; padding:44px 24px 28px; }
  .footer-bottom { padding:16px 24px; }
  .footer-bottom-links { display:none; }
}
@media(max-width:540px) {
  .intro-stats { flex-direction:column; align-items:center; }
  .intro-stat { width:100%; max-width:280px; }
}
body { font-size:1rem; }
p { font-size:1rem; }
