
:root {
  --navy: #071522;
  --navy-2: #0b2030;
  --navy-3: #102d3c;
  --teal: #1f6d86;
  --teal-2: #2b8aa4;
  --aqua: #7ed9df;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --line: #d6e2e5;
  --ink: #142331;
  --muted: #667783;
  --gold: #c79a4b;
  --shadow: 0 20px 50px rgba(7, 21, 34, .12);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 900px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--paper); color: var(--navy); padding: .8rem; z-index: 1000; }
.skip-link:focus { left: 1rem; top: 1rem; }
.top-strip { background: var(--navy); color: #dce8ec; font-size: .88rem; }
.top-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.top-strip a { color: #fff; text-decoration: none; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: .8rem 0; }
.brand { display: flex; align-items: center; text-decoration: none; min-width: 220px; }
.brand img { width: 270px; max-height: 78px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: .25rem; font-size: .95rem; }
.nav-link { text-decoration: none; padding: .7rem .85rem; border-radius: 999px; font-weight: 750; color: var(--navy); white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--mist); color: var(--teal); }
.cta-small { background: var(--teal); color: #fff !important; }
.cta-small:hover, .cta-small.active { background: var(--navy); color: #fff !important; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 315px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 14px; padding: .55rem; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: .72rem .85rem; border-radius: 10px; text-decoration: none; font-weight: 700; color: var(--ink); }
.dropdown-menu a:hover { background: var(--mist); color: var(--teal); }
.mobile-toggle { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: .6rem .85rem; font-weight: 800; color: var(--navy); }
.hero, .page-hero { position: relative; background: radial-gradient(circle at 85% 20%, rgba(43,138,164,.24), transparent 32%), linear-gradient(135deg, var(--navy), var(--navy-2) 68%, var(--navy-3)); color: #fff; overflow: hidden; }
.hero::after, .page-hero::after { content:""; position: absolute; inset: auto -10% -18% auto; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(126,217,223,.18); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: 3.5rem; align-items: center; padding: 5.25rem 0; position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; padding: 4.5rem 0; text-align: center; }
.hero h1, .page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.045em; margin: .35rem 0 1rem; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 4rem); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.84); max-width: 780px; }
.page-hero .lead { margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 900; color: var(--teal-2); margin: 0 0 .4rem; }
.hero .eyebrow, .page-hero .eyebrow, .section-dark .eyebrow, .cta-band .eyebrow { color: var(--aqua); }
.cta-actions { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border: 2px solid var(--teal); background: var(--teal); color: #fff; border-radius: 999px; padding: .78rem 1.1rem; font-weight: 850; text-decoration: none; cursor: pointer; box-shadow: 0 10px 22px rgba(31,109,134,.22); }
.button:hover { background: var(--navy); border-color: var(--navy); }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; box-shadow: none; }
.button-secondary:hover { background: #fff; border-color: #fff; color: var(--navy); }
.button-outline { background: transparent; border-color: var(--teal); color: var(--teal); box-shadow: none; }
.button-outline:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.button-light { background: #fff; border-color: #fff; color: var(--navy); }
.button-light:hover { background: var(--aqua); border-color: var(--aqua); color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.trust-row span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 999px; padding: .45rem .75rem; font-weight: 800; font-size: .86rem; color: rgba(255,255,255,.86); }
.hero-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.42); }
.hero-card img { background: #fff; border-radius: 14px; padding: .6rem; margin-bottom: 1rem; }
.hero-card h2 { margin: .5rem 0 1rem; font-size: 1.35rem; line-height: 1.2; }
.section { padding: 4.2rem 0; }
.section-light { background: var(--mist); }
.section-dark { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 2rem; }
.section-heading.left { text-align: left; margin-left: 0; }
h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.1; letter-spacing: -.03em; margin: .2rem 0 .8rem; }
h3 { font-size: 1.25rem; line-height: 1.25; margin: .2rem 0 .65rem; }
p { margin: 0 0 1rem; }
.intro-split, .pricing-preview, .split-cards { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 2.5rem; align-items: start; }
.card-grid { display: grid; gap: 1.2rem; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .panel, .price-card, .package-card, .credential-card, .contact-panel, .intake-form, .notice-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 14px 35px rgba(7,21,34,.06); }
.service-card { text-decoration: none; min-height: 220px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; position: relative; overflow: hidden; }
.service-card::after { content:""; position: absolute; right: -70px; bottom: -70px; width: 170px; height: 170px; border-radius: 50%; background: rgba(43,138,164,.08); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(43,138,164,.45); }
.service-card.featured, .price-card.featured, .package-card.featured { border-color: rgba(31,109,134,.55); box-shadow: 0 18px 45px rgba(31,109,134,.14); }
.card-kicker { display: inline-flex; color: var(--teal); background: rgba(43,138,164,.1); border-radius: 999px; padding: .26rem .55rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; margin-bottom: .9rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li { position: relative; padding-left: 1.55rem; margin-bottom: .62rem; }
.check-list li::before { content:""; position: absolute; left: 0; top: .55em; width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(43,138,164,.12); }
.section-dark .check-list li::before, .dark-card .check-list li::before { background: var(--aqua); }
.large-list li { font-weight: 650; }
.text-link { color: var(--teal); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.price-stack { display: grid; gap: 1rem; }
.mini-price { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--teal); border-radius: 14px; padding: 1rem; }
.mini-price span { display: block; color: var(--muted); font-weight: 800; font-size: .9rem; }
.mini-price strong { display: block; font-size: 1.75rem; color: var(--navy); line-height: 1.1; }
.mini-price small { display: block; color: var(--muted); margin-top: .25rem; }
.dark-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-step { border-top: 4px solid var(--teal); background: #fff; border-radius: 0 0 var(--radius) var(--radius); padding: 1.25rem; box-shadow: 0 12px 30px rgba(7,21,34,.06); }
.process-step span { display: inline-flex; font-size: .84rem; font-weight: 900; letter-spacing: .1em; color: var(--teal); margin-bottom: .75rem; }
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 3rem 0; }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { margin-top: 0; }
.vertical { flex-direction: column; align-items: stretch; }
.tabs { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.8rem; }
.tab-button { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: .72rem .95rem; font-weight: 850; cursor: pointer; }
.tab-button.active, .tab-button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-card.is-hidden { display: none; }
.two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.service-price-box h2 { font-size: 1.6rem; }
.notice-box { border-left: 6px solid var(--teal); }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 35px rgba(7,21,34,.06); }
table { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
caption { text-align: left; padding: 1rem; font-weight: 900; color: var(--navy); background: var(--mist); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: #fff; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
td:nth-child(2) { font-weight: 900; color: var(--teal); white-space: nowrap; }
.pricing-cards .price-card h3 { font-size: 2rem; color: var(--navy); }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.package-price { font-weight: 900; color: var(--teal); font-size: 1.1rem; }
.credential-card img { width: 96px; margin-bottom: 1rem; }
.contact-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) 380px; gap: 1.5rem; align-items: start; }
.intake-form label { display: grid; gap: .35rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.form-row.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
input, select, textarea { width: 100%; border: 1px solid #c8d8dd; border-radius: 12px; padding: .85rem .9rem; font: inherit; color: var(--ink); background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(43,138,164,.22); border-color: var(--teal); }
textarea { resize: vertical; }
.checkbox-line { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: .6rem !important; font-weight: 650 !important; color: var(--ink) !important; }
.checkbox-line input { width: auto; margin-top: .25rem; }
.hp { position: absolute; left: -9999px; }
.contact-panel hr { border: 0; border-top: 1px solid var(--line); margin: 1.2rem 0; }
.fine { color: var(--muted); font-size: .9rem; }
.site-footer { background: #081522; color: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 2rem; padding: 3rem 0; }
.footer-logo { max-width: 310px; background: #fff; border-radius: 12px; padding: .45rem; margin-bottom: 1rem; }
.footer-heading { color: #fff; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-list a, .site-footer a { color: #fff; text-decoration: none; }
.footer-list a:hover, .site-footer a:hover { text-decoration: underline; }
.footer-button { margin-top: .7rem; color: #fff; border-color: rgba(255,255,255,.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0; font-size: .86rem; color: rgba(255,255,255,.65); }
.footer-bottom p { margin: 0; }
@media (max-width: 1020px) {
  .top-strip-inner { flex-direction: column; align-items: flex-start; padding: .5rem 0; }
  .mobile-toggle { display: inline-flex; }
  .nav-wrap { align-items: flex-start; }
  .brand img { width: 230px; }
  .primary-nav { display: none; position: absolute; top: calc(100% - 1px); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 20px; flex-direction: column; align-items: stretch; }
  .primary-nav.open { display: flex; }
  .nav-link { border-radius: 12px; }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: none; }
  .dropdown-menu { display: block; position: static; box-shadow: none; border: 0; padding: 0 0 0 .6rem; min-width: auto; }
  .hero-grid, .intro-split, .pricing-preview, .split-cards, .contact-grid, .cta-band-inner { grid-template-columns: 1fr; }
  .hero-grid { padding: 3.5rem 0; }
  .hero-card { max-width: 620px; }
  .card-grid.three, .process-grid, .package-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand { min-width: 0; }
  .brand img { width: 205px; }
  .hero h1, .page-hero h1 { letter-spacing: -.035em; }
  .card-grid.three, .process-grid, .package-grid, .two-columns, .footer-grid, .form-row.two { grid-template-columns: 1fr; }
  .centered-mobile { justify-content: center; }
  .page-hero .container { padding: 3rem 0; }
  .section { padding: 3rem 0; }
  .footer-logo { max-width: 260px; }
}
