:root {
  --bg: #f4f2ec;
  --surface: #ffffff;
  --surface-alt: #eef3f4;
  --navy: #12263f;
  --navy-deep: #0c1a2d;
  --teal: #0f5d67;
  --teal-soft: #d9e9ea;
  --gold: #b08a47;
  --gold-soft: #efe4d1;
  --charcoal: #2e3944;
  --muted: #5f6c78;
  --line: rgba(18, 38, 63, 0.12);
  --shadow: 0 24px 60px rgba(12, 26, 45, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(circle at top right, rgba(176, 138, 71, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(18, 38, 63, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 90%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-toggle {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: none;
  padding: 0 0 1rem;
}

.site-nav.open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.nav-list a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  color: var(--navy);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(15, 93, 103, 0.08);
}

.nav-list .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  background: var(--navy-deep);
  color: #fff;
}

.site-header .nav-cta {
  display: none;
}

main {
  overflow: clip;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--font-heading);
}

h1,
h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

h1 {
  max-width: 22ch;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero {
  padding: 3.5rem 0 2.75rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1.5rem;
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(18, 38, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 38, 63, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.25rem auto;
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(176, 138, 71, 0.12), rgba(15, 93, 103, 0.12));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 18ch;
  line-height: 1.08;
}

.hero-copy .lead {
  max-width: 54ch;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 38, 63, 0.16);
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(18, 38, 63, 0.14);
}

.button-accent {
  background: var(--gold-soft);
  color: var(--navy);
  border: 1px solid rgba(176, 138, 71, 0.2);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 93, 103, 0.08);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-note::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.metric-card,
.card,
.service-card,
.package-card,
.faq-card,
.process-card,
.icon-card,
.contact-card,
.serve-card {
  background: var(--surface);
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 0.9rem 1rem;
  box-shadow: none;
}

.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.metric-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-illustration {
  position: relative;
  align-self: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 138, 71, 0.22), transparent 22%),
    linear-gradient(160deg, #18304d 0%, #10263f 48%, #0f5d67 100%);
  border: 1px solid rgba(18, 38, 63, 0.08);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.hero-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.illustration-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.8rem;
  height: 100%;
}

.illustration-top,
.illustration-bottom {
  display: grid;
  gap: 0.8rem;
  min-height: 0;
}

.doc-cluster,
.checklist-card,
.skyline-card,
.boardroom-card {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.doc-cluster {
  min-height: 205px;
  padding: 1rem;
  overflow: hidden;
}

.doc-sheet {
  position: absolute;
  width: 54%;
  aspect-ratio: 0.76;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(232, 240, 243, 0.96));
  box-shadow: 0 20px 40px rgba(7, 15, 26, 0.28);
}

.doc-sheet::before,
.doc-sheet::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  height: 2px;
  border-radius: 999px;
  background: rgba(18, 38, 63, 0.14);
}

.doc-sheet::before {
  top: 22%;
  box-shadow:
    0 18px 0 rgba(18, 38, 63, 0.12),
    0 36px 0 rgba(18, 38, 63, 0.12),
    0 54px 0 rgba(18, 38, 63, 0.12);
}

.doc-sheet::after {
  top: 68%;
  width: 42%;
  left: 14%;
  background: rgba(176, 138, 71, 0.42);
}

.doc-sheet.one {
  left: 8%;
  top: 12%;
  transform: rotate(-8deg);
}

.doc-sheet.two {
  right: 10%;
  top: 18%;
  transform: rotate(8deg);
}

.checkmark-orbit {
  position: absolute;
  right: 14%;
  bottom: 14%;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-soft), #ffffff);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(7, 15, 26, 0.22);
}

.checkmark-orbit::before {
  content: "";
  width: 22px;
  height: 12px;
  border-left: 4px solid var(--teal);
  border-bottom: 4px solid var(--teal);
  transform: rotate(-45deg) translateY(-2px);
}

.checklist-card,
.skyline-card,
.boardroom-card {
  padding: 0.9rem;
}

.hero-illustration h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.checklist-card h3,
.checklist-card p,
.skyline-card h3,
.skyline-card p,
.boardroom-card h3,
.boardroom-card p {
  color: #fff;
}

