/* ── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { color-scheme: dark; scroll-behavior: smooth; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  background-color: #06152b;
  color: #f0f4f8;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-main { flex: 1; }

/* ── Container ──────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Typography ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: #00b4d8; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #48cae4; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn--primary { background: #00b4d8; color: #06152b; }
.btn--primary:hover { background: #48cae4; color: #06152b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,0.35); }
.btn--outline { background: transparent; color: #00b4d8; border: 2px solid #00b4d8; }
.btn--outline:hover { background: #00b4d8; color: #06152b; }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,21,43,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,180,216,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.header-top { padding: 1rem 0; }
.header-top .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }

/* ── Logo ───────────────────────────────────────────────────────────── */
.site-logo { display: flex; align-items: center; gap: 0.85rem; color: #f0f4f8; text-decoration: none; }
.site-logo:hover { color: #f0f4f8; }
.site-logo:hover .logo-mark svg { transform: scale(1.12); }
.logo-mark { flex-shrink: 0; }
.logo-mark svg { width: 48px; height: 48px; transition: transform 0.5s ease; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: 0.04em; color: #fff; }
.logo-sub { font-family: 'Exo 2', sans-serif; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #c8d8ea; }
.site-logo--footer .logo-name { font-size: 1.25rem; }

/* ── Phone ──────────────────────────────────────────────────────────── */
.phone-link { display: flex; align-items: center; gap: 0.5rem; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1.05rem; color: #00b4d8; letter-spacing: 0.03em; transition: color 0.25s ease; }
.phone-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.phone-link:hover { color: #48cae4; }

/* ── Navigation ─────────────────────────────────────────────────────── */
.site-nav { background: #0d2245; border-top: 1px solid rgba(0,180,216,0.1); }
.site-nav .container { display: flex; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 0; flex-wrap: wrap; }
.nav-menu li a {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8d8ea;
  padding: 0.9rem 1.25rem;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
}
.nav-menu li a:hover, .nav-menu li a.active { color: #00b4d8; border-bottom-color: #00b4d8; background: rgba(0,180,216,0.06); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.75rem 0; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #f0f4f8; border-radius: 2px; transition: all 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-menu { width: 100%; flex-direction: column; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .nav-menu.open { max-height: 400px; }
  .nav-menu li a { border-bottom: none; border-left: 3px solid transparent; padding: 0.85rem 1.5rem; }
  .nav-menu li a:hover, .nav-menu li a.active { border-left-color: #00b4d8; border-bottom-color: transparent; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: #0d2245; border-top: 1px solid rgba(0,180,216,0.2); padding: 3.5rem 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; padding-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-nav h3, .footer-contact h3 { font-family: 'Exo 2', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #00b4d8; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav ul a { font-family: 'Exo 2', sans-serif; font-size: 0.875rem; color: #c8d8ea; transition: color 0.25s ease; }
.footer-nav ul a:hover { color: #00b4d8; }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact address p { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #c8d8ea; margin: 0; }
.footer-contact address p svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: #00b4d8; }
.footer-contact address p a { color: #c8d8ea; }
.footer-contact address p a:hover { color: #00b4d8; }
.footer-bottom { border-top: 1px solid rgba(0,180,216,0.1); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-family: 'Exo 2', sans-serif; font-size: 0.8rem; color: #3a5575; margin: 0; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  background: linear-gradient(160deg, #0d2245 0%, #06152b 60%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow { font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: #00b4d8; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: #00b4d8; }
.hero-title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; letter-spacing: -0.01em; margin-bottom: 1.25rem; color: #fff; }
.hero-title span { color: #00b4d8; position: relative; }
.hero-title span::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: linear-gradient(90deg, #00b4d8, transparent); }
.hero-sub { font-size: 1.1rem; color: #c8d8ea; max-width: 560px; margin-bottom: 2.25rem; font-weight: 300; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Stats bar ───────────────────────────────────────────────────────── */
.stats-bar { padding: clamp(2rem, 5vw, 3.5rem) 0; background: linear-gradient(90deg, rgba(26,58,110,0.4), rgba(13,34,69,0.4)); border-bottom: 1px solid rgba(0,180,216,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item .stat-value { font-family: 'Exo 2', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #00b4d8; display: block; line-height: 1; margin-bottom: 0.35rem; }
.stat-item .stat-label { font-family: 'Exo 2', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #7fa0be; }

/* ── Services ────────────────────────────────────────────────────────── */
.services { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: #fff; margin-bottom: 0.5rem; }
.section-divider { width: 48px; height: 3px; background: linear-gradient(90deg, #00b4d8, #48cae4); margin: 0.85rem auto 0; border-radius: 2px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.service-card { background: #0d2245; border: 1px solid rgba(0,180,216,0.12); border-radius: 12px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,180,216,0.25); border-color: rgba(0,180,216,0.35); }
.card-img { position: relative; width: 100%; padding-bottom: 55%; overflow: hidden; background: #1a3a6e; }
.card-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { color: #fff; margin-bottom: 0.65rem; font-weight: 700; }
.service-card p { color: #c8d8ea; font-size: 0.95rem; flex: 1; margin-bottom: 1.25rem; }
.card-link { font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: #00b4d8; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.25s ease, color 0.25s ease; }
.card-link::after { content: '→'; }
.card-link:hover { gap: 0.7rem; color: #48cae4; }

/* ── About stripe ────────────────────────────────────────────────────── */
.about-stripe { background: #0d2245; border-top: 1px solid rgba(0,180,216,0.12); border-bottom: 1px solid rgba(0,180,216,0.12); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-content h2 { color: #fff; margin-bottom: 1rem; }
.about-content p { color: #c8d8ea; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.about-tags span { font-family: 'Exo 2', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(0,180,216,0.1); color: #00b4d8; border: 1px solid rgba(0,180,216,0.25); padding: 0.35rem 0.8rem; border-radius: 999px; }
.about-visual .signal-graphic { width: 100%; max-width: 360px; margin: 0 auto; display: block; }

/* ── CTA strip ───────────────────────────────────────────────────────── */
.cta-strip { background: linear-gradient(90deg, #1a3a6e, #0d2245); border-top: 1px solid rgba(0,180,216,0.15); border-bottom: 1px solid rgba(0,180,216,0.15); padding: clamp(2.5rem, 5vw, 4rem) 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-strip p { color: #c8d8ea; max-width: 500px; margin: 0 auto 1.75rem; }

/* ── Page Hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0d2245 0%, #06152b 70%);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,180,216,0.12);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero-sub { font-size: 1.1rem; color: #c8d8ea; max-width: 600px; font-weight: 300; }
.page-breadcrumb { font-family: 'Exo 2', sans-serif; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: #00b4d8; margin-bottom: 0.75rem; opacity: 0.8; }
.page-breadcrumb a { color: #7fa0be; }
.page-breadcrumb a:hover { color: #00b4d8; }
.page-breadcrumb span { margin: 0 0.4rem; color: #3a5575; }

/* ── Content section ─────────────────────────────────────────────────── */
.content-section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.content-text h2 { color: #fff; margin-bottom: 1.25rem; }
.content-text p { color: #c8d8ea; margin-bottom: 1rem; }
.content-text .note { font-size: 0.85rem; color: #3a5575; font-style: italic; border-left: 3px solid rgba(0,180,216,0.3); padding-left: 0.85rem; }
.content-img { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,180,216,0.12); }
.content-img img { width: 100%; display: block; object-fit: cover; }
.img-placeholder { background: #0d2245; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }

/* ── Feature list ────────────────────────────────────────────────────── */
.feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: #c8d8ea; font-size: 0.95rem; }
.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: rgba(0,180,216,0.15);
  color: #00b4d8;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}
.feature-list li strong { color: #fff; font-weight: 600; }

/* ── Highlight box ───────────────────────────────────────────────────── */
.highlight-box { background: rgba(0,180,216,0.07); border: 1px solid rgba(0,180,216,0.2); border-radius: 12px; padding: 1.75rem 2rem; margin-top: 2rem; }
.highlight-box h3 { color: #00b4d8; font-size: 1rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.highlight-box p { color: #c8d8ea; margin: 0; }

/* ── Coverage areas ──────────────────────────────────────────────────── */
.coverage-areas { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }
.area-tag { font-family: 'Exo 2', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; background: rgba(0,180,216,0.08); color: #00b4d8; border: 1px solid rgba(0,180,216,0.22); padding: 0.4rem 0.9rem; border-radius: 999px; }

/* ── Policy docs ─────────────────────────────────────────────────────── */
.policy-docs { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.doc-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; color: #c8d8ea; background: #0d2245; border: 1px solid rgba(0,180,216,0.2); padding: 0.65rem 1.25rem; border-radius: 6px; transition: all 0.25s ease; }
.doc-link svg { width: 16px; height: 16px; color: #00b4d8; }
.doc-link:hover { border-color: #00b4d8; color: #00b4d8; background: rgba(0,180,216,0.06); }
