:root {
  --navy: #102033;
  --navy-2: #183247;
  --navy-3: #0d1928;
  --ink: #172033;
  --slate: #425066;
  --muted: #66758a;
  --line: #d2dde7;
  --paper: #f4f7f8;
  --white: #ffffff;
  --teal: #08747d;
  --teal-2: #0b8c96;
  --gold: #a46a12;
  --green: #2d6a4f;
  --rose: #9f3447;
  --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
p { color: var(--slate); }
h1, h2, h3, h4 {
  color: var(--navy);
  font-family: "Outfit", "Inter", sans-serif;
  line-height: 1.13;
  font-weight: 800;
}
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.45rem; color: var(--slate); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.narrow { max-width: 900px; margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--teal);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-weight: 800;
  z-index: 9999;
}
.skip-link:focus { left: 0.75rem; }
.eyebrow {
  color: var(--teal);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 12px 24px rgba(8, 116, 125, 0.2); }
.btn-primary:hover { background: var(--teal-2); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); border-color: rgba(255, 255, 255, 0.78); }
.btn-light:hover { box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(11, 140, 150, 0.35);
  outline-offset: 3px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.92rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}
.logo i { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.35rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-login {
  padding: 0.48rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(14, 124, 134, 0.25);
  background: #e8f5f4;
  color: var(--teal) !important;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.15rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.6rem 5% 1rem;
  display: grid;
  gap: 0.45rem;
}
.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.9rem;
  background: #fbfcfd;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.03);
}
.mobile-menu a.active {
  border-color: rgba(14, 124, 134, 0.35);
  background: #eaf7f5;
  color: var(--teal);
}
.mobile-menu .mobile-apply {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.hero {
  background:
    linear-gradient(135deg, rgba(8, 116, 125, 0.2) 0%, rgba(16, 32, 51, 0) 38%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero .eyebrow { color: #8bd4d9; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 4.9vw, 4.65rem);
  max-width: 980px;
  letter-spacing: 0;
}
.hero p {
  color: #dbe6ee;
  max-width: 780px;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  margin-top: 1.35rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.control-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cad7e2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.control-item {
  background: var(--white);
  padding: 1.45rem 5%;
  min-height: 118px;
}
.control-item strong {
  display: block;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.control-item span { color: var(--muted); font-size: 0.92rem; }
.control-item i { color: var(--teal); margin-right: 0.45rem; }

.section { padding: 5.25rem 0; }
.section.white { background: var(--white); border-block: 1px solid rgba(210, 221, 231, 0.65); }
.section.navy { background: var(--navy); color: var(--white); }
.section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy p, .section.navy li { color: #d7e1ea; }
.section-header { max-width: 790px; margin-bottom: 2.55rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(2rem, 3.3vw, 3rem); margin-bottom: 1rem; letter-spacing: 0; }
.section-header p { font-size: 1.05rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.55rem; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.55rem; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.96rem; }
.card > i {
  color: var(--teal);
  background: #e5f4f4;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.05rem;
}
.quiet-card { background: #fbfcfd; }
.accent-card { border-top: 4px solid var(--teal); }
.gold-card { border-top: 4px solid var(--gold); }
.green-card { border-top: 4px solid var(--green); }
.rose-card { border-top: 4px solid var(--rose); }
.gold-card > i { color: var(--gold); background: #fff3dc; }
.green-card > i { color: var(--green); background: #e8f4ed; }
.rose-card > i { color: var(--rose); background: #fae8eb; }
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.4rem;
  align-items: stretch;
}
.split > * { min-width: 0; }
.split .card { height: 100%; }
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.check-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.65rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.035);
}
.section.white .check-list li { background: #fbfcfd; }
.check-list i { color: var(--teal); margin-top: 0.22rem; }
.steps { display: grid; gap: 1rem; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.65rem;
  display: grid;
  grid-template-columns: 4.3rem 1fr;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  color: var(--teal);
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.step h3 { margin-bottom: 0.45rem; }
.ops-visual {
  background:
    linear-gradient(135deg, rgba(8, 116, 125, 0.16), rgba(16, 32, 51, 0) 42%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.24);
}
.ops-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d7e1ea;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.ops-lights { display: flex; gap: 0.35rem; }
.ops-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8bd4d9;
  display: block;
}
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ops-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 1rem;
}
.ops-panel strong {
  color: var(--white);
  display: block;
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.55rem;
}
.ops-panel p {
  color: #c5d5df;
  font-size: 0.9rem;
}
.ops-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #8bd4d9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.85rem;
}
.quote {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  background: #fffaf0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); background: #edf6f6; font-family: "Outfit", sans-serif; }
tr:last-child td { border-bottom: 0; }
.form-shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1rem; }
label {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 134, 0.12);
}
.small-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.small-note a { color: var(--teal); font-weight: 800; }
.contact-direct {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}
.contact-direct strong {
  display: block;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.25rem;
}
.contact-direct a {
  color: var(--teal);
  font-weight: 800;
}
.article {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.article h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.55rem; }
.article h2:first-child { margin-top: 0; }
.article p { margin-bottom: 1rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  background: var(--white);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.cta-band {
  background:
    linear-gradient(135deg, rgba(8, 116, 125, 0.22), rgba(16, 32, 51, 0) 45%),
    var(--navy-3);
  color: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-band p { color: #d7e1ea; max-width: 720px; margin: 0.75rem 0 1.5rem; }
footer {
  background: #0c1724;
  color: #b6c4d1;
  padding: 4rem 0 2rem;
  margin-top: auto;
}
footer .logo { color: var(--white); margin-bottom: 0.9rem; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(5, minmax(125px, 1fr));
  gap: 1.55rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 { color: var(--white); margin-bottom: 0.85rem; font-size: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.48rem; color: #b6c4d1; }
.footer-col a { color: #b6c4d1; font-size: 0.9rem; }
.footer-col a:hover { color: #8bd4d9; }
.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.4rem;
  font-size: 0.78rem;
}
.disclaimer p { color: #a6b4c0; margin-bottom: 0.65rem; }

@media (max-width: 980px) {
  .nav-links, .nav-container > .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .grid-3, .grid-4, .control-strip, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 5.5%; }
  .logo { font-size: 1.22rem; }
  .nav-container { padding-block: 0.85rem; }
  .hero { padding: 3.75rem 0 3.25rem; }
  .hero h1 { font-size: clamp(1.95rem, 8.2vw, 2.65rem); }
  .hero p { font-size: 1.02rem; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .section { padding: 3.7rem 0; }
  .section-header { margin-bottom: 1.75rem; }
  .section-header h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .grid-3, .grid-4, .control-strip, .footer-grid { grid-template-columns: 1fr; }
  .card, .step, .faq-item { padding: 1.25rem; }
  .check-list li { padding: 0.85rem 0.9rem; }
  .ops-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .form-shell { padding: 1.2rem; }
  .cta-band { padding: 3rem 0; }
}