.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.checklist-card li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  line-height: 1.4;
}

.checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: rgba(239, 228, 209, 0.18);
  border: 1px solid rgba(239, 228, 209, 0.55);
}

.checklist-card li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.62rem;
  width: 0.32rem;
  height: 0.16rem;
  border-left: 2px solid var(--gold-soft);
  border-bottom: 2px solid var(--gold-soft);
  transform: rotate(-45deg);
}

.skyline-card,
.boardroom-card {
  min-height: 130px;
  overflow: hidden;
}

.skyline-line {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  height: 72px;
  display: flex;
  align-items: end;
  gap: 0.35rem;
}

.skyline-line span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0.12));
}

.skyline-line span:nth-child(1) { height: 34%; }
.skyline-line span:nth-child(2) { height: 58%; }
.skyline-line span:nth-child(3) { height: 42%; }
.skyline-line span:nth-child(4) { height: 76%; }
.skyline-line span:nth-child(5) { height: 52%; }
.skyline-line span:nth-child(6) { height: 68%; }

.board-table {
  position: absolute;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.board-table::before,
.board-table::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: rgba(239, 228, 209, 0.7);
}

.board-table::before {
  left: 12%;
  box-shadow: 0 0 0 28px rgba(255,255,255,0.08), 172px 0 0 0 rgba(255,255,255,0.08);
}

.board-table::after {
  right: 12%;
  box-shadow: -86px 0 0 0 rgba(255,255,255,0.08);
}

.document-list,
.check-list,
.mini-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.document-list li,
.check-list li,
.mini-list li {
  position: relative;
  padding-left: 1.2rem;
}

.document-list li::before,
.check-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
}

.trust-strip {
  display: grid;
  gap: 1rem;
}

.trust-item,
.pill {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 38, 63, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 1rem;
}

.bo-grid,
.serve-grid,
.callout-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.card,
.package-card,
.faq-card,
.process-card,
.icon-card,
.contact-card,
.serve-card {
  padding: 1.4rem;
}

.service-card .tag,
.package-card .tag,
.card .tag {
  display: inline-block;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.process-card span,
.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 93, 103, 0.12);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.highlight-band {
  background: linear-gradient(135deg, rgba(18, 38, 63, 0.98), rgba(15, 93, 103, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.highlight-band h2,
.highlight-band h3,
.highlight-band p,
.highlight-band li {
  color: #fff;
}

.highlight-band .button-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

.package-card.featured {
  border-color: rgba(176, 138, 71, 0.4);
  position: relative;
}

.package-card.featured::after {
  content: "Recommended";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.6rem;
  background: var(--gold-soft);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--teal);
}

.faq-card[open] summary::after {
  content: "-";
}

.page-hero {
  padding: 2.75rem 0 1.8rem;
}

.page-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238, 243, 244, 0.96));
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.page-banner h1 {
  max-width: 28ch;
}

.page-banner p {
  max-width: 62ch;
}

.page-banner .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.meta-pill {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 38, 63, 0.1);
  color: var(--navy);
  font-size: 0.92rem;
}

