:root {
  --navy-950: #081a2a;
  --navy-900: #0e263b;
  --navy-800: #17324d;
  --navy-700: #24455f;
  --red-700: #b51017;
  --red-600: #d20c12;
  --red-500: #e21b23;
  --teal-700: #176b78;
  --teal-600: #1f7a8c;
  --cyan-200: #c8edf1;
  --cyan-100: #e9f7f8;
  --ink: #15212b;
  --muted: #5a6875;
  --line: #d8e2e7;
  --line-strong: #bbcbd3;
  --surface: #ffffff;
  --soft: #f4f7f9;
  --warm: #fff6f1;
  --success: #287846;
  --max-width: 1200px;
  --content-width: 820px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 24px rgba(8, 26, 42, 0.07);
  --shadow: 0 22px 60px rgba(8, 26, 42, 0.13);
  --header-height: 76px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  cursor: pointer;
}

p,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal-700);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--red-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan-200);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  color: var(--navy-800);
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
}

h4 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

::selection {
  color: var(--surface);
  background: var(--teal-700);
}

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

.narrow {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.75rem;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--surface);
  background: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.8rem;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--red-600);
}

.eyebrow--light {
  color: var(--cyan-200);
}

.eyebrow--light::before {
  background: var(--red-500);
}

.lead {
  max-width: 68ch;
  margin-bottom: 1.25rem;
  color: #3b4d5c;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.kicker {
  color: var(--navy-800);
  font-weight: 850;
}

.text-light {
  color: #dce9ee;
}

.utility-bar {
  color: #dbe7ec;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.utility-bar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar a {
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--cyan-200);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(216, 226, 231, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(8, 26, 42, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: var(--navy-800);
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  height: auto;
}
.site-header .brand-logo {
  width: 118px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
  line-height: 1.05;
}

.brand-name {
  color: var(--navy-800);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.brand-descriptor {
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0.4rem;
  color: var(--navy-800);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--red-600);
  background: var(--soft);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-700);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  bottom: 0.35rem;
  left: 0.4rem;
  height: 2px;
  border-radius: 999px;
  background: var(--red-600);
}

.lang-switch {
  margin-left: 0.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px !important;
  padding: 0.58rem 0.7rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--navy-800);
  background: var(--soft);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  transform: translateY(-7px);
}

.nav-toggle-icon::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.18rem;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--surface);
  background: var(--red-600);
  box-shadow: 0 9px 22px rgba(210, 12, 18, 0.22);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  color: var(--surface);
  background: var(--red-500);
  box-shadow: 0 12px 28px rgba(210, 12, 18, 0.28);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--secondary {
  color: var(--navy-800);
  border-color: var(--navy-800);
  background: transparent;
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--surface);
  border-color: var(--navy-800);
  background: var(--navy-800);
  box-shadow: none;
}

.button--dark {
  background: var(--navy-800);
  box-shadow: 0 9px 22px rgba(8, 26, 42, 0.2);
}

.button--dark:hover {
  background: var(--navy-700);
}

.button--light {
  color: var(--navy-900);
  background: var(--surface);
  box-shadow: none;
}

.button--light:hover {
  color: var(--navy-900);
  background: var(--cyan-100);
}

.button--compact {
  min-height: 40px;
  padding: 0.6rem 0.74rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(31, 122, 140, 0.15), transparent 26rem),
    linear-gradient(135deg, var(--soft) 0%, #ffffff 62%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: -20rem;
  width: 34rem;
  height: 34rem;
  border: 5rem solid rgba(210, 12, 18, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 12.5ch;
}

.hero h1 .accent {
  color: var(--teal-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 1rem;
}

.hero-note {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin: 1.4rem 0 0;
  padding: 0;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.proof-list li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--success);
  font-weight: 950;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: var(--radius-lg);
  color: var(--surface);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -7rem;
  top: -5rem;
  width: 24rem;
  height: 24rem;
  border: 3.2rem solid rgba(200, 237, 241, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(210, 12, 18, 0.08);
}

.hero-visual > * {
  position: relative;
  z-index: 1;
}

.hero-visual-logo {
  width: 170px;
  height: auto;
  margin-bottom: 2rem;
}

.hero-visual h2 {
  max-width: 11ch;
  color: var(--surface);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.hero-visual > p {
  max-width: 38ch;
  color: #dce9ee;
}

.visual-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: auto;
}

.visual-meter div {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.visual-meter strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--cyan-200);
  font-size: 1rem;
  line-height: 1.2;
}

.visual-meter span {
  color: #ecf5f7;
  font-size: 0.78rem;
  line-height: 1.35;
}

.service-strip {
  color: var(--surface);
  background: var(--navy-900);
}

.service-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.service-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0.7rem;
  background: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section--soft {
  background: var(--soft);
}

.section--warm {
  background: var(--warm);
}

.section--dark {
  color: #dce9ee;
  background: var(--navy-900);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--surface);
}

