:root {
  --navy: #143a56;
  --navy-2: #1d4f6f;
  --teal: #27b7b7;
  --teal-soft: #eaf8f8;
  --sky: #eef6fa;
  --text: #17384d;
  --muted: #5f7b8b;
  --line: #dbe8ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 53, 82, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbfd 0%, #f2f8fb 100%);
}
a { color: inherit; text-decoration: none; }
.faq-answer a,
.faq-answer a:visited,
.faq-answer a:hover,
.faq-answer a:active {
  color: #1f6feb !important;
  text-decoration: underline !important;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 232, 239, 0.95);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15,53,82,0.12));
}
.logo-full {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-main { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 0.2px; }
.brand-main span { color: var(--teal); }
.brand-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #416377;
  align-items: center;
}
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid #d3e2ea;
  border-radius: 14px;
  background: white;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20,58,86,0.08);
  flex: 0 0 auto;
}
.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-cta {
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: white !important;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20,58,86,0.18);
  background: #1b4c6b;
}
.hero {
  padding: 96px 24px 72px;
  background: radial-gradient(circle at top right, rgba(39,183,183,0.10), transparent 30%), linear-gradient(135deg, #fbfeff 0%, #eef7fa 55%, #e2f2f4 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39,183,183,0.10);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1 {
  font-size: 60px;
  line-height: 1.02;
  margin: 0 0 18px;
  color: #12344b;
  max-width: 760px;
  letter-spacing: -0.03em;
}
.hero p, .page-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #466677;
  max-width: 760px;
  margin: 0;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 28px rgba(20,58,86,0.18);
}
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid #cddde6;
}
.hero-card, .tile, .card, .step, .faq-item, .content-card, .stat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 30px; }
.hero-card h3, .content-card h3 { margin-top: 0; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.hero-card p, .content-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }
.hero-points { display: grid; gap: 12px; }
.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: #f8fbfd;
  border: 1px solid #e4eef3;
}
.point-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 4px;
  flex: 0 0 12px;
}
.point strong { display: block; margin-bottom: 3px; font-size: 14px; color: var(--navy); }
.point span { font-size: 13px; color: var(--muted); line-height: 1.55; }
.section, .page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 78px 24px;
}
.section h2, .page-section h2 {
  font-size: 38px;
  margin: 0 0 14px;
  color: #12354d;
}
.lead {
  font-size: 17px;
  color: #537284;
  max-width: 800px;
  line-height: 1.75;
  margin: 0;
}
.trust-grid, .card-grid, .area-grid, .team-grid, .two-grid, .stats-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.trust-grid, .stats-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid, .two-grid { grid-template-columns: repeat(2, 1fr); }
.area-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }
.tile, .card, .content-card, .stat-card { padding: 28px; }
.stats-section { padding-top: 26px; }
.stat-card {
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.stat-value {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-label {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.tile h4, .card h3, .content-card h4 {
  margin: 0 0 10px;
  color: #143a56;
  font-size: 19px;
}
.tile p, .card p, .content-card li, .content-card p {
  color: #5d7b8c;
  line-height: 1.7;
  font-size: 14px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid #dce8ee;
  background: #f4f8fa;
}
.office-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid #dce8ee;
  background: #f4f8fa;
}
.team-role {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(39,183,183,0.10);
}
.soft {
  background: linear-gradient(180deg, #eef8fa 0%, #f8fcfd 100%);
  border-top: 1px solid #e3eef2;
  border-bottom: 1px solid #e3eef2;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.step { padding: 24px; }
.num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #159aa1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 10px 18px rgba(39,183,183,0.22);
}
.step h4 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq { margin-top: 24px; display: grid; gap: 14px; }
.faq-item { padding: 20px 22px; font-weight: 700; color: #17374c; }
.accordion-faq .faq-item {
  padding: 0;
  overflow: hidden;
}
.accordion-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #17374c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-faq summary::-webkit-details-marker {
  display: none;
}
.accordion-faq summary::after {
  content: '+';
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
}
.accordion-faq details[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 18px 18px;
}
.faq-answer p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1b5272 100%);
  color: white;
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 22px 55px rgba(16, 58, 86, 0.18);
}
.cta-band h2 { color: white; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.86); font-size: 16px; line-height: 1.8; max-width: 760px; }
.page-hero {
  padding: 72px 24px 34px;
  background: linear-gradient(135deg, #fbfeff 0%, #eef7fa 55%, #e2f2f4 100%);
  border-bottom: 1px solid #e3eef2;
}
.page-hero.image-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 70px;
  background: linear-gradient(rgba(20,58,86,0.68), rgba(20,58,86,0.62)), url('assets/slider-contact.jpg') center/cover no-repeat;
  border-bottom: none;
}
.page-hero.image-hero h1,
.page-hero.image-hero p,
.page-hero.image-hero .eyebrow {
  color: white;
}
.page-hero.image-hero .eyebrow {
  background: rgba(255,255,255,0.12);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: 48px; max-width: 760px; }
