/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0B1E35;
  --navy-mid:  #142A47;
  --blue:      #0078D4;
  --blue-dark: #005A9E;
  --blue-pale: #E8F3FC;
  --fg:        #0B1E35;
  --fg-2:      #4A5568;
  --fg-3:      #718096;
  --bg:        #FFFFFF;
  --bg-2:      #F7F9FC;
  --bg-3:      #EEF2F7;
  --border:    #D9E2EC;
  --red:       #D32F2F;
  --green:     #1B7A4A;
  --radius:    4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline  { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white    { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-2); }

/* ─── NAV ─── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-2);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--navy); background: var(--bg-2); }
.nav-link.active { color: var(--blue); }

.nav-caret {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s;
}
.nav-item:hover > .nav-link .nav-caret { transform: rotate(180deg); }

/* ─── MEGA DROPDOWN ─── */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(11,30,53,0.12);
  padding: 28px;
  z-index: 300;
  min-width: 700px;
}

.nav-item:hover .nav-dropdown { display: block; }

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dropdown-grid-2 { grid-template-columns: repeat(2, 200px); }

.dropdown-col h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.dropdown-col ul { display: flex; flex-direction: column; gap: 2px; }
.dropdown-col a {
  display: block;
  padding: 6px 8px;
  font-size: 13px;
  color: var(--fg-2);
  border-radius: var(--radius);
  transition: color 0.12s, background 0.12s;
}
.dropdown-col a:hover { color: var(--blue); background: var(--blue-pale); }

/* small dropdown */
.nav-dropdown-sm {
  min-width: 220px;
  padding: 12px;
}
.nav-dropdown-sm ul { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-sm a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--fg-2);
  border-radius: var(--radius);
  transition: color 0.12s, background 0.12s;
}
.nav-dropdown-sm a:hover { color: var(--blue); background: var(--blue-pale); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; font-weight: 500; color: var(--fg-2); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,30,53,0.97) 45%, rgba(11,30,53,0.6) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero-vendor {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.page-hero-vendor img {
  height: 22px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.8;
}
.page-hero-vendor span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.content-image-section { overflow: hidden; }
.content-image-grid { display: grid; grid-template-columns: 1fr 1fr; }
.content-image-text {
  padding: 72px; display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-2);
}
.content-image-text h2 { font-size: 32px; letter-spacing: -0.02em; margin: 12px 0 16px; }
.content-image-text p  { color: var(--fg-2); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.content-image-photo {
  position: relative; min-height: 420px; overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
}
.content-image-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.content-image-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,120,212,0.1), transparent 60%);
}
@media (max-width: 860px) {
  .content-image-grid { grid-template-columns: 1fr; }
  .content-image-photo { min-height: 280px; }
  .content-image-text { padding: 40px 28px; }
}
.page-hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--blue);
}
.page-hero h1 { font-size: 42px; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.page-hero-actions { margin-top: 32px; display: flex; gap: 12px; }

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-3);
}
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ─── GENERIC CONTENT SECTIONS ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-center { align-items: center; }

.section-header { max-width: 600px; margin-bottom: 52px; }
.section-header h2 { font-size: 36px; letter-spacing: -0.02em; margin-top: 12px; margin-bottom: 14px; }
.section-header p  { color: var(--fg-2); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:first-child { padding-top: 0; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feature-item p  { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* Service cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(0,120,212,0.08); }
.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.card p  { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
}
.card-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.15s; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ─── ASIDE PANEL (right column) ─── */
.aside-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.aside-panel h4 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.aside-list { display: flex; flex-direction: column; gap: 0; }
.aside-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.aside-list li:last-child { border-bottom: none; }
.aside-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Stats strip */
.stats-strip { background: var(--navy); padding: 56px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-block { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.stat-block:first-child { padding-left: 0; text-align: left; }
.stat-block:last-child  { border-right: none; }
.stat-num  { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--blue); padding: 72px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2  { font-size: 32px; color: #fff; letter-spacing: -0.02em; max-width: 520px; }
.cta-band p   { color: rgba(255,255,255,0.72); margin-top: 8px; }
.cta-actions  { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── PARTNERS STRIP ─── */
.partners-strip { border-bottom: 1px solid var(--border); padding: 28px 0; background: var(--bg-2); }
.partners-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.partners-label { font-size: 12px; font-weight: 500; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; padding-right: 16px; border-right: 1px solid var(--border); }
.partner-logos  { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.partner-name   { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--fg-3); transition: color 0.15s; }
.partner-name:hover { color: var(--fg); }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; display: block; }
.footer-logo span { color: var(--blue); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-contact a:hover { color: #fff; }
.footer-col h5 { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a  { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 3px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .nav-links { gap: 0; }
  .nav-link  { padding: 8px 10px; font-size: 13px; }
}
@media (max-width: 860px) {
  .two-col   { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-row  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner  { flex-direction: column; align-items: flex-start; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .section    { padding: 56px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  #site-nav .nav-links { display: none; }
}