.section--dark .lead,
.section--dark .small {
  color: #dce9ee;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.section-head > * {
  max-width: 58ch;
}

.section-head .lead,
.section-head p:last-child {
  margin-bottom: 0;
}

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

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

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

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

.align-center {
  align-items: center;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card--red {
  border-top: 5px solid var(--red-600);
}

.card--teal {
  border-top: 5px solid var(--teal-600);
}

.card--flat {
  box-shadow: none;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 13px;
  color: var(--navy-800);
  background: var(--cyan-200);
  font-weight: 950;
}

.card-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  color: var(--teal-700);
  background: var(--cyan-100);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card p {
  color: #435463;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.step {
  position: relative;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--surface);
  background: var(--red-600);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0.66rem 0;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 950;
}

.check-list--light li::before {
  color: var(--cyan-200);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 26px;
  color: #e6f0f3;
  background: linear-gradient(140deg, var(--teal-700), var(--navy-900));
  box-shadow: var(--shadow-sm);
}

.quote-panel::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 15rem;
  height: 15rem;
  border: 2.4rem solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.quote-panel > * {
  position: relative;
  z-index: 1;
}

.quote-panel h2,
.quote-panel h3 {
  color: var(--surface);
}

.quote-panel .button--secondary {
  color: var(--surface);
  border-color: var(--surface);
}

.quote-panel .button--secondary:hover {
  color: var(--navy-900);
  background: var(--surface);
}

.notice {
  padding: 1.15rem 1.25rem;
  border-left: 5px solid var(--red-600);
  border-radius: 0 12px 12px 0;
  color: #3f4d59;
  background: var(--warm);
}

.notice--info {
  border-left-color: var(--teal-600);
  background: var(--cyan-100);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 20%, rgba(31, 122, 140, 0.12), transparent 22rem),
    linear-gradient(135deg, var(--soft), #ffffff 70%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -14rem;
  width: 28rem;
  height: 28rem;
  border: 4.2rem solid rgba(210, 12, 18, 0.035);
  border-radius: 50%;
}

.page-hero .container,
.page-hero .narrow {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.55rem, 5.5vw, 4.65rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--teal-700);
}

.breadcrumbs [aria-current="page"] {
  color: var(--muted);
}

.service-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.route-card {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: clamp(1.65rem, 4vw, 2.35rem);
  border-radius: 27px;
  color: #eaf3f5;
}

.route-card--core {
  background: var(--teal-700);
}

.route-card--extended {
  background: var(--navy-900);
}

.route-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 17rem;
  height: 17rem;
  border: 2.8rem solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.route-card > * {
  position: relative;
  z-index: 1;
}

.route-card h2,
.route-card h3 {
  color: var(--surface);
}

.route-card .check-list li::before {
  color: var(--cyan-200);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  color: var(--surface);
  background: var(--navy-800);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

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

tbody tr:nth-child(even) {
  background: #f9fbfc;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

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

.form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 0.38rem;
}

.field--full {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--navy-800);
  font-weight: 820;
}

.optional {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 550;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.76rem 0.82rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:hover,
select:hover,
textarea:hover {
  border-color: #8ba1ac;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.1);
}

textarea {
  min-height: 125px;
  resize: vertical;
}

input[type="checkbox"] {
  width: 1.1rem;
  min-height: auto;
  height: 1.1rem;
  flex: 0 0 auto;
  accent-color: var(--red-600);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 700;
}

.help {
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.45;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.25rem;
}

.form-message {
  display: none;
  padding: 1rem;
  border: 1px solid #b8dfc4;
  border-radius: 11px;
  color: #175a31;
  background: #edf8f0;
}

.form-message.is-visible {
  display: block;
}

.summary-field {
  display: none;
}

.summary-field.is-visible {
  display: grid;
}

.summary-field textarea {
  min-height: 310px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.5;
}

.quote-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 1rem;
}

