:root {
  --color-orange: #FF8200;
  --color-orange-dark: #E06F00;
  --color-orange-text: #A34C00;
  --color-blue-900: #0A2342;
  --color-blue-700: #123C6B;
  --color-gold: #FFC72C;
  --color-white: #FFFFFF;
  --color-offwhite: #F7F8FA;
  --color-blue-50: #EDF3FA;
  --color-border: #E5E8EC;
  --color-text: #1B2430;
  --color-text-muted: #5B6472;

  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;

  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 18px rgba(10, 35, 66, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  background: var(--color-blue-900);
  color: var(--color-white);
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-system);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.65;
  background: var(--color-white);
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-blue-900);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange-text);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-blue-900);
  box-shadow: 0 6px 18px rgba(255, 130, 0, 0.35);
}
.btn--primary:hover { background: var(--color-orange-dark); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--color-blue-900);
  color: var(--color-blue-900);
}
.btn--outline-dark:hover { background: rgba(10, 35, 66, 0.06); }
.lane-divider {
  height: 26px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-orange) 0 40px,
      transparent 40px 72px
    );
  background-position: center;
  background-size: 72px 6px;
  background-repeat: repeat-x;
  background-color: transparent;
}
.lane-divider--on-dark {
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-gold) 0 40px,
      transparent 40px 72px
    );
  background-position: center;
  background-size: 72px 6px;
  background-repeat: repeat-x;
}

.topbar {
  background: var(--color-blue-900);
  color: var(--color-white);
  font-size: 0.9rem;
}
.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.topbar__item a { color: var(--color-gold); font-weight: 700; }
.topbar__item--hide-mobile { opacity: 0.85; }

.navbar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 42px;
  width: auto;
  display: block;
}
.navbar__nav { flex: 1; }
.navbar__nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.navbar__nav > ul > li { position: relative; }
.navbar__nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}
.navbar__nav a:hover { color: var(--color-orange); }
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 60;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  width: 820px;
  max-width: calc(100vw - 48px);
  padding: 18px;
  margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: flex; gap: 28px; }
.dropdown__row { flex: 1; min-width: 0; }
.dropdown__row h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange-text);
  margin: 0 0 10px;
}
.dropdown__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 10px;
}
.dropdown__items a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 8px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.25;
}
.dropdown__items a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-orange);
}
.dropdown__items a:hover { background: var(--color-offwhite); }
.dropdown__all {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-orange-text);
}
.dropdown__all:hover { color: var(--color-orange-dark); }

.navbar__cta {
  background: var(--color-orange);
  color: var(--color-blue-900);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--color-orange-dark); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-blue-900);
  border-radius: 2px;
}

.hero {
  color: var(--color-white);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: brightness(0.8) saturate(0.9);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,35,66,0.72), rgba(18,60,107,0.55));
  z-index: 1;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.hero__content { max-width: 640px; }
.hero h1 { color: var(--color-white); }
.hero p.lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__stat strong { color: var(--color-gold); }

.page-header {
  background: linear-gradient(135deg, var(--color-blue-900), var(--color-blue-700));
  color: var(--color-white);
  padding: 48px 0 56px;
}
.page-header h1 { color: var(--color-white); margin-bottom: 14px; }
.page-header .lead { color: rgba(255,255,255,0.88); max-width: 640px; margin-bottom: 24px; }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span[aria-current] { color: var(--color-gold); }

.service-content { padding: 72px 0; background: var(--color-white); }
.service-content__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-content h2 { margin-bottom: 14px; }
.service-content h3 { margin: 28px 0 12px; }
.legal-content { max-width: 760px; }
.legal-content h2 { margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content .info-map__list { margin: 16px 0; }
.pricing-list {
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 18px;
}
@media (max-width: 700px) {
  .pricing-list { grid-template-columns: 1fr; }
}
.service-content .info-map__list { margin-top: 0; }
.service-content .faq__list { margin: 0; }
.service-content .faq-item { margin-bottom: 10px; }

@media (max-width: 900px) {
  .service-content__grid { grid-template-columns: 1fr; }
}

.services { padding: 80px 0; background: var(--color-white); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.1rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(10,35,66,0.12); }
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 130, 0, 0.12);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 0.98rem; }