.content-card ul { margin: 0; padding-left: 18px; }
.form-preview {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  border: 1px solid #dce8ee;
  border-radius: 12px;
  padding: 13px 14px;
  background: #f9fcfd;
  color: #6a8392;
  font-size: 14px;
  width: 100%;
}
input.field,
select.field,
textarea.field {
  appearance: none;
  font-family: inherit;
  color: var(--text);
}
textarea.field {
  min-height: 140px;
  resize: vertical;
}
.field.full { grid-column: 1 / -1; }
.intake-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.intake-selector .btn {
  padding: 18px 24px;
  font-size: 16px;
  min-height: 64px;
}
.intake-selector .btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.intake-form-card {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.intake-form-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex: 0 0 auto;
}
.checkbox-label {
  font-size: 10px !important;
  line-height: 1.4;
  color: var(--muted);
}
.checkbox-label,
.checkbox-label * {
  font-size: 10px !important;
}
.intake-options {
  grid-template-columns: repeat(3, 1fr);
}
.intake-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.intake-form-grid {
  display: grid;
  gap: 22px;
}
.intake-form-card {
  scroll-margin-top: 110px;
}
footer {
  background: linear-gradient(135deg, #10324a 0%, #143a56 100%);
  color: rgba(255,255,255,0.82);
  padding: 44px 24px;
  margin-top: 70px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.7;
}
.footer-brand { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
@media (max-width: 960px) {
  .form-row { grid-template-columns: 1fr; }
  .intake-selector { flex-direction: column; }
  .hero-inner,
  .trust-grid,
  .card-grid,
  .area-grid,
  .team-grid,
  .steps,
  .two-grid,
  .stats-grid,
  .intake-options,
  .intake-form-grid {
    grid-template-columns: 1fr;
  }
  h1, .page-hero h1 { font-size: 36px; }
  .page-hero {
    padding: 56px 20px 24px;
  }
  .page-hero.image-hero {
    padding: 84px 20px 52px;
  }
  .hero {
    padding: 64px 20px 48px;
  }
  .hero-inner {
    gap: 28px;
  }
  .section,
  .page-section {
    padding: 56px 20px;
  }
  .section h2,
  .page-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .tile,
  .card,
  .content-card,
  .stat-card,
  .step {
    padding: 22px;
  }
  .cta-row {
    gap: 10px;
    margin-top: 22px;
  }
  .btn {
    padding: 12px 18px;
  }
  .trust-grid,
  .card-grid,
  .area-grid,
  .team-grid,
  .two-grid,
  .stats-grid,
  .steps,
  .intake-options,
  .intake-form-grid {
    gap: 16px;
    margin-top: 22px;
  }
  .cta-band {
    padding: 32px 22px;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    width: 39px;
    height: 39px;
  }
  .nav-inner {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .nav-left,
  .nav-right {
    position: relative;
    z-index: 2;
  }
  .nav-left {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .brand-wrap {
    min-width: 0;
  }
  .logo-full {
    height: 48px;
    max-width: 100%;
  }
  .nav-right {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 6px;
    align-items: flex-start;
  }
  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.28s ease, padding-top 0.28s ease;
    order: 3;
    flex-basis: 100%;
    margin: 0 auto;
  }
  .nav-links.is-open {
    max-height: 520px;
    opacity: 1;
    padding-top: 14px;
    pointer-events: auto;
    transform: translateY(0);
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }
  .nav-links a {
    display: block;
    width: 320px;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 12px 14px;
    border: 1px solid #dce8ee;
    border-radius: 12px;
    background: #f8fbfd;
    text-align: center !important;
    color: var(--navy) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .nav-links a:empty {
    display: none;
  }
  .nav-links a.nav-cta {
    display: block !important;
    background: var(--navy);
    color: white !important;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(20,58,86,0.18);
  }
  .nav-right .nav-cta {
    display: none !important;
  }
  .hero { padding-top: 56px; }
}

@media (min-width: 961px) {
  .nav-links {
    display: flex !important;
  }
  .nav-right > .nav-cta {
    display: inline-block;
    padding: 11px 16px;
    font-size: 14px;
    border-radius: 12px;
  }
}