.calculator {
  padding: 1.5rem;
  border-radius: 22px;
  color: var(--surface);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.calculator h2,
.calculator h3,
.calculator label {
  color: var(--surface);
}

.calculator .form-grid {
  gap: 0.75rem;
}

.calculator-result {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.calculator-result output {
  display: block;
  margin-top: 0.2rem;
  color: var(--cyan-200);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.15;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 5px 18px rgba(8, 26, 42, 0.04);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 1.05rem 3.25rem 1.05rem 1.15rem;
  color: var(--navy-800);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--cyan-100);
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details[open] summary {
  border-bottom: 1px solid var(--line);
}

.details-content {
  padding: 1rem 1.15rem 1.15rem;
  color: #435463;
}

.legal-copy h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-meta {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  color: var(--surface);
  background: var(--red-600);
}

.cta .container {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3.25rem;
}

.cta h2 {
  margin-bottom: 0.35rem;
  color: var(--surface);
}

.cta p {
  max-width: 62ch;
  margin-bottom: 0;
  color: #fff1f2;
}

.site-footer {
  padding: 3.8rem 0 1.25rem;
  color: #d6e3e8;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1fr;
  gap: 2.2rem;
}

.site-footer .brand {
  min-width: 0;
}

.site-footer .brand-logo {
  width: 154px;
}

.site-footer .brand-name {
  color: var(--surface);
}

.site-footer .brand-descriptor {
  color: var(--cyan-200);
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--surface);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: #d6e3e8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan-200);
}

.site-footer ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer address {
  font-style: normal;
}

.footer-description {
  max-width: 52ch;
  margin-top: 1rem;
  color: #afc2cb;
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9bcc5;
  font-size: 0.81rem;
}

.mobile-call {
  display: none;
}

.error-hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.error-hero .lead {
  margin-inline: auto;
}

@media (max-width: 1220px) {
  :root {
    --header-height: 70px;
  }

  .utility-bar {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header .button--compact {
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    display: none;
    overflow-y: auto;
    padding: 1rem max(1rem, calc((100vw - var(--max-width)) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .lang-switch {
    width: fit-content;
    margin-top: 0.35rem;
    border-bottom: 1px solid var(--line-strong) !important;
    border-radius: 999px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 450px;
  }

  .service-strip .container {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .split-panel,
  .service-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head > * + * {
    margin-top: 1rem;
  }

  .cta .container {
    display: block;
  }

  .cta .button {
    margin-top: 1.25rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .header-inner {
    gap: 0.4rem;
  }

  .brand-logo {
    width: 116px;
  }

  .site-header .button--compact {
    display: none;
  }

  .hero-grid {
    gap: 2rem;
    padding-block: 3.2rem;
  }

  .hero-visual {
    min-height: 470px;
    border-radius: 23px;
  }

  .visual-meter {
    grid-template-columns: 1fr;
  }

  .visual-meter div {
    min-height: auto;
  }

  .service-strip .container,
  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .form-grid,
  .quote-sidebar {
    grid-template-columns: 1fr;
  }

  .grid-3 > :last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-strip span {
    min-height: 50px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-call {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    background: var(--red-600);
    box-shadow: 0 -8px 20px rgba(8, 26, 42, 0.17);
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-call:hover {
    color: var(--surface);
    background: var(--red-500);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .cta,
  .mobile-call,
  .nav-toggle,
  .hero-actions,
  .form-actions {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding-block: 1.2rem;
  }

  .card,
  .step,
  .quote-panel,
  .route-card,
  .form-card {
    break-inside: avoid;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 1.7rem; }
.hero-actions--center { justify-content: center; }

@media (max-width: 640px) {
  .mobile-call {
    padding-inline: 0.75rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

.noscript-nav {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.noscript-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.noscript-nav a {
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 800;
}