.why { padding: 80px 0; background: var(--color-offwhite); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.why__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-blue-900);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon svg { width: 28px; height: 28px; }

.info-map { padding: 80px 0; background: var(--color-white); }
.info-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.info-map__details h2 { margin-bottom: 12px; }
.info-map__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-map__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-map__list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
  margin-top: 8px;
  flex-shrink: 0;
}
.info-map__list strong { display: block; color: var(--color-blue-900); }
.info-map__map {
  display: block;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-left: 4px solid var(--color-gold);
  border-bottom: 4px solid var(--color-gold);
  box-shadow: none;
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
}
.info-map__map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.info-map__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.info-map__map-cta {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: var(--color-blue-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.info-map__map:hover .info-map__map-cta { background: var(--color-orange-dark); }
.info-map__map--large { aspect-ratio: 5 / 3; max-width: 1000px; margin: 0 auto; }
.faq { padding: 80px 0; background: var(--color-offwhite); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-blue-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--color-orange);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.is-open .faq-item__q::after { content: "\2212"; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-item__a p { margin: 0; }

.cta-band {
  background: var(--color-orange);
  color: var(--color-blue-900);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--color-blue-900); margin-bottom: 20px; }
.cta-band p { color: var(--color-blue-900); }
.cta-band .btn--primary {
  background: var(--color-blue-900);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(10, 35, 66, 0.35);
}
.cta-band .btn--primary:hover { background: var(--color-blue-700); }
.error-page {
  padding: 100px 0 96px;
  background: var(--color-offwhite);
  text-align: center;
}
.error-page__inner { max-width: 640px; margin: 0 auto; }
.error-page__code {
  display: block;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-orange-text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.error-page h1 { margin-bottom: 14px; }
.error-page .lead { font-size: 1.15rem; margin-bottom: 32px; }
.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.error-page__links { border-top: 1px solid var(--color-border); padding-top: 32px; }
.error-page__links h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.error-page__links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0;
  padding: 0;
}
.error-page__links li:not(:last-child)::after {
  content: "|";
  margin: 0 14px;
  color: var(--color-border);
}
.error-page__links a { font-weight: 700; color: var(--color-blue-900); }
.error-page__links a:hover { color: var(--color-orange-text); }

@media (max-width: 480px) {
  .error-page__links li:not(:last-child)::after { display: none; }
  .error-page__links ul { flex-direction: column; gap: 14px; }
}
.site-footer { background: var(--color-blue-900); color: rgba(255,255,255,0.85); padding: 64px 0 0; }
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.site-footer h3 { color: var(--color-white); font-size: 1.05rem; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.site-footer a:hover { color: var(--color-gold); }
.site-footer__contact a { color: var(--color-gold); font-weight: 700; }
.site-footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.site-footer__bottom .site-footer__legal {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  gap: 0;
  margin: 0 0 12px;
  padding: 0;
  overflow-x: auto;
}
.site-footer__bottom .site-footer__legal li { display: flex; align-items: center; }
.site-footer__bottom .site-footer__legal li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  color: rgba(255,255,255,0.25);
}
.site-footer__bottom .site-footer__legal a { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.site-footer__bottom .site-footer__legal a:hover { color: var(--color-gold); }
.site-footer__bottom p { margin: 0; }
.site-footer__col .site-footer__social {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}
.site-footer__col .site-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-footer__col .site-footer__social a:hover { background: var(--color-orange); color: var(--color-blue-900); }
.site-footer__col .site-footer__social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .info-map__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px 24px;
  }
  .navbar__nav.is-open ul { flex-direction: column; gap: 14px; }
  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    display: block;
    width: auto;
    max-width: none;
    margin-top: 8px;
    padding: 8px 0 0;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: block; }
  .dropdown__row:not(:last-child) { margin-bottom: 18px; }
  .dropdown__all { border-top: none; text-align: left; padding-left: 8px; }
  .services__grid { grid-template-columns: 1fr; }
  .topbar__item--hide-mobile { display: none; }
  .site-footer__bottom .site-footer__legal { font-size: 0.78rem; }
  .site-footer__bottom .site-footer__legal a { font-size: 0.78rem; }
  .site-footer__bottom .site-footer__legal li:not(:last-child)::after { margin: 0 7px; }
  .navbar__logo img { height: 34px; }
  body { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

section[id] {
  scroll-margin-top: 90px;
}