@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --navy:       #0d2d4e;
  --navy-dark:  #08203a;
  --teal:       #1a6b8a;
  --teal-light: #2191b5;
  --accent:     #2bb5d8;
  --white:      #ffffff;
  --off-white:  #f4f7fa;
  --gray-100:   #eef1f5;
  --gray-300:   #c0c9d4;
  --gray-500:   #6b7d8f;
  --gray-700:   #374a5a;
  --font:       'Inter', sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }

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

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(13,45,78,.07);
}
/* Change 'gap: 40px' to 'justify-content: space-between' */
.nav-inner {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px;
  height: 72px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; /* This pushes them to the ends */
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { display: flex; gap: 4px; align-items: flex-end; height: 36px; }
.logo-mark span {
  width: 9px; border-radius: 3px; background: var(--navy);
  display: block;
}
.logo-mark span:nth-child(1) { height: 36px; }
.logo-mark span:nth-child(2) { height: 26px; background: var(--teal-light); }
.logo-mark span:nth-child(3) { height: 16px; background: var(--accent); }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  padding: 8px 14px; font-size: 14.5px; font-weight: 500;
  color: var(--gray-700); border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-primary {
  padding: 10px 22px; font-size: 14.5px; font-weight: 600;
  color: var(--white); background: var(--navy);
  border: none; border-radius: 6px; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; }
.mobile-menu.open { display: block; }
.mobile-overlay { position: absolute; inset: 0; background: rgba(8,32,58,.55); backdrop-filter: blur(4px); }
.mobile-panel {
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--white); padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-close {
  align-self: flex-end; background: none; border: none;
  cursor: pointer; padding: 8px; margin-bottom: 8px;
}
.mobile-close svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.mobile-panel a {
  display: block; padding: 13px 16px;
  font-size: 15.5px; font-weight: 500; color: var(--navy);
  border-radius: 8px; transition: background .2s;
}
.mobile-panel a:hover { background: var(--gray-100); }
.mobile-panel .btn-primary { 
  display: block; 
  text-align: center; 
  width: 100%; 
  margin-top: 8px;
  color: var(--white) !important;
  padding: 12px 16px;
  font-weight: 600;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
  position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,181,216,.12) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content h1 {
  font-size: clamp(36px, 5vw, 54px); font-weight: 800;
  color: var(--white); line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,.82); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  padding: 14px 28px; font-size: 15.5px; font-weight: 700;
  color: var(--navy); background: var(--white); border: none; border-radius: 8px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn-hero-secondary {
  padding: 14px 28px; font-size: 15.5px; font-weight: 600;
  color: var(--white); background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.4); border-radius: 8px; cursor: pointer;
  transition: background .2s, border-color .2s; backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }

.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 32px; backdrop-filter: blur(12px);
  width: 100%; max-width: 380px;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat {
  text-align: center; padding: 20px 12px;
  background: rgba(255,255,255,.06); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 500; line-height: 1.3; }

/* ─── SHARED SECTION ─────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); letter-spacing: -.8px; line-height: 1.2; }
.section-subtitle { font-size: 17px; color: var(--gray-500); max-width: 600px; margin-top: 14px; line-height: 1.7; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services { padding: 90px 0; background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 14px auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--navy); border-radius: 14px; padding: 44px 36px;
  cursor: pointer; position: relative; overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s, box-shadow .25s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,45,78,.25); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; position: relative; z-index: 1; }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 13.5px; font-weight: 600; color: var(--accent);
  position: relative; z-index: 1; transition: gap .2s;
}
.service-card:hover .learn-more { gap: 10px; }
.learn-more svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder { text-align: center; color: white; padding: 40px; }
.about-img-placeholder svg { width: 80px; height: 80px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1; margin: 0 auto 16px; display: block; }
.about-img-placeholder p { font-size: 15px; color: rgba(255,255,255,.7); }
.about-visual { position: relative; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(13,45,78,.15);
  display: flex; align-items: center; gap: 14px; min-width: 200px;
}
.badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.badge-text strong { display: block; font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 3px; }
.badge-text span { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.about-content p { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 36px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); font-weight: 500; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ─── STATS ──────────────────────────────────────────────── */
.stats-bar { background: linear-gradient(90deg, var(--navy-dark), var(--teal)); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.68); font-weight: 500; line-height: 1.4; }

/* ─── WHO WE SERVE ───────────────────────────────────────── */
.who-serve { padding: 100px 0; background: var(--off-white); }
.who-serve-header { text-align: center; margin-bottom: 56px; }
.who-serve-header .section-subtitle { margin: 14px auto 0; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  background: var(--white); border-radius: 14px; padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,45,78,.1); border-color: var(--gray-300); }
.audience-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .2s;
}
.audience-card:hover .audience-icon { background: linear-gradient(135deg, var(--teal), var(--accent)); }
.audience-icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.audience-card:hover .audience-icon svg { stroke: white; }
.audience-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.audience-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner { padding: 90px 0; background: var(--white); }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 20px; padding: 70px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box h2 { font-size: clamp(28px,4vw,40px); font-weight: 800; color: var(--white); letter-spacing: -.8px; margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-cta-white { padding: 14px 30px; font-size: 15.5px; font-weight: 700; color: var(--navy); background: var(--white); border: none; border-radius: 8px; cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn-cta-outline { padding: 14px 30px; font-size: 15.5px; font-weight: 600; color: var(--white); background: transparent; border: 2px solid rgba(255,255,255,.5); border-radius: 8px; cursor: pointer; transition: background .2s, border-color .2s; }
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.55); margin: 16px 0 24px; }
.footer .logo-mark span:nth-child(1) { background: white; }
.footer .logo-mark span:nth-child(2) { background: rgba(255,255,255,.6); }
.footer .logo-mark span:nth-child(3) { background: var(--accent); }
.footer .logo-text { color: white; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; }
.social-link:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.62); transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ─── responsive rules moved to end of file (after all components) ── */

/* ─── NAV ACTIVE ─────────────────────────────────────────── */
.nav-active { color: var(--navy) !important; font-weight: 600 !important; background: var(--gray-100) !important; border-radius: 6px; }

/* ─── HERO IMAGE ─────────────────────────────────────────── */
.hero-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  aspect-ratio: 4/3; max-width: 480px; width: 100%;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── SERVICE CARDS WITH BG IMAGE ───────────────────────── */
.service-card { background-size: cover; background-position: center; }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,22,45,0.97) 0%, rgba(5,22,45,0.88) 55%, rgba(5,22,45,0.78) 100%);
  transition: opacity 0.3s;
}
.service-card:hover .service-card-overlay { opacity: 1; }

/* ─── PHOTO BREAK ────────────────────────────────────────── */
.photo-break { padding: 100px 0; background: var(--off-white); }
.photo-break-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.photo-break-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 16px 48px rgba(13,45,78,0.15); }
.photo-break-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-break-content .section-title { margin-bottom: 20px; }
.photo-break-content p { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }

/* ─── AUDIENCE CARDS WITH IMAGES ────────────────────────── */
.audience-card { padding: 0; overflow: hidden; }
.audience-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.audience-body { padding: 28px; }
.audience-body .audience-icon { margin-bottom: 14px; }
.audience-body h3 { margin-bottom: 10px; }
.card-link { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--teal-light); transition: color 0.2s; }
.card-link:hover { color: var(--navy); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
  position: relative; overflow: hidden; padding: 80px 0; min-height: 400px; display: flex; align-items: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.page-hero-content h1 { font-size: clamp(32px, 4.5vw, 50px); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -1.2px; margin: 12px 0 20px; }
.page-hero-content h1 span { color: var(--accent); }
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 460px; }
.page-hero-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── SERVE SECTIONS ─────────────────────────────────────── */
.serve-section { padding: 100px 0; background: var(--white); }
.serve-section.bg-off-white { background: var(--off-white); }
.serve-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.serve-inner.serve-reverse .serve-img { order: -1; }
.serve-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 16px 48px rgba(13,45,78,0.12); }
.serve-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.serve-content .section-title { margin-bottom: 16px; }
.serve-content p { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; }
.serve-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 36px; }
.serve-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); font-weight: 500; }