.contact-box {
  background: var(--surface);
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(18, 38, 63, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--charcoal);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group textarea {
  min-height: 150px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(15, 93, 103, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 93, 103, 0.08);
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  padding: 0.2rem 0;
}

.checkbox-row input {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.checkbox-row label {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.map-placeholder {
  min-height: 280px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,243,244,0.96)),
    linear-gradient(90deg, rgba(18,38,63,0.04) 1px, transparent 1px),
    linear-gradient(rgba(18,38,63,0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  border: 1px solid rgba(18, 38, 63, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: auto 12% 18% 12%;
  height: 2px;
  background: rgba(18, 38, 63, 0.08);
}

.map-pin {
  width: 74px;
  height: 74px;
  border-radius: 28px 28px 28px 6px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(15, 93, 103, 0.16), rgba(176, 138, 71, 0.18));
  border: 1px solid rgba(18, 38, 63, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.map-pin span {
  transform: rotate(-45deg);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--navy);
  display: inline-block;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.media-card {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #17314d, #0f5d67);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 38, 63, 0.08);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 228, 209, 0.22), transparent 20%),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.media-card-inner {
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.media-card-doc,
.media-card-file,
.media-card-lock {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(7, 15, 26, 0.24);
}

.media-card-doc {
  width: 43%;
  height: 48%;
  left: 10%;
  top: 14%;
  transform: rotate(-8deg);
}

.media-card-file {
  width: 34%;
  height: 40%;
  right: 11%;
  top: 22%;
  transform: rotate(8deg);
}

.media-card-lock {
  width: 76px;
  height: 76px;
  left: 50%;
  bottom: 16%;
  margin-left: -38px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border-radius: 24px;
}

.media-card-lock::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 30px;
  height: 20px;
  border: 4px solid var(--teal);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}

.media-card-lock::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 34px;
  width: 36px;
  height: 24px;
  background: var(--teal);
  border-radius: 8px;
}

.serve-card {
  text-align: center;
}

.serve-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 93, 103, 0.12), rgba(176, 138, 71, 0.12));
  color: var(--navy);
}

.serve-icon svg {
  width: 26px;
  height: 26px;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.86);
  padding: 3.5rem 0 6rem;
  margin-top: 2rem;
}

.site-footer h3,
.site-footer h4,
.site-footer strong,
.site-footer a {
  color: #fff;
}

.site-footer p {
  color: rgba(255,255,255,0.76);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-copy {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
}

.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(12, 26, 45, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -12px 30px rgba(12, 26, 45, 0.18);
}

.sticky-actions .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.sticky-actions a {
  text-align: center;
  min-height: 48px;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-item {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 38, 63, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.resources-page main {
  display: flex;
  flex-direction: column;
}

.resources-page .page-hero {
  order: 1;
}

.resources-guides {
  order: 2;
}

.fees-section {
  order: 3;
}

.fee-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 93, 103, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(217, 233, 234, 0.72), rgba(255, 255, 255, 0.94));
}

.fee-summary > div {
  flex: 1 1 32rem;
}

.fee-summary strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.fee-summary p {
  margin: 0;
}

.fee-table-block + .fee-table-block {
  margin-top: 2.25rem;
}

.fee-table-block h3 {
  margin-bottom: 0.8rem;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(18, 38, 63, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.table-scroll:focus-visible {
  outline: 3px solid rgba(15, 93, 103, 0.28);
  outline-offset: 3px;
}

.fee-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.fee-table th,
.fee-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(18, 38, 63, 0.09);
  text-align: left;
  vertical-align: top;
}

.fee-table th {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fee-table th:first-child,
.fee-table td:first-child {
  width: 5.5rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fee-table th:last-child,
.fee-table td:last-child {
  width: 12rem;
  white-space: nowrap;
  color: var(--navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.fee-table th:first-child,
.fee-table th:last-child {
  color: #fff;
}

.fee-table tbody tr:nth-child(even) {
  background: rgba(238, 243, 244, 0.5);
}

.fee-table tbody tr:last-child td {
  border-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 519px) {
  .metric-card {
    display: grid;
    place-items: center;
    min-height: 64px;
    padding: 0.7rem;
    text-align: center;
  }

  .metric-card strong {
    margin: 0;
    font-size: 0.95rem;
  }

  .metric-card p {
    display: none;
  }

  .doc-cluster {
    min-height: 180px;
  }
}

@media (min-width: 760px) {
  .site-nav {
    display: block !important;
    padding: 0;
    margin-left: auto;
  }

  .nav-toggle {
    display: none;
  }

  .header-inner {
    gap: 2rem;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: end;
  }

  .nav-list a {
    padding: 0.7rem 0.85rem;
  }

  .hero {
    padding: 5rem 0 3.5rem;
  }

  .hero-grid,
  .grid-2,
  .callout-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-3,
  .resource-list,
  .bo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .illustration-top,
  .illustration-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serve-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-actions {
    display: none;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .section-head > div:first-child {
    max-width: 52ch;
  }

  .serve-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
