:root {
  --navy: #112942;
  --teal: #176C5F;
  --cyan: #30A7B7;
  --paper: #FFFFFF;
  --tint: #F4F7F6;
  --text: #334155;
  --text-light: #64748B;
  --display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: Menlo, Monaco, Consolas, monospace;
}

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

body {
  font-family: var(--body);
  color: var(--text);
  background-color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }

p { margin-bottom: 16px; }
.lead { font-size: 1.25rem; color: var(--text-light); }
.eyebrow { 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  color: var(--teal); 
  font-weight: 700; 
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header & Topbar */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 0.85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.topbar a { color: #C7D6E4; text-decoration: none; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-mark img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav-links a.active { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-phone { font-weight: 700; color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #115349; }
.btn-cyan { background: var(--cyan); color: #fff; }
.btn-cyan:hover { background: #248E9C; }
.btn-outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }

/* Layout Blocks */
section { padding: 80px 0; position: relative; }
section.tight { padding: 48px 0; }
.bg-paper { background: var(--paper); }
.bg-tint { background: var(--tint); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2 { color: #fff; }

.page-header {
  background: linear-gradient(135deg, #112942 0%, #1A426A 100%);
  color: #fff;
  padding: 100px 0 80px;
  overflow: hidden;
}
.page-header h1 { color: #fff; }
.page-header p { color: #9FB6CB; max-width: 65ch; margin: 0; font-size: 1.15rem; }
.breadcrumb { font-size: 0.85rem; color: #9FB6CB; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a { color: #fff; text-decoration: none; }
.hero-swoosh { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.split img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.card {
  background: var(--paper);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  border: 1px solid #E2E8F0;
}

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.team-card { background: var(--paper); border-radius: 8px; overflow: hidden; border: 1px solid #E2E8F0; }
.team-card .photo { background: #E2E8F0; height: 240px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.9rem; }
.team-card .info { padding: 20px; }
.team-card h4 { margin-bottom: 4px; font-size: 1.1rem; }
.team-card .role { font-size: 0.85rem; color: var(--teal); font-weight: 600; }

/* Stat Strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid #E2E8F0;
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1.1; margin-bottom: 8px; }
.stat-item .label { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }

/* CTA Band */
.cta-band {
  background: var(--teal);
  padding: 48px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; max-width: 60ch; }

/* Contact Grid & Form */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.field { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.field.full { width: 100%; }
label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
input, select,延 textarea {
  padding: 12px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 1rem;
}
textarea { height: 120px; resize: vertical; }
.info-block { display: flex; flex-direction: column; gap: 24px; }
.info-block .item { display: flex; gap: 16px; }
.info-block .ico { background: var(--tint); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--teal); }

/* Policy Section */
.policy-section { padding: 40px 0; border-bottom: 1px solid #E2E8F0; }
.policy-section:last-of-type { border-bottom: none; }
.policy-num { font-family: var(--mono); font-size: 0.85rem; color: var(--cyan); display: block; margin-bottom: 8px; font-weight: 600; }
.download-card { background: var(--tint); padding: 24px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid #E2E8F0; padding: 20px 0; }
summary { font-size: 1.15rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.25rem; color: var(--teal); }
details[open] summary::after { content: '−'; }
details p { margin-top: 12px; color: var(--text-light); }

/* Hero Page Specific overrides */
.hero { background: linear-gradient(135deg, #112942 0%, #173B60 100%); color: #fff; padding: 120px 0; overflow: hidden; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.hero h1 { color: #fff; font-size: 3.5rem; margin-bottom: 20px; }
.hero .lead { color: #9FB6CB; font-size: 1.35rem; margin-bottom: 32px; }
.hero .actions { display: flex; gap: 16px; }
.hero-badge-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
.hero-badge-list .row { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-badge-list .row:last-child { border-bottom: none; }
.hero-badge-list .stat { font-size: 2rem; font-weight: 800; color: var(--cyan); }
.hero-badge-list .stat-label { font-size: 0.85rem; color: #9FB6CB; text-transform: uppercase; letter-spacing: 0.05em; }

/* Footer */
footer { background: #0B1B2B; color: #9FB6CB; padding: 80px 0 40px; font-size: 0.9rem; border-top: 4px solid var(--teal); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 48px; margin-bottom: 60px; }
footer h5 { color: #fff; font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer a { color: #9FB6CB; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #fff; }
.brand img { height: 40px; margin-bottom: 16px; }
.brand p { font-size: 0.85rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.8rem; }

@media (max-width: 968px) {
  .split, .grid-2, .grid-3, .team-grid, .stat-strip, .contact-grid, .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .cta-band { flex-direction: column; text-align: center; align-items: center; }
  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; color: var(--navy); }
}