/* ─── CAREER HERO ────────────────────────────────────────── */
.career-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
  position: relative; overflow: hidden; padding: 80px 0; min-height: 420px; display: flex; align-items: center;
}
.career-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.career-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.career-hero-content h1 { font-size: clamp(32px,4.5vw,50px); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -1.2px; margin: 12px 0 20px; }
.career-hero-content h1 span { color: var(--accent); }
.career-hero-content p { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 28px; }
.career-hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 8px 16px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.career-hero-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.career-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── WHY WORK HERE ──────────────────────────────────────── */
.why-work { padding: 90px 0; background: var(--off-white); }
.why-work-header { text-align: center; margin-bottom: 56px; }
.why-work-header .section-subtitle { margin: 14px auto 0; }
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.perk-card { background: var(--white); border-radius: 14px; padding: 32px 28px; border: 1px solid var(--gray-100); transition: transform .25s, box-shadow .25s; }
.perk-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,45,78,0.1); }
.perk-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background .2s; }
.perk-card:hover .perk-icon { background: linear-gradient(135deg, var(--teal), var(--accent)); }
.perk-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.perk-card:hover .perk-icon svg { stroke: white; }
.perk-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.perk-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; }
.perk-card strong { color: var(--navy); font-weight: 700; }

/* ─── JOBS SECTION ───────────────────────────────────────── */
.jobs-section { padding: 90px 0; background: var(--white); }
.jobs-header { text-align: center; margin-bottom: 40px; }
.jobs-header .section-subtitle { margin: 14px auto 0; }
.jobs-header strong { color: var(--navy); }

.jobs-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; font-size: 14px; font-weight: 600; border-radius: 999px; border: 2px solid var(--gray-300); background: none; color: var(--gray-700); cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.job-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px; padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,45,78,0.12); border-color: var(--gray-300); }
.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.job-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.job-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.job-type { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.job-type.fulltime { background: #e8f5e9; color: #2e7d32; }
.job-type.parttime { background: #fff3e0; color: #e65100; }
.job-type.remote { background: #e3f2fd; color: #1565c0; }
.job-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.job-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.job-meta span { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--gray-500); font-weight: 500; }
.job-meta svg { width: 14px; height: 14px; stroke: var(--teal-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.job-card > p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.job-details { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; flex: 1; }
.job-details li { font-size: 13.5px; color: var(--gray-700); padding-left: 16px; position: relative; }
.job-details li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.btn-apply { width: 100%; padding: 11px 20px; font-size: 14.5px; font-weight: 600; color: var(--white); background: var(--navy); border: none; border-radius: 8px; cursor: pointer; transition: background .2s, transform .15s; margin-top: auto; }
.btn-apply:hover { background: var(--teal); transform: translateY(-1px); }

/* ─── APPLY MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,32,58,.6); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 18px; width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px 0; margin-bottom: 24px; }
.modal-header h2 { font-size: 20px; font-weight: 800; color: var(--navy); }
.modal-close { background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; transition: background .2s; }
.modal-close:hover { background: var(--gray-100); }
.modal-close svg { width: 22px; height: 22px; stroke: var(--gray-700); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.apply-form { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--gray-300); border-radius: 8px;
  font-size: 14.5px; font-family: var(--font); color: var(--gray-700);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(33,145,181,0.12);
}
.checkbox-group { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-500); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--teal); width: 16px; height: 16px; }
.checkbox-label a { color: var(--teal-light); text-decoration: underline; }
.btn-submit { padding: 14px; font-size: 15.5px; font-weight: 700; color: var(--white); background: var(--navy); border: none; border-radius: 8px; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--teal); }
.form-success { padding: 32px; text-align: center; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--accent)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ─── ABOUT PHOTO ────────────────────────────────────────── */
.about-photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; aspect-ratio: 4/3; }
.about-visual { position: relative; }

/* responsive handled in main block above */

/* ─── LEADERSHIP ──────────────────────────────────────────── */
.leadership-section { padding: 90px 0; background: var(--off-white); }
.leadership-header { text-align: center; margin-bottom: 56px; }
.leadership-header .section-subtitle { margin: 14px auto 0; }
.leaders-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.leader-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-100); transition: transform .25s, box-shadow .25s; }
.leader-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,45,78,.1); }
.leader-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.leader-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.leader-card:hover .leader-img img { transform: scale(1.04); }
.leader-info { padding: 20px; }
.leader-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.leader-title { font-size: 12.5px; font-weight: 600; color: var(--teal-light); text-transform: uppercase; letter-spacing: .8px; display: block; margin-bottom: 10px; }
.leader-info p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section { padding: 90px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-content .section-title { margin-bottom: 16px; }
.contact-content p { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item span { font-size: 14.5px; color: var(--gray-500); }
.contact-form { background: var(--off-white); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 18px; }

/* ─── FEATURED NEWS ──────────────────────────────────────── */
.featured-news { padding: 80px 0 40px; background: var(--white); }
.featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.featured-img { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; position: relative; box-shadow: 0 16px 48px rgba(13,45,78,.12); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-badge { position: absolute; top: 16px; left: 16px; background: var(--navy); color: white; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .5px; }
.featured-content h2 { font-size: clamp(20px,2.5vw,28px); font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.3; margin: 8px 0 16px; }
.featured-content p { font-size: 15.5px; color: var(--gray-500); line-height: 1.7; }
.news-date { font-size: 13px; color: var(--gray-500); font-weight: 500; }

/* ─── NEWS GRID ──────────────────────────────────────────── */
.news-section { padding: 40px 0 80px; background: var(--white); }
.news-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.news-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,45,78,.1); }
.news-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 24px; }
.news-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; margin-bottom: 10px; letter-spacing: .5px; text-transform: uppercase; }
.news-tag.press { background: #e3f2fd; color: #1565c0; }
.news-tag.awards { background: #fff8e1; color: #f57f17; }
.news-tag.partnerships { background: #e8f5e9; color: #2e7d32; }
.news-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 8px 0 10px; }
.news-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.media-inquiry { padding: 40px 0 80px; background: var(--white); }

/* ─── SUCCESS STATE ──────────────────────────────────────── */
.hr-email-box {
  background: var(--gray-100); border-radius: 10px;
  padding: 16px 24px; margin: 12px 0 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hr-email-box svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hr-email-box a { font-size: 16px; font-weight: 700; color: var(--teal); text-decoration: underline; word-break: break-all; }
.success-docs { text-align: left; background: var(--off-white); border-radius: 10px; padding: 18px 22px; margin: 0 0 20px; }
.success-docs li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--gray-700); font-weight: 500; padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.success-docs li:last-child { border-bottom: none; }
.doc-num { width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.success-note { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* responsive handled in main block above */

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — must stay at END of file to override components
   ═══════════════════════════════════════════════════════════ */

/* ── Laptop / small desktop ── */
@media (max-width: 1100px) {
  .section-inner { padding: 0 28px; }
  .nav-inner { padding: 0 20px; gap: 20px; }
}

/* ── Tablet landscape ── */
@media (max-width: 900px) {
  /* Nav — hide Contact Us from top bar; it's in the mobile panel */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-card { display: none; }
  .hero-img-wrap { display: none; }
  .hero-btns { justify-content: center; }
  .hero-badge { justify-content: center; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-left: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-box { padding: 48px 32px; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .career-hero-inner { grid-template-columns: 1fr; }
  .career-hero-img { display: none; }

  .serve-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .serve-inner.serve-reverse .serve-img { order: -1; }

  /* photo-break: stack image above text */
  .photo-break-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .photo-break-img { max-width: 100%; aspect-ratio: 16/9; }

  .perks-grid { grid-template-columns: 1fr 1fr; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .leaders-grid { grid-template-columns: 1fr 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

/* ── iPad portrait / tablet ── */
@media (max-width: 768px) {
  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 0 18px; height: 64px; gap: 14px; }

  .section-title { font-size: clamp(22px, 5.5vw, 32px); }
  .hero { padding: 72px 0 56px; }
  .hero-content h1 { font-size: clamp(28px, 7vw, 42px); }

  .page-hero { padding: 56px 0; min-height: 280px; }
  .page-hero-content h1 { font-size: clamp(24px, 6vw, 38px); }

  .serve-section { padding: 60px 0; }
  .serve-content h2 { font-size: clamp(20px, 5vw, 30px); }
  .photo-break { padding: 70px 0; }

  .stats-bar { padding: 32px 0; }
  .stat-num { font-size: 38px; }

  .modal-inner { max-width: 96vw; padding: 32px 24px; max-height: 92vh; }
  .leadership-section, .contact-section { padding: 70px 0; }
  .contact-form { padding: 28px 22px; }
  /* news grid drops to 1 col at tablet portrait */
  .news-grid { grid-template-columns: 1fr; }
}

/* ── Large phone ── */
@media (max-width: 600px) {
  .section-inner { padding: 0 16px; }
  .logo-text { font-size: 19px; }

  .hero { padding: 60px 0 48px; }
  .hero-content h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { justify-content: center; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }

  .cta-box { padding: 36px 20px; }
  .cta-btns { flex-direction: column; gap: 10px; align-items: stretch; }
  .btn-cta-white, .btn-cta-outline { width: 100%; text-align: center; justify-content: center; }

  .serve-section { padding: 52px 0; }
  .page-hero { padding: 48px 0; min-height: 230px; }

  .photo-break { padding: 48px 0; }
  .photo-break-inner { gap: 24px !important; }
  .photo-break-img { aspect-ratio: 16/9; }
  .photo-break-content .section-title { font-size: 22px; }
  .photo-break-content p { font-size: 15px; }

  .career-hero-badges { flex-direction: column; gap: 8px; }
  .perks-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .modal-inner { padding: 28px 18px; }
  .leaders-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 16px; }
  .contact-inner { gap: 36px; }
}

/* ── Small phone ── */
@media (max-width: 420px) {
  .nav-inner { padding: 0 14px; gap: 10px; height: 60px; }
  .logo-text { font-size: 17px; }
  .logo-mark { height: 28px; }
  .logo-mark span:nth-child(1) { height: 28px; }
  .logo-mark span:nth-child(2) { height: 20px; }
  .logo-mark span:nth-child(3) { height: 13px; }

  .hero { padding: 50px 0 40px; }
  .hero-content h1 { font-size: 25px; }
  .section-title { font-size: 21px; }
  .section-subtitle { font-size: 14px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; padding-bottom: 18px !important; margin-bottom: 4px; }
  .stat-item:last-child { border-bottom: none !important; }
  .stat-num { font-size: 34px; }

  .cta-box h2 { font-size: 21px; }
  .cta-box p { font-size: 14px; }
  .leaders-grid { grid-template-columns: 1fr; }
  .serve-list li { font-size: 14px; }
  .modal-inner { padding: 20px 14px; }
  .modal-inner h2 { font-size: 18px; }
  .contact-form { padding: 18px 12px; }
  .footer-bottom-links a { font-size: 12px; }
  .footer-bottom-links { gap: 10px; }
}
