@import url("https://fonts.googleapis.com/css2?display=swap&family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900");

:root {
  --bg: #272936;
  --bg-deep: #21232d;
  --panel: rgba(48, 51, 65, 0.88);
  --panel-strong: rgba(57, 61, 77, 0.94);
  --surface-light: #ece9df;
  --surface-card: #f8f5ee;
  --ink: #1f232c;
  --ink-soft: rgba(31, 35, 44, 0.84);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.88);
  --muted-soft: rgba(255, 255, 255, 0.74);
  --accent: #20a814;
  --accent-bright: #00ffd1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --header-offset: clamp(5.2rem, 8vw, 6.15rem);
  --section-stack: clamp(1rem, 1.9vw, 1.5rem);
  --section-stack-tight: clamp(0.8rem, 1.3vw, 1.05rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  padding-top: var(--header-offset);
  color: var(--text);
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 12%, rgba(32, 168, 20, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.06), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 20px 20px, 20px 20px;
  background-attachment: scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 0.7px, transparent 0.8px);
  background-size: 10px 10px;
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

html.show-home-intro,
html.show-home-intro body.page-home {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  background: #06070a;
  isolation: isolate;
}

html.show-home-intro .intro-overlay {
  display: grid;
}

.intro-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.16) 0%, rgba(5, 6, 10, 0.58) 55%, rgba(5, 6, 10, 0.9) 100%),
    radial-gradient(circle at 14% 22%, rgba(0, 255, 209, 0.14), transparent 28rem);
}

.intro-overlay.is-leaving {
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84) saturate(1.02) contrast(1.02);
}

.intro-content {
  position: absolute;
  inset: auto clamp(1rem, 3vw, 2.2rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2.2rem);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.intro-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 30rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(18, 20, 28, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.intro-brand img {
  width: 58px;
  height: 46px;
  border-radius: 12px 12px 0 0;
  object-fit: contain;
  object-position: center;
}

.intro-brand-copy {
  display: grid;
  gap: 0.2rem;
}

.intro-brand-copy small,
.intro-brand-copy strong,
.intro-note {
  text-transform: uppercase;
}

.intro-brand-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.intro-brand-copy strong {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.intro-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.intro-note {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.intro-skip {
  min-height: 3.1rem;
  padding: 0.88rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  border-color: rgba(0, 255, 209, 0.7);
  background: rgba(0, 255, 209, 0.08);
  transform: translateY(-1px);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(39, 41, 54, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(7, 10, 18, 0.2);
}

.privacy-popup {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 10, 18, 0.36);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.privacy-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.privacy-popup__card {
  width: min(100%, 32rem);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  border-radius: 24px;
  border: 1px solid rgba(116, 255, 205, 0.16);
  background:
    linear-gradient(180deg, rgba(55, 60, 77, 0.97), rgba(31, 34, 46, 0.985)),
    radial-gradient(circle at top left, rgba(65, 255, 181, 0.08), transparent 18rem);
  box-shadow:
    0 30px 90px rgba(4, 6, 11, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.privacy-popup__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(32, 168, 20, 0.14);
  color: var(--accent-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.privacy-popup__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.privacy-popup__card h3 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.04;
}

.privacy-popup__card p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.58;
}

.privacy-popup__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.95rem;
  color: var(--accent-bright);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.privacy-popup__link:hover,
.privacy-popup__link:focus-visible {
  color: #ffffff;
}

.privacy-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.privacy-popup__btn {
  flex: 1 1 10rem;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.privacy-popup__btn:hover,
.privacy-popup__btn:focus-visible {
  transform: translateY(-1px);
}

.privacy-popup__btn--primary {
  background: linear-gradient(135deg, rgba(32, 168, 20, 0.95), rgba(0, 255, 209, 0.72));
  color: #08110f;
  border-color: rgba(0, 255, 209, 0.16);
}

.privacy-popup__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.privacy-popup__dismiss {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.85rem !important;
}

.lead-assistant {
  --assistant-accent: #b9ff5d;
  --assistant-accent-strong: #91f53a;
  --assistant-ink: #16210d;
  --assistant-panel: rgba(18, 22, 30, 0.985);
  --assistant-panel-alt: rgba(31, 37, 49, 0.97);
  --assistant-line: rgba(185, 255, 93, 0.18);
  --assistant-copy: rgba(255, 255, 255, 0.96);
  --assistant-copy-muted: rgba(235, 244, 229, 0.72);
  --assistant-launcher-width: 2.7rem;
  --assistant-launcher-hidden-peek: 0.16rem;
  --assistant-launcher-auto-peek: 0.44rem;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 225;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  color: var(--assistant-copy);
}

.lead-assistant__teaser {
  max-width: min(19rem, calc(100vw - 6.5rem));
  padding: 0.78rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--assistant-line);
  background:
    linear-gradient(180deg, rgba(28, 33, 44, 0.98), rgba(19, 24, 32, 0.98)),
    radial-gradient(circle at left center, rgba(185, 255, 93, 0.12), transparent 12rem);
  color: var(--assistant-copy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  box-shadow:
    0 22px 42px rgba(5, 8, 14, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateX(0.45rem);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.lead-assistant.has-teaser .lead-assistant__teaser {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.lead-assistant__launcher.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: var(--assistant-launcher-width);
  min-width: var(--assistant-launcher-width);
  min-height: 3.05rem;
  padding: 0.32rem 0.78rem 0.32rem 0.52rem;
  border-radius: 1.1rem 0 0 1.1rem;
  border: 1px solid rgba(213, 255, 179, 0.9);
  background: linear-gradient(180deg, rgba(223, 255, 188, 0.98), rgba(177, 255, 94, 0.98));
  color: var(--assistant-ink);
  box-shadow:
    0 12px 24px rgba(14, 20, 24, 0.16),
    0 0 0 1px rgba(185, 255, 93, 0.12);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.78;
  transform: translateX(calc(var(--assistant-launcher-width) - var(--assistant-launcher-hidden-peek)));
  transition: transform 220ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.lead-assistant.is-peeking .lead-assistant__launcher.button {
  transform: translateX(calc(var(--assistant-launcher-width) - var(--assistant-launcher-auto-peek)));
}

.lead-assistant__launcher.button:hover,
.lead-assistant__launcher.button:focus-visible,
.lead-assistant.is-open .lead-assistant__launcher.button {
  transform: translateX(0);
  opacity: 1;
  box-shadow: 0 20px 40px rgba(14, 20, 24, 0.2);
}

.lead-assistant__launcher-label {
  display: none;
}

.lead-assistant__launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 33, 13, 0.1);
  background: rgba(22, 33, 13, 0.08);
  color: currentColor;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lead-assistant__launcher-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.lead-assistant__launcher.button:hover .lead-assistant__launcher-icon,
.lead-assistant__launcher.button:focus-visible .lead-assistant__launcher-icon,
.lead-assistant.is-open .lead-assistant__launcher-icon {
  opacity: 1;
  transform: none;
}

.lead-assistant__panel {
  order: -1;
  display: flex;
  flex-direction: column;
  width: min(25rem, calc(100vw - 6rem));
  max-height: min(34rem, calc(100vh - 2rem));
  padding: 1.05rem;
  border-radius: 28px;
  border: 1px solid var(--assistant-line);
  background:
    linear-gradient(180deg, var(--assistant-panel-alt), var(--assistant-panel)),
    radial-gradient(circle at top right, rgba(185, 255, 93, 0.08), transparent 15rem);
  backdrop-filter: blur(20px) saturate(0.94);
  box-shadow:
    0 34px 78px rgba(2, 4, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.lead-assistant__panel[hidden],
.lead-assistant:not(.is-open) .lead-assistant__panel {
  display: none !important;
}

.lead-assistant__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.88rem;
  border-bottom: 1px solid rgba(185, 255, 93, 0.12);
}

.lead-assistant__identity {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.lead-assistant__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(221, 255, 182, 1), rgba(177, 255, 94, 0.96));
  color: var(--assistant-ink);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(185, 255, 93, 0.18);
}

.lead-assistant__heading {
  min-width: 0;
}

.lead-assistant__eyebrow {
  margin: 0;
  color: rgba(217, 255, 179, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-assistant__header h3 {
  margin: 0.16rem 0 0;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1;
}

.lead-assistant__subhead {
  margin: 0.22rem 0 0;
  color: var(--assistant-copy-muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.lead-assistant__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lead-assistant__thread {
  display: grid;
  flex: 1 1 auto;
  gap: 0.55rem;
  min-height: 0;
  margin-top: 0.72rem;
  padding-right: 0.3rem;
  overflow: auto;
  max-height: min(14.5rem, calc(100vh - 18rem));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 255, 93, 0.22) transparent;
}

.lead-assistant__thread::-webkit-scrollbar {
  width: 0.45rem;
}

.lead-assistant__thread::-webkit-scrollbar-track {
  background: transparent;
}

.lead-assistant__thread::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(185, 255, 93, 0.18);
}

.lead-assistant__bubble {
  max-width: 92%;
  padding: 0.7rem 0.82rem;
  border-radius: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.lead-assistant__bubble--assistant {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.07);
  color: var(--assistant-copy);
}

.lead-assistant__bubble--user {
  justify-self: end;
  background: linear-gradient(180deg, rgba(208, 255, 156, 0.98), rgba(177, 255, 94, 0.96));
  color: var(--assistant-ink);
  box-shadow: 0 12px 24px rgba(145, 245, 58, 0.14);
}

.lead-assistant__controls {
  flex: 0 0 auto;
  margin-top: 0.75rem;
}

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

.lead-assistant__choice,
.lead-assistant__action,
.lead-assistant__restart {
  width: 100%;
}

.lead-assistant__choice.button,
.lead-assistant__action.button,
.lead-assistant__restart.button {
  min-height: 2.7rem;
  padding: 0.76rem 0.88rem;
  border-radius: 24px;
  font-size: 0.74rem;
  line-height: 1.22;
  text-align: center;
  box-shadow: none;
}

.lead-assistant__choice.button {
  min-height: 2.95rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--assistant-copy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: normal;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lead-assistant__choice:last-child {
  grid-column: 1 / -1;
}

.lead-assistant__restart.button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--assistant-copy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.lead-assistant__choice.button:hover,
.lead-assistant__choice.button:focus-visible,
.lead-assistant__restart.button:hover,
.lead-assistant__restart.button:focus-visible {
  border-color: rgba(185, 255, 93, 0.34);
  background: rgba(185, 255, 93, 0.08);
  transform: translateY(-1px);
}

.lead-assistant__choice.button .button__label {
  text-wrap: balance;
}

.lead-assistant__summary {
  display: grid;
  gap: 0.38rem;
  padding: 0.88rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(185, 255, 93, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at left center, rgba(185, 255, 93, 0.08), transparent 10rem);
}

.lead-assistant__summary strong {
  color: rgba(217, 255, 179, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-assistant__summary span {
  color: var(--assistant-copy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.lead-assistant__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lead-assistant__action--primary.button {
  border-color: rgba(213, 255, 179, 0.92);
  background: linear-gradient(180deg, rgba(223, 255, 188, 0.98), rgba(177, 255, 94, 0.98));
  color: var(--assistant-ink);
}

.lead-assistant__action--ghost.button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--assistant-copy);
}

.lead-assistant__restart.button {
  margin-top: 0.65rem;
}

.lead-assistant__close:hover,
.lead-assistant__close:focus-visible {
  background: rgba(185, 255, 93, 0.14);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .lead-assistant {
    --assistant-launcher-width: 2.5rem;
    --assistant-launcher-hidden-peek: 0.12rem;
    --assistant-launcher-auto-peek: 0.34rem;
    right: 0;
    top: auto;
    bottom: max(5.3rem, calc(env(safe-area-inset-bottom) + 4.6rem));
    transform: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
  }

  .lead-assistant__teaser {
    display: none;
  }

  .lead-assistant__launcher.button {
    min-height: 2.75rem;
    padding: 0.28rem 0.68rem 0.28rem 0.44rem;
  }

  .lead-assistant__launcher-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .lead-assistant__panel {
    order: -1;
    width: min(20.5rem, calc(100vw - 0.8rem));
    max-height: min(27.25rem, calc(100vh - 7rem));
    padding: 0.82rem 0.78rem 0.9rem;
    border-radius: 22px;
  }

  .lead-assistant__header {
    gap: 0.72rem;
    padding: 0 0 0.72rem;
  }

  .lead-assistant__avatar {
    width: 2rem;
    height: 2rem;
  }

  .lead-assistant__thread {
    max-height: min(11rem, calc(100vh - 14.75rem));
    padding-right: 0.18rem;
  }

  .lead-assistant__header h3 {
    font-size: 1.08rem;
  }

  .lead-assistant__subhead {
    font-size: 0.68rem;
  }

  .lead-assistant__bubble {
    font-size: 0.8rem;
  }

  .lead-assistant__choice.button,
  .lead-assistant__action.button,
  .lead-assistant__restart.button {
    min-height: 2.35rem;
    padding: 0.72rem 0.76rem;
    font-size: 0.7rem;
  }

  .lead-assistant__choice.button {
    min-height: 2.72rem;
    font-size: 0.73rem;
  }

  .lead-assistant__actions,
  .lead-assistant__choices {
    gap: 0.42rem;
  }
}

@media (max-width: 380px) {
  .lead-assistant__teaser,
  .lead-assistant__panel {
    max-width: calc(100vw - 1rem);
  }

  .lead-assistant__choices,
  .lead-assistant__actions {
    grid-template-columns: 1fr;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 60px;
  height: 48px;
  border-radius: 12px 12px 0 0;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.brand small,
.brand strong {
  display: block;
  line-height: 1.14;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.15rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .nav,
.page-topic .nav {
  position: relative;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 0.9rem;
  min-width: 0;
  margin-left: clamp(0.8rem, 1.9vw, 1.65rem);
}

.page-home .nav-panel,
.page-topic .nav-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  column-gap: clamp(0.7rem, 1.3vw, 1rem);
  min-width: 0;
  width: 100%;
}

.page-home .nav-links,
.page-topic .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.95rem;
  min-width: 0;
  grid-column: 2;
  justify-self: center;
}

.page-home .nav-links a,
.page-topic .nav-links a {
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.18rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  grid-column: 3;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.15rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch a[aria-current="true"] {
  color: #ffffff;
  background: rgba(32, 168, 20, 0.22);
}

.page-home .nav-toggle,
.page-topic .nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.page-home .nav-toggle:hover,
.page-home .nav-toggle:focus-visible,
.page-topic .nav-toggle:hover,
.page-topic .nav-toggle:focus-visible {
  border-color: rgba(0, 255, 209, 0.7);
  background: rgba(0, 255, 209, 0.08);
  color: var(--accent-bright);
  transform: translateY(-1px);
}

.nav-toggle-bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.page-home .nav.is-open .nav-toggle-bars span:nth-child(1),
.page-topic .nav.is-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.page-home .nav.is-open .nav-toggle-bars span:nth-child(2),
.page-topic .nav.is-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.page-home .nav.is-open .nav-toggle-bars span:nth-child(3),
.page-topic .nav.is-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.page-home .nav.is-collapsed .nav-toggle,
.page-topic .nav.is-collapsed .nav-toggle {
  display: inline-flex;
  position: relative;
  z-index: 52;
}

.page-home .nav.is-collapsed::before,
.page-topic .nav.is-collapsed::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(7, 10, 17, 0.48);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.page-home .nav.is-collapsed.is-open::before,
.page-topic .nav.is-collapsed.is-open::before {
  opacity: 1;
}

.page-home:has(.nav.is-collapsed.is-open),
.page-topic:has(.nav.is-collapsed.is-open) {
  overflow: hidden;
}

.page-home .nav.is-collapsed .nav-panel,
.page-topic .nav.is-collapsed .nav-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr;
  grid-template-areas:
    "links"
    "lang"
    "contact";
  align-content: start;
  justify-items: stretch;
  gap: 0.9rem;
  width: min(23.5rem, calc(100vw - 1rem));
  max-height: calc(100dvh - 6rem);
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(50, 199, 74, 0.08), transparent 11rem),
    rgba(33, 35, 45, 0.985);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(1.4rem) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.page-home .nav.is-collapsed .nav-panel::before,
.page-topic .nav.is-collapsed .nav-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 1rem;
  width: 4.8rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(50, 199, 74, 0.92), rgba(50, 199, 74, 0));
}

.page-home .nav.is-collapsed.is-open .nav-panel,
.page-topic .nav.is-collapsed.is-open .nav-panel {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.page-home .nav.is-collapsed .nav-links,
.page-topic .nav.is-collapsed .nav-links {
  grid-area: links;
  grid-column: auto;
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-self: stretch;
}

.page-home .nav.is-collapsed .lang-switch,
.page-topic .nav.is-collapsed .lang-switch {
  grid-area: lang;
  grid-column: auto;
  width: auto;
  justify-self: start;
  justify-content: flex-start;
  align-self: start;
  margin-top: 0;
  padding: 0.35rem;
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.page-home .nav.is-collapsed .nav-links a,
.page-topic .nav.is-collapsed .nav-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 3.55rem;
  padding: 0.95rem 1rem 0.95rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  color: rgba(243, 246, 252, 0.94);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-align: left;
}

.page-home .nav.is-collapsed .nav-links a:hover,
.page-home .nav.is-collapsed .nav-links a:focus-visible,
.page-topic .nav.is-collapsed .nav-links a:hover,
.page-topic .nav.is-collapsed .nav-links a:focus-visible {
  background: rgba(50, 199, 74, 0.1);
  border-color: rgba(50, 199, 74, 0.18);
  color: #ffffff;
  transform: translateX(3px);
}

.page-home .nav.is-collapsed .lang-switch a,
.page-topic .nav.is-collapsed .lang-switch a {
  flex: 0 0 auto;
  min-width: 3.3rem;
  min-height: 2.95rem;
  padding-inline: 0.95rem;
  border-radius: 0.8rem;
}

.page-home .nav.is-collapsed .nav-contact,
.page-topic .nav.is-collapsed .nav-contact {
  grid-area: contact;
  grid-column: auto;
  width: 100%;
  max-width: none;
  margin-top: auto;
  margin-left: 0;
  justify-self: stretch;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.page-home .nav.is-collapsed .nav-contact a,
.page-topic .nav.is-collapsed .nav-contact a {
  justify-content: flex-start;
  padding: 0;
  text-transform: none;
}

.page-home .nav.is-collapsed .nav-phone,
.page-home .nav.is-collapsed .nav-email,
.page-home .nav.is-collapsed .nav-reserve,
.page-topic .nav.is-collapsed .nav-phone,
.page-topic .nav.is-collapsed .nav-email,
.page-topic .nav.is-collapsed .nav-reserve {
  text-align: left;
  justify-content: flex-start;
}

.page-home .nav.is-collapsed .nav-phone,
.page-topic .nav.is-collapsed .nav-phone {
  color: #f4f6fb;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.page-home .nav.is-collapsed .nav-email,
.page-topic .nav.is-collapsed .nav-email {
  white-space: normal;
  overflow-wrap: anywhere;
}

.page-home .nav.is-collapsed .nav-reserve,
.page-topic .nav.is-collapsed .nav-reserve {
  width: 100%;
  min-height: 3rem;
  justify-content: center;
  padding: 0.8rem 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .page-home .nav.is-collapsed .nav-panel,
  .page-topic .nav.is-collapsed .nav-panel {
    width: min(18.75rem, calc(100vw - 1rem));
    max-height: calc(100dvh - 5.2rem);
    padding: 0.85rem;
    border-radius: 1.45rem;
  }

  .page-home .nav.is-collapsed .nav-links a,
  .page-topic .nav.is-collapsed .nav-links a {
    min-height: 3rem;
    padding: 0.82rem 0.95rem 0.82rem 1rem;
    font-size: 0.92rem;
  }

  .page-home .nav.is-collapsed .lang-switch a,
  .page-topic .nav.is-collapsed .lang-switch a {
    min-width: 2.85rem;
    min-height: 2.7rem;
    padding-inline: 0.82rem;
  }

  .page-home .nav.is-collapsed .nav-contact,
  .page-topic .nav.is-collapsed .nav-contact {
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
  }

  .page-home .nav.is-collapsed .nav-phone,
  .page-topic .nav.is-collapsed .nav-phone {
    font-size: 0.95rem;
  }
}

.nav a {
  color: var(--muted);
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--accent-bright);
}

.nav-contact {
  display: grid;
  gap: 0.35rem;
  width: auto;
  max-width: none;
  margin-left: 0;
  flex: 0 0 auto;
  grid-column: 4;
  justify-self: end;
  min-width: max-content;
  align-content: start;
}

.nav-contact td {
  padding: 0;
}

.nav-contact tr + tr td {
  padding-top: 0.3rem;
}

.nav-phone,
.nav-email,
.nav-reserve {
  display: block;
  width: 100%;
  padding: 0.12rem 0;
  border-radius: 0;
  text-align: left;
  color: #ffffff;
  text-transform: none;
  outline: none;
}

.nav-phone {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  white-space: nowrap;
}

.nav-email {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 2.65rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(0, 255, 209, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 255, 209, 0.2), rgba(32, 168, 20, 0.32));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nav-phone:hover,
.nav-phone:focus-visible,
.nav-email:hover,
.nav-email:focus-visible,
.nav-reserve:hover,
.nav-reserve:focus-visible {
  color: var(--accent-bright);
}

.nav-phone:focus-visible,
.nav-email:focus-visible,
.nav-reserve:focus-visible {
  outline: 2px solid rgba(0, 255, 209, 0.72);
  outline-offset: 2px;
  border-radius: 12px;
}

.section {
  padding: 4rem 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.mobile-contact-rail {
  display: none;
}

.section--hero {
  padding-top: 2.2rem;
  padding-bottom: 1.4rem;
}

.section--after-hero {
  padding-top: 1.2rem;
  padding-bottom: 1.4rem;
}

.section--inspecteur {
  padding-top: 0.8rem;
  padding-bottom: 1.1rem;
}

.section--inspecteur .content-grid {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}

.section--inspecteur .image-panel {
  flex: 0 0 min(38%, 25rem);
  min-width: 0;
  height: auto;
  align-self: stretch;
}

.section--inspecteur .image-panel img {
  height: 100%;
  min-height: 100%;
  object-position: center top;
}

.section--inspecteur .content-card {
  flex: 1 1 0;
  min-width: 0;
}

.section--compact {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  overflow-x: hidden;
}

.section--services {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.section--tarifs {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.section--analyses {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.section--outils {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.section--contact {
  padding-top: 0.9rem;
}

.page-home .home-main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  perspective: 1400px;
}

.page-topic .topic-main {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  perspective: 1400px;
}

.page-topic .section {
  padding: 2.45rem 0;
}

.page-topic .section--hero {
  padding-top: 2.1rem;
  padding-bottom: 1.2rem;
}

.page-topic .section--compact {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.page-topic .section:last-of-type {
  padding-bottom: 2rem;
}

.page-topic .hero-shell {
  min-height: clamp(34rem, 68vh, 45rem);
}

.topic-hero-copy {
  width: min(100%, 56rem);
}

.topic-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.page-topic .hero-actions {
  flex-wrap: wrap;
  width: min(100%, 48rem);
}

.page-home.js-section-motion .home-main > .section,
.page-topic.js-section-motion .topic-main > .section {
  opacity: 0;
  transform: translateY(2.4rem) rotateX(9deg);
  transform-origin: center top;
  backface-visibility: hidden;
  filter: saturate(0.88);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.18, 0.84, 0.24, 1),
    filter 620ms ease;
  will-change: opacity, transform;
}

.page-home.js-section-motion .home-main > .section.is-visible,
.page-topic.js-section-motion .topic-main > .section.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: saturate(1);
}

.page-home.js-section-motion .home-main > .section {
  perspective: 1400px;
}

.section--compact .container,
.section--after-hero .container,
.section--services .container,
.section--tarifs .container,
.section--analyses .container,
.section--outils .container {
  display: grid;
  gap: var(--section-stack);
}

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

.process-card {
  min-height: 100%;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(56, 60, 75, 0.94), rgba(39, 42, 54, 0.96));
  box-shadow: var(--shadow);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(32, 168, 20, 0.16);
  border: 1px solid rgba(32, 168, 20, 0.42);
  color: var(--accent-bright);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin-top: 0.9rem;
  font-size: 1.18rem;
}

.process-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
}

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

.faq-intro {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.process-intro {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.benefits-intro {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(56, 60, 75, 0.94), rgba(39, 42, 54, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.4rem 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  transform: translateY(-50%);
  color: var(--accent-bright);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

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

.faq-answer {
  padding: 0 1.35rem 1.3rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05rem;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

.home-main h1,
.home-main h2,
.home-main h3 {
  text-transform: none;
  letter-spacing: -0.04rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.85;
}

.copy {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
}

.copy p + p {
  margin-top: 1rem;
}

.divider {
  width: 4rem;
  height: 5px;
  margin: 1rem 0 1.25rem;
  border-radius: 999px;
  background: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
}

.button--accent {
  border-color: var(--accent);
  background: rgba(32, 168, 20, 0.16);
}

.hero-grid > *,
.content-grid > *,
.route-grid > *,
.stat-grid > *,
.process-grid > *,
.quick-grid > *,
.service-grid > *,
.pricing-grid > *,
.analysis-grid > *,
.support-grid > *,
.tool-grid > *,
.contact-followup-grid > *,
.contact-side > *,
.error-grid > * {
  min-width: 0;
}

.hero-action,
.button,
.pricing-badge,
.error-quick-links a {
  max-width: 100%;
  min-width: 0;
}

.hero-action span,
.button,
.pricing-badge,
.quick-card h3,
.quick-card p,
.service-card h3,
.service-points li,
.pricing-title-row h3,
.pricing-summary,
.pricing-list li,
.process-card h3,
.process-card p,
.trust-item strong,
.trust-item span,
.trust-card strong,
.trust-card .note-card-main,
.tool-copy h3,
.tool-copy p,
.analysis-card h3,
.analysis-card p,
.support-card h3,
.support-card p,
.contact-side-card strong,
.contact-side-card span,
.contact-side-card a,
.calendar-points li,
.field-label,
.field-hint,
.estimate-row span,
.estimate-total-row span,
.check-option span,
.check-option strong,
.check-option-state,
.error-card h3,
.error-card p,
.error-quick-links a {
  overflow-wrap: anywhere;
  word-break: normal;
}

.quick-card h3,
.service-card h3,
.pricing-title-row h3,
.process-card h3,
.tool-copy h3,
.contact-side-card strong,
.error-card h3 {
  text-wrap: balance;
}

.hero-action span,
.pricing-badge,
.error-quick-links a {
  white-space: normal;
  text-align: center;
}

.panel,
.hero-card,
.route-card,
.content-card,
.stat-card,
.action-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(57, 61, 77, 0.92), rgba(38, 40, 52, 0.92));
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 72vh, 46rem);
  padding: clamp(2rem, 4vw, 3.6rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #1f222b;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 20, 28, 0.68) 0%, rgba(19, 20, 28, 0.56) 42%, rgba(19, 20, 28, 0.34) 68%, rgba(19, 20, 28, 0.24) 100%),
    linear-gradient(180deg, rgba(19, 20, 28, 0.05) 0%, rgba(19, 20, 28, 0.28) 100%),
    radial-gradient(circle at 18% 18%, rgba(32, 168, 20, 0.2), transparent 22rem);
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2.5px) brightness(0.68) saturate(0.92);
  transform: scale(1.06);
}

.page-inspector .hero-background {
  object-position: center top;
  transform-origin: center top;
}

.hero-copy--home {
  position: relative;
  z-index: 2;
  width: min(100%, 68rem);
  padding: 0;
}

.hero-copy--home::after {
  content: none;
}

.hero-copy--home h1 {
  max-width: 19ch;
  font-size: clamp(3.15rem, 5.7vw, 5.35rem);
  text-wrap: balance;
}

.hero-locations {
  margin-top: 0.8rem;
  color: var(--accent-bright);
  font-size: clamp(0.98rem, 1.8vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 38rem;
}

.hero-tags {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  position: relative;
  padding-left: 1rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-tags li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
  width: min(100%, 56rem);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.hero-action:hover,
.hero-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
}

.hero-action span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-action::after {
  content: none;
}

.hero-action--primary {
  border-color: rgba(32, 168, 20, 0.72);
  background: linear-gradient(180deg, rgba(32, 168, 20, 0.3), rgba(26, 32, 39, 0.95));
}

.hero-action--primary:hover,
.hero-action--primary:focus-visible {
  border-color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(32, 168, 20, 0.38), rgba(26, 32, 39, 0.98));
}

.hero-action--featured {
  border-color: rgba(32, 168, 20, 0.42);
  background: linear-gradient(180deg, rgba(45, 72, 46, 0.92), rgba(33, 38, 48, 0.98));
  animation: pricing-featured-pulse 3.8s ease-in-out infinite;
}

.hero-action--featured:hover,
.hero-action--featured:focus-visible {
  border-color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(50, 88, 51, 0.96), rgba(33, 38, 48, 0.99));
}

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

.trust-item {
  min-height: 100%;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(43, 46, 60, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.trust-item span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.trust-carousel-viewport {
  margin-top: 0.05rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.trust-carousel-track {
  animation-duration: 20s;
}

.trust-card {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  align-content: start;
  column-gap: 0.95rem;
  row-gap: 0.25rem;
  flex-basis: clamp(17rem, 23vw, 19.5rem);
  background: rgba(43, 46, 60, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.trust-card::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(32, 168, 20, 0.16);
  border: 1px solid rgba(32, 168, 20, 0.46);
  color: var(--accent-bright);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
}

.trust-card strong,
.trust-card .note-card-main {
  grid-column: 2;
}

.trust-card strong {
  align-self: end;
}

.trust-card .note-card-main {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.52;
}

.quick-surface {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(49, 53, 68, 0.96), rgba(30, 34, 44, 0.98)),
    radial-gradient(circle at 12% 12%, rgba(0, 255, 209, 0.08), transparent 18rem);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.section-head--light h2,
.section-head--light p {
  color: #ffffff;
}

.eyebrow--dark {
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow--dark::before {
  background: var(--accent);
}

.quick-surface .section-head--light p {
  color: rgba(255, 255, 255, 0.8);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.4rem;
}

.quick-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(58, 62, 79, 0.98), rgba(34, 38, 49, 0.99));
  box-shadow: 0 18px 34px rgba(8, 10, 14, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-card:hover,
.quick-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(32, 168, 20, 0.5);
  box-shadow: 0 24px 40px rgba(18, 20, 26, 0.3);
}

.quick-card h3 {
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.15;
}

.quick-card p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

.quick-cta {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--accent-bright);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(58, 62, 79, 0.94), rgba(43, 46, 59, 0.95));
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-last-child(2),
.service-card:last-child {
  grid-column: span 3;
}

.service-card--link {
  cursor: pointer;
}

.service-card--link:visited {
  color: inherit;
}

.service-card--link:hover,
.service-card--link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(32, 168, 20, 0.72);
  background: linear-gradient(180deg, rgba(46, 92, 48, 0.96), rgba(28, 38, 33, 0.98));
  box-shadow: 0 26px 42px rgba(9, 18, 10, 0.34);
}

.service-card--link:active {
  transform: translateY(-1px);
  border-color: rgba(32, 168, 20, 0.9);
  background: linear-gradient(180deg, rgba(49, 108, 51, 0.98), rgba(25, 35, 30, 0.99));
}

.service-card h3 {
  font-family: "Barlow Condensed", "Source Sans Pro", sans-serif;
  color: #ffffff;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 3.1rem;
  height: 4px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-bright), rgba(255, 255, 255, 0.16));
}

.service-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.7;
}

.service-points strong {
  color: #ffffff;
}

.pricing-group {
  display: grid;
  gap: var(--section-stack);
}

.pricing-label-row {
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(59, 63, 80, 0.94), rgba(43, 46, 59, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.pricing-label-row h3 {
  color: #ffffff;
  font-family: "Barlow Condensed", "Source Sans Pro", sans-serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-label-row p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(55, 59, 75, 0.96), rgba(38, 41, 53, 0.97));
  box-shadow: var(--shadow);
}

.pricing-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pricing-card--link:visited {
  color: inherit;
}

.pricing-card--link:hover,
.pricing-card--link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(32, 168, 20, 0.72);
  box-shadow: 0 26px 42px rgba(9, 18, 10, 0.34);
}

.pricing-card--link:active {
  transform: translateY(-1px);
  border-color: rgba(32, 168, 20, 0.9);
}

@keyframes pricing-featured-pulse {
  0%,
  100% {
    border-color: rgba(32, 168, 20, 0.42);
    box-shadow: 0 24px 50px rgba(7, 14, 8, 0.24);
  }

  50% {
    border-color: rgba(32, 168, 20, 0.86);
    box-shadow: 0 28px 62px rgba(24, 112, 28, 0.38);
  }
}

@keyframes pricing-badge-pulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 rgba(0, 255, 209, 0);
  }

  50% {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 18px rgba(0, 255, 209, 0.16);
  }
}

.pricing-card--featured {
  border-color: rgba(32, 168, 20, 0.42);
  background: linear-gradient(180deg, rgba(45, 72, 46, 0.92), rgba(33, 38, 48, 0.98));
  animation: pricing-featured-pulse 3.8s ease-in-out infinite;
}

.pricing-card--compact {
  min-height: auto;
}

.pricing-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.pricing-title-row h3 {
  margin: 0;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  animation: pricing-badge-pulse 3.8s ease-in-out infinite;
}

.pricing-badge-mark {
  color: var(--accent-bright);
  font-size: 0.88rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured,
  .hero-action--featured,
  .pricing-badge {
    animation: none;
  }
}

.pricing-kicker {
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price {
  margin-top: 0.5rem;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.pricing-summary {
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.pricing-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-notes-shell {
  display: grid;
  gap: var(--section-stack-tight);
}

.pricing-notes-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-notes-label {
  color: var(--muted-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-notes-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  contain: layout paint;
}

.pricing-notes-viewport::before,
.pricing-notes-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
  z-index: 1;
}

.pricing-notes-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(39, 41, 54, 1), rgba(39, 41, 54, 0));
}

.pricing-notes-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(39, 41, 54, 1), rgba(39, 41, 54, 0));
}

.pricing-notes {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: pricing-notes-marquee 22s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes pricing-notes-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.note-card {
  flex: 0 0 clamp(16rem, 22vw, 18.5rem);
  min-height: 100%;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.note-card[aria-hidden="true"] {
  pointer-events: none;
}

.note-card strong,
.note-card-main,
.note-card-meta {
  display: block;
}

.note-card strong {
  color: #ffffff;
  font-family: "Barlow Condensed", "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.note-card-main {
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.note-card-meta {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-notes {
    animation: none;
    width: auto;
    flex-wrap: wrap;
  }
}

.pricing-label-row--secondary {
  margin-top: 0.4rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(61, 65, 82, 0.94), rgba(40, 44, 57, 0.98));
}

.pricing-footnote {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.65;
}

.analysis-footnote {
  margin-top: 0;
}

.tools-footnote {
  margin-top: 0;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.analysis-card {
  min-height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(56, 60, 75, 0.94), rgba(39, 42, 54, 0.96));
  box-shadow: var(--shadow);
}

.analysis-card h3 {
  font-size: 1.22rem;
}

.analysis-price {
  margin-top: 0.7rem;
  color: var(--accent-bright);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
}

.analysis-card p:last-child {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.support-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.support-card h3 {
  font-size: 1.16rem;
}

.support-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 0;
}

.tool-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: start;
}

.tool-copy {
  padding: 1rem 0.25rem 0;
}

.tool-card .image-panel img {
  min-height: 16rem;
}

.tool-copy h3 {
  font-size: 1.2rem;
}

.tool-copy p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  align-items: start;
}

.contact-form-card {
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(58, 62, 79, 0.9), rgba(42, 45, 58, 0.94));
}

.contact-form-card h2 {
  max-width: 14ch;
}

.booking-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

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

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

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

.field label {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.field-label {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.field--invalid > label,
.field--invalid > .field-label {
  color: #ff9a9a;
}

.field--invalid > label::after,
.field--invalid > .field-label::after {
  content: " *";
  color: #ff5d5d;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 18, 26, 0.46);
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field input[type="date"] {
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.15);
  opacity: 1;
  cursor: pointer;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(0, 255, 209, 0.72);
  outline-offset: 2px;
  border-color: rgba(0, 255, 209, 0.58);
}

.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: rgba(255, 93, 93, 0.58);
  background: rgba(68, 12, 18, 0.42);
}

.field-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.55;
}

.field-hint--error {
  color: #ff9a9a;
}

.field-hint--success {
  color: rgba(0, 255, 209, 0.82);
}

.step-action-field {
  padding-top: 0;
}

.step-button-row {
  margin-top: 0.25rem;
}

.step-button-row .button {
  min-width: 12rem;
}

.package-select--hidden {
  display: none !important;
}

.package-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.package-choice-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 22, 31, 0.84), rgba(10, 12, 18, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.package-choice-card:hover,
.package-choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 209, 0.42);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  outline: none;
}

.package-choice-card--featured {
  border-color: rgba(0, 255, 209, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 255, 209, 0.1), 0 16px 28px rgba(0, 0, 0, 0.24);
}

.package-choice-card--active {
  border-color: rgba(0, 255, 209, 0.72);
  background: linear-gradient(180deg, rgba(12, 43, 36, 0.9), rgba(9, 23, 20, 0.95));
  box-shadow:
    0 0 0 1px rgba(0, 255, 209, 0.16),
    0 20px 34px rgba(0, 0, 0, 0.24),
    0 0 32px rgba(0, 255, 209, 0.18);
}

.package-choice-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.package-choice-top strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.package-choice-badge {
  flex: 0 0 auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 255, 209, 0.14);
  color: var(--accent-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-choice-tier {
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-choice-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.package-choice-card > span {
  color: var(--accent-bright);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.field--invalid .package-choice-card {
  border-color: rgba(255, 93, 93, 0.42);
}

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

.check-grid--single {
  grid-template-columns: 1fr;
}

.check-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 18, 26, 0.34);
  cursor: pointer;
}

.check-option input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  accent-color: var(--accent);
}

.check-option span,
.check-option strong {
  grid-column: 2;
}

.check-option span {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.check-option strong {
  color: var(--accent-bright);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.check-option-state {
  display: block;
  grid-column: 2;
  color: #ff7f7f;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.check-option--not-applicable {
  border-color: rgba(255, 93, 93, 0.42);
  background: rgba(82, 14, 19, 0.38);
  cursor: not-allowed;
}

.check-option--not-applicable input {
  pointer-events: none;
}

.check-option--not-applicable span {
  color: rgba(255, 255, 255, 0.76);
}

.check-option--not-applicable strong {
  color: rgba(255, 255, 255, 0.45);
}

.check-option--consent {
  background: rgba(0, 255, 209, 0.08);
  border-color: rgba(0, 255, 209, 0.2);
}

.field--invalid .check-option {
  border-color: rgba(255, 93, 93, 0.52);
  background: rgba(82, 14, 19, 0.32);
}

.field--invalid .check-option--consent span {
  color: #ffd1d1;
}

.field--invalid .check-option--consent span::before {
  content: "* ";
  color: #ff5d5d;
  font-weight: 900;
}

.field--invalid .check-option--consent strong {
  color: #ff9a9a;
}

.field--invalid .step-button-row .button {
  color: #ffb2b2;
  border-color: rgba(255, 93, 93, 0.58);
  background: rgba(68, 12, 18, 0.28);
}

.estimate-panel {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 15, 22, 0.42);
}

.estimate-rows {
  display: grid;
  gap: 0.55rem;
}

.estimate-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.estimate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.estimate-row span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.estimate-row strong {
  color: var(--accent-bright);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.estimate-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.estimate-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.estimate-total-row span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.estimate-total-row strong {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.estimate-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.estimate-note--soft {
  color: rgba(255, 255, 255, 0.78);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.form-note--assistant {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(116, 255, 205, 0.16);
  background: rgba(116, 255, 205, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.form-note--error {
  color: #ffb2b2;
}

.form-note--success {
  color: var(--accent-bright);
}

.contact-side {
  display: grid;
  gap: var(--section-stack-tight);
}

.contact-side-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.contact-side-card strong,
.contact-side-card span {
  display: block;
}

.contact-side-card strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-side-card span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.contact-side-card a {
  color: var(--accent-bright);
}

.contact-calendar-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  position: relative;
  overflow: hidden;
  contain: paint;
  z-index: 0;
}

.contact-calendar-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.page-contact .contact-shell {
  grid-template-columns: 1fr;
  gap: 1.45rem;
  max-width: 76rem;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section--contact-followup {
  padding-top: 0.4rem;
}

.contact-followup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
  isolation: isolate;
}

.contact-followup-grid .contact-calendar-card {
  grid-column: auto;
}

.page-contact .contact-followup-grid .contact-side {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.page-contact .contact-form-card {
  position: relative;
  max-width: 46rem;
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: clamp(1.3rem, 2.8vw, 2rem);
  border-radius: 32px;
  border: 1px solid rgba(116, 255, 205, 0.18);
  background:
    linear-gradient(180deg, rgba(55, 60, 77, 0.96), rgba(32, 35, 47, 0.98)),
    radial-gradient(circle at top left, rgba(65, 255, 181, 0.08), transparent 18rem);
  box-shadow:
    0 36px 90px rgba(4, 6, 11, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-contact .contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 18%);
  pointer-events: none;
}

.contact-form-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 15, 22, 0.36);
}

.contact-form-top span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.contact-form-top span:nth-child(1) {
  background: #ff6b6b;
}

.contact-form-top span:nth-child(2) {
  background: #ffd166;
}

.contact-form-top span:nth-child(3) {
  background: #6df7aa;
}

.page-contact .contact-form-card h2 {
  max-width: 12ch;
}

.page-contact .booking-form {
  gap: 1.1rem;
}

.page-contact .field-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-contact .field input,
.page-contact .field select,
.page-contact .field textarea {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  background: rgba(10, 13, 20, 0.58);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  pointer-events: auto;
}

.page-contact .field[hidden],
.page-contact .field--full[hidden],
.page-contact .estimate-panel[hidden],
.page-contact .button-row[hidden],
.page-contact #booking-consent-field[hidden] {
  display: none !important;
  margin: 0;
}

.page-contact .field,
.page-contact .check-option,
.page-contact .estimate-panel,
.page-contact .button-row {
  position: relative;
}

.page-contact .check-option input {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.page-contact .contact-side-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.045);
  position: relative;
  z-index: 2;
}

.page-contact .contact-side-card span,
.page-contact .contact-side-card a {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-contact .contact-panel {
  order: 2;
  width: min(100%, 46rem);
  margin: -0.25rem auto 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 14, 21, 0.58);
  box-shadow:
    0 20px 44px rgba(4, 6, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.page-contact .contact-guide {
  display: block;
}

.page-contact .contact-guide__summary {
  display: block;
  padding: 0.95rem 1.1rem 1rem;
  cursor: pointer;
  list-style: none;
}

.page-contact .contact-guide__summary::marker {
  content: "";
}

.page-contact .contact-guide__summary::-webkit-details-marker {
  display: none;
}

.page-contact .contact-guide__summary::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-bright);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.page-contact .contact-guide[open] .contact-guide__summary::after {
  content: "-";
  transform: translateY(-1px);
  background: rgba(0, 255, 209, 0.14);
}

.page-contact .contact-guide__summary {
  position: relative;
  padding-right: 3.6rem;
}

.page-contact .contact-guide__label {
  display: block;
  color: rgba(0, 255, 209, 0.76);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-contact .contact-guide__summary strong {
  display: block;
  margin-top: 0.28rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.page-contact .contact-guide__hint {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.page-contact .contact-guide__body {
  display: grid;
  gap: 0.9rem;
  padding: 0 1.1rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .contact-panel__eyebrow {
  margin: 0;
  color: rgba(0, 255, 209, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-contact .contact-guide__body > strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-contact .contact-checklist {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-contact .contact-checklist li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.58;
}

.page-contact .contact-checklist li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(0, 255, 209, 0.92);
  box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.12);
}

.page-contact .contact-panel__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

.page-contact .contact-support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .contact-support__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-contact .contact-support a {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.page-contact .contact-support a:hover,
.page-contact .contact-support a:focus-visible {
  background: rgba(0, 255, 209, 0.14);
  color: var(--accent-bright);
}

.calendar-points {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-points li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.calendar-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(0, 255, 209, 0.35);
}

.calendar-embed-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: clamp(28rem, 46vw, 38rem);
  border-radius: 24px;
  padding: 0.85rem;
  border: 1px solid rgba(99, 255, 179, 0.16);
  background:
    linear-gradient(180deg, rgba(24, 29, 40, 0.96), rgba(13, 16, 24, 0.94)),
    radial-gradient(circle at top left, rgba(66, 255, 179, 0.12), transparent 38%);
  box-shadow: 0 24px 60px rgba(2, 4, 8, 0.36);
  isolation: isolate;
  z-index: 1;
  justify-self: stretch;
}

.calendar-embed-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 14%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.08), rgba(4, 7, 12, 0) 20%, rgba(4, 7, 12, 0.08));
  pointer-events: none;
}

.calendar-embed {
  display: block;
  width: 100%;
  height: clamp(28rem, 46vw, 38rem);
  min-height: clamp(28rem, 46vw, 38rem);
  border: 0;
  border-radius: 18px;
  background: #0f131c;
  filter: invert(0.94) hue-rotate(180deg) saturate(0.75) brightness(0.9) contrast(0.94);
  position: relative;
  z-index: 0;
}

@media (max-width: 1240px) {
  .page-contact .contact-followup-grid .contact-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(30rem, 52vw, 42rem);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(30rem, 52vw, 42rem);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(28, 31, 41, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

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

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

.route-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(58, 62, 79, 0.92), rgba(45, 48, 61, 0.92));
}

.route-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.8;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.route-meta span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.route-cta {
  margin-top: 1rem;
}

.page-services .route-grid.route-grid--2 {
  gap: 1.15rem;
}

.page-services .route-grid.route-grid--2 .route-card {
  position: relative;
  scroll-margin-top: calc(var(--header-offset) + 1.2rem);
  padding: 1.15rem 1.25rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(72, 77, 98, 0.18), rgba(72, 77, 98, 0) 26%),
    linear-gradient(180deg, rgba(58, 62, 79, 0.96), rgba(42, 45, 57, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 34px rgba(8, 10, 18, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-services .route-grid.route-grid--2 .route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  opacity: 0.88;
}

.page-services .route-grid.route-grid--2 .route-card:hover,
.page-services .route-grid.route-grid--2 .route-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 209, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 40px rgba(0, 0, 0, 0.24);
}

.page-services .route-grid.route-grid--2 .route-card:target {
  border-color: rgba(0, 255, 209, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 255, 209, 0.16),
    0 24px 42px rgba(0, 0, 0, 0.24),
    0 0 44px rgba(0, 255, 209, 0.12);
}

.page-services .route-grid.route-grid--2 .route-card:target::before {
  height: 6px;
}

.page-services .route-kicker {
  margin: 0 0 0.42rem;
  color: rgba(0, 255, 209, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-services .route-grid.route-grid--2 .route-card h3 {
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(1.48rem, 2vw, 1.82rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
  text-wrap: balance;
}

.page-services .route-grid.route-grid--2 .route-card p:not(.route-kicker) {
  margin-top: 0.82rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.68;
}

.page-services .route-grid.route-grid--2 .route-meta {
  margin-top: 0.95rem;
  gap: 0.5rem;
}

.page-services .route-grid.route-grid--2 .route-meta span {
  padding: 0.4rem 0.66rem;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.2;
}

.page-services .route-grid.route-grid--2 .route-meta span:first-child {
  background: rgba(0, 255, 209, 0.12);
  border-color: rgba(0, 255, 209, 0.18);
  color: rgba(0, 255, 209, 0.9);
}

.page-services .route-grid.route-grid--2 .route-cta {
  margin-top: 1.05rem;
}

.page-services .route-grid.route-grid--2 .route-cta .button {
  min-width: 0;
  padding-inline: 1.1rem;
}

.page-services .service-switcher {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.page-services .service-switcher__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.page-services .service-switcher__tab {
  min-height: 2.5rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.page-services .service-switcher__tab:hover,
.page-services .service-switcher__tab:focus-visible {
  border-color: rgba(0, 255, 209, 0.3);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.page-services .service-switcher__tab.is-active {
  border-color: rgba(0, 255, 209, 0.34);
  background: rgba(0, 255, 209, 0.12);
  color: rgba(0, 255, 209, 0.92);
}

.page-services .service-switcher__panel {
  display: grid;
  gap: 0;
}

.page-services .service-switcher__panel[hidden] {
  display: none;
}

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

.section-head p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.content-grid.content-grid--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.content-card {
  padding: 1.7rem;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.image-panel--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(50, 54, 68, 0.98), rgba(33, 36, 46, 0.99));
}

.image-panel--contain img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 34rem;
  object-fit: contain;
}

.stack-list {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.stack-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
}

.stack-list li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

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

.stat-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.action-panel {
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(57, 61, 77, 0.95), rgba(35, 37, 48, 0.97));
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.faq-contact-panel {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  text-align: center;
}

.faq-contact-panel .eyebrow {
  margin: 0;
}

.faq-contact-links {
  display: grid;
  gap: 0.55rem;
  width: 100%;
}

.faq-contact-link {
  color: #ffffff;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-decoration: none;
  transition: color 160ms ease;
}

.faq-contact-link--email {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.faq-contact-link:hover,
.faq-contact-link:focus-visible {
  color: var(--accent-bright);
}

.footer-credit a {
  color: var(--accent-bright);
}

.site-footer {
  margin-top: 0;
  padding: 2rem 0 3.2rem;
  border-top: 0;
  background: transparent;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(16rem, 32vw);
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.26), transparent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  color: rgba(237, 242, 249, 0.84);
}

.footer-copy,
.footer-credit {
  width: 100%;
  color: rgba(237, 242, 249, 0.84);
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 2rem;
  width: 100%;
  color: rgba(237, 242, 249, 0.84);
}

.footer-policy-links a {
  color: rgba(237, 242, 249, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: var(--accent-bright);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  width: 100%;
  padding-top: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(8, 14, 24, 0.14);
  color: #182226;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(0, 255, 209, 0.3);
  background: rgba(0, 255, 209, 0.08);
  color: var(--accent-bright);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.footer-social-link svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.page-error .error-main {
  padding-bottom: 2.5rem;
}

.page-error .error-shell {
  min-height: clamp(28rem, 62vh, 38rem);
  align-items: center;
}

.page-error .hero-copy--home {
  width: min(100%, 54rem);
}

.page-error .hero-copy--home h1 {
  max-width: 12ch;
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 209, 0.22);
  background: rgba(0, 255, 209, 0.08);
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.error-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1rem;
}

.error-card {
  padding: 1.6rem;
}

.error-card h3 {
  margin-top: 0;
}

.error-card p {
  color: var(--muted);
}

.error-quick-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.error-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.error-quick-links a::after {
  content: "→";
  color: var(--accent-bright);
  font-size: 1rem;
}

.error-quick-links a:hover,
.error-quick-links a:focus-visible {
  color: var(--accent-bright);
  border-color: rgba(0, 255, 209, 0.42);
  background: rgba(0, 255, 209, 0.06);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .page-home .hero-actions,
  .page-contact .hero-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .page-home .hero-action,
  .page-contact .hero-action {
    flex: 1 1 14rem;
  }

  .page-home .hero-action span,
  .page-contact .hero-action span {
    line-height: 1.24;
  }

  .pricing-title-row {
    align-items: flex-start;
  }

  .pricing-badge {
    line-height: 1.2;
  }

  .estimate-row {
    align-items: flex-start;
  }
}

@media (max-width: 1380px) {
  .page-home .header-inner,
  .page-topic .header-inner {
    gap: 0.75rem;
  }

  .page-home .brand,
  .page-topic .brand {
    gap: 0.7rem;
  }

  .page-home .brand img,
  .page-topic .brand img {
    width: 56px;
    height: 44px;
  }

  .page-home .brand small,
  .page-topic .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .page-home .brand strong,
  .page-topic .brand strong {
    font-size: 0.88rem;
    letter-spacing: 0.035em;
  }

  .page-home .nav,
  .page-topic .nav {
    gap: 0.7rem;
    margin-left: 0.85rem;
    font-size: 0.83rem;
    letter-spacing: 0.05em;
  }

  .page-home .nav-panel,
  .page-topic .nav-panel {
    column-gap: 0.7rem;
  }

  .page-home .nav-links,
  .page-topic .nav-links {
    gap: 0.45rem 0.75rem;
  }

  .lang-switch {
    gap: 0.12rem;
    padding: 0.18rem;
  }

  .lang-switch a {
    min-width: 2.05rem;
    min-height: 1.95rem;
    padding: 0 0.58rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .nav-phone {
    font-size: 1.06rem;
  }

  .nav-email {
    font-size: 0.84rem;
  }
}

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

  .package-choice-grid .package-choice-card[data-package-key$="_elite"] {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc((100% - 0.9rem) / 2);
    justify-self: center;
  }

  .error-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .content-grid.content-grid--reverse,
  .route-grid,
  .route-grid.route-grid--2,
  .stat-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .support-grid,
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .pricing-grid > .pricing-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc((100% - 1rem) / 2);
    justify-self: center;
  }

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

  .content-grid {
    grid-template-columns: 1fr;
  }

  .section--inspecteur .content-grid {
    display: grid;
    align-items: start;
    gap: 1.25rem;
  }

  .section--inspecteur .image-panel,
  .section--inspecteur .content-card {
    flex: initial;
  }

  .note-card {
    flex-basis: 16rem;
  }

  .service-card,
  .service-card:nth-last-child(2),
  .service-card:last-child {
    grid-column: auto;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .hero-shell {
    min-height: 32rem;
    padding: 2rem;
  }

  .hero-shell::after {
    background:
      linear-gradient(180deg, rgba(19, 20, 28, 0.48) 0%, rgba(19, 20, 28, 0.68) 100%),
      radial-gradient(circle at 16% 16%, rgba(32, 168, 20, 0.2), transparent 18rem);
  }

  .hero-card {
    min-height: 24rem;
  }

  .hero-card img {
    min-height: 24rem;
  }

  .contact-followup-grid {
    grid-template-columns: 1fr;
  }

  .contact-followup-grid .contact-calendar-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .mobile-contact-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(calc(100vw - 2rem), 23rem);
    margin: 0 auto;
    padding-top: 0.1rem;
    text-align: center;
  }

  .mobile-contact-rail__phone,
  .mobile-contact-rail__email {
    display: block;
    max-width: 100%;
    color: #ffffff;
    text-decoration: none;
  }

  .mobile-contact-rail__phone {
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.05;
  }

  .mobile-contact-rail__email {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.74);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-contact-rail__phone:hover,
  .mobile-contact-rail__phone:focus-visible,
  .mobile-contact-rail__email:hover,
  .mobile-contact-rail__email:focus-visible {
    color: var(--accent-bright);
  }

  .page-home .header-inner,
  .page-topic .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.3rem;
    padding-bottom: 0.7rem;
  }

  .page-home .brand,
  .page-topic .brand {
    grid-column: 1;
    grid-row: 1;
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.75rem;
  }

  .page-home .brand img,
  .page-topic .brand img {
    width: 58px;
    height: 44px;
  }

  .page-home .brand small,
  .page-topic .brand small {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .page-home .brand strong,
  .page-topic .brand strong {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  .page-home .nav,
  .page-topic .nav {
    grid-column: 2;
    grid-row: 1;
    flex: 0 0 auto;
    width: auto;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .page-home .nav.is-collapsed .nav-panel,
  .page-topic .nav.is-collapsed .nav-panel {
    width: min(21.75rem, calc(100vw - 1rem));
  }

  .page-home .nav.is-collapsed .nav-contact,
  .page-topic .nav.is-collapsed .nav-contact {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .page-home .nav.is-collapsed .nav-phone,
  .page-topic .nav.is-collapsed .nav-phone {
    font-size: 1.04rem;
    letter-spacing: 0.04em;
  }

  .page-home .nav.is-collapsed .nav-email,
  .page-topic .nav.is-collapsed .nav-email {
    font-size: 0.84rem;
  }

  .page-home .nav.is-collapsed .nav-reserve,
  .page-topic .nav.is-collapsed .nav-reserve {
    min-height: 3rem;
  }
}

@media (max-width: 720px) {
  .privacy-popup {
    place-items: end center;
    padding:
      max(0.75rem, env(safe-area-inset-top))
      0.85rem
      calc(0.85rem + env(safe-area-inset-bottom));
  }

  .privacy-popup__card {
    width: min(100%, 24rem);
    border-radius: 22px;
    padding: 0.95rem 0.95rem 0.9rem;
    box-shadow:
      0 24px 54px rgba(4, 6, 11, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .privacy-popup__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .privacy-popup__icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .privacy-popup__card h3 {
    margin-top: 0.75rem;
    font-size: 1.32rem;
    letter-spacing: -0.015em;
  }

  .privacy-popup__card p {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .privacy-popup__link {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .privacy-popup__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .privacy-popup__btn {
    width: auto;
    min-height: 2.65rem;
    padding: 0.72rem 0.8rem;
    font-size: 0.69rem;
    letter-spacing: 0.11em;
  }

  .privacy-popup__dismiss {
    margin-top: 0.8rem !important;
    font-size: 0.76rem !important;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .mobile-contact-rail {
    width: min(calc(100vw - 1.2rem), 20rem);
    padding-top: 0.06rem;
  }

  .privacy-popup__card {
    width: min(100%, 21.75rem);
    padding: 0.9rem 0.9rem 0.85rem;
  }

  .privacy-popup__card h3 {
    font-size: 1.22rem;
  }

  .privacy-popup__btn {
    min-height: 2.55rem;
    font-size: 0.67rem;
    letter-spacing: 0.09em;
  }

  .mobile-contact-rail__phone {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .mobile-contact-rail__email {
    font-size: 0.53rem;
  }

  .page-home .hero-shell {
    padding: 1rem 0.95rem;
  }

  .page-home .hero-copy--home h1 {
    font-size: clamp(1.9rem, 10.6vw, 2.65rem);
  }

  .page-home .hero-actions {
    grid-template-columns: 1fr;
  }

  .page-home .hero-action--featured {
    grid-column: auto;
  }

  .page-contact .hero-shell {
    padding: 1rem 0.95rem;
  }

  .page-contact .hero-copy--home h1 {
    font-size: clamp(1.82rem, 10.2vw, 2.5rem);
  }

  .page-contact .hero-actions {
    grid-template-columns: 1fr;
  }

  .page-contact .hero-actions .hero-action:last-child {
    grid-column: auto;
  }

  .privacy-popup__card {
    padding: 0.9rem 0.85rem 0.85rem;
  }

  .privacy-popup__card h3 {
    font-size: 1.22rem;
  }

  .privacy-popup__btn {
    min-height: 2.55rem;
    padding-inline: 0.7rem;
    font-size: 0.66rem;
  }

  .package-choice-grid {
    grid-template-columns: 1fr;
  }

  .package-choice-grid .package-choice-card[data-package-key$="_elite"] {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .page-english .hero-action span,
  .page-english .button,
  .page-english .route-cta .button {
    white-space: normal;
    text-align: center;
  }

  .page-english .hero-tags li,
  .page-english .route-meta span {
    line-height: 1.4;
  }

  .page-english .section-head h2,
  .page-english .content-card h2,
  .page-english .action-panel h2,
  .page-english .route-card h3,
  .page-english .faq-item summary {
    text-wrap: balance;
  }

  .page-english .action-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .page-english .action-row .button {
    width: 100%;
  }

  .page-english .stack-list li,
  .page-english .route-card p,
  .page-english .faq-answer p,
  .page-english .section-head p,
  .page-english .benefits-intro,
  .page-english .process-intro {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .page-english .content-card,
  .page-english .route-card,
  .page-english .action-panel,
  .page-english .contact-side-card {
    padding: 1.1rem;
  }

  .page-english .route-meta {
    gap: 0.45rem;
  }

  .page-english .route-meta span {
    padding: 0.4rem 0.6rem;
    font-size: 0.78rem;
  }

  .page-english .contact-form-card h2 {
    max-width: none;
  }

  .page-english.page-topic .hero-copy--home h1,
  .page-topic.page-english .hero-copy--home h1,
  .page-topic.page-english .topic-hero-copy h1 {
    font-size: clamp(2.15rem, 9.3vw, 3.25rem);
    line-height: 1.01;
  }

  .page-home.page-english .hero-copy--home h1,
  .page-english.page-home .hero-copy--home h1 {
    font-size: clamp(2.2rem, 9.6vw, 3.45rem);
    line-height: 1;
  }

  .page-english .hero-locations {
    font-size: 0.96rem;
    letter-spacing: 0.11em;
  }

  .page-english .lead,
  .page-english .hero-summary,
  .page-english .copy {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .page-english .nav.is-collapsed .nav-panel {
    width: min(22.5rem, calc(100vw - 1rem));
  }

  .page-english .nav.is-collapsed .nav-links a {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .page-english .lang-switch a {
    min-width: 3rem;
  }

  .page-error .error-shell {
    min-height: auto;
  }

  .error-card {
    padding: 1.2rem;
  }

  .page-home .home-main {
    perspective: 1100px;
  }

  .page-topic .topic-main {
    perspective: 1100px;
  }

  .page-home.js-section-motion .home-main > .section,
  .page-topic.js-section-motion .topic-main > .section {
    transform: translateY(1.7rem) rotateX(6deg);
    transition:
      opacity 520ms ease,
      transform 620ms cubic-bezier(0.18, 0.84, 0.24, 1),
      filter 520ms ease;
  }

  .page-topic .section {
    padding: 1.85rem 0;
  }

  .page-topic .section--hero {
    padding-top: 1.5rem;
    padding-bottom: 0.9rem;
  }

  .page-topic .section--compact {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .page-topic .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .page-topic .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.75rem;
  }

  .page-topic .brand img {
    width: 58px;
    height: 44px;
  }

  .page-topic .brand small {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .page-topic .brand strong {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  .page-topic .nav {
    flex: 0 0 auto;
    width: auto;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .page-topic .nav.is-collapsed .nav-panel {
    width: min(21.75rem, calc(100vw - 1rem));
  }

  .page-topic .nav.is-collapsed .nav-phone {
    font-size: 1.04rem;
    letter-spacing: 0.04em;
  }

  .page-topic .nav.is-collapsed .nav-email {
    font-size: 0.84rem;
  }

  .page-topic .hero-shell {
    min-height: auto;
    padding: 1.15rem 1rem 1.08rem;
    border-radius: 22px;
    max-width: 21.9rem;
    margin-inline: auto;
  }

  .page-topic .hero-background {
    filter: blur(1.8px) brightness(0.56) saturate(0.86);
    transform: scale(1.03);
  }

  .topic-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.02rem, 9.2vw, 2.82rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .page-topic .hero-locations {
    margin-top: 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .page-topic .lead,
  .page-topic .copy,
  .page-topic .section-head p,
  .page-topic .benefits-intro,
  .page-topic .process-intro,
  .page-topic .faq-intro,
  .page-topic .process-card p,
  .page-topic .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .page-topic .divider {
    margin: 0.72rem 0 0.68rem;
  }

  .page-topic .hero-summary {
    max-width: 16.9rem;
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .page-topic .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    margin-top: 0.78rem;
  }

  .page-topic .hero-tags li {
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .page-topic .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.95rem;
    gap: 0.6rem;
    width: min(100%, 17.5rem);
    flex-direction: column;
    align-items: stretch;
  }

  .page-topic .hero-actions .hero-action:last-child {
    grid-column: 1 / -1;
  }

  .page-topic .hero-action {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.78rem 0.92rem;
    border-radius: 18px;
  }

  .page-topic .hero-action span {
    font-size: 0.66rem;
    letter-spacing: 0.085em;
    line-height: 1.18;
    white-space: normal;
    text-align: center;
  }

  .page-topic .faq-item summary {
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .page-topic .faq-answer {
    padding: 0 1rem 1.05rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.2rem;
  }

  .contact-calendar-card {
    grid-template-columns: 1fr;
  }

  .calendar-embed-shell,
  .calendar-embed {
    min-height: 34rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .nav-contact {
    width: auto;
    margin-left: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .section--compact {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .section--after-hero {
    padding-bottom: 0.9rem;
  }

  .section--inspecteur {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .section--services {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .section--tarifs {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .section--analyses {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .section--outils {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .section--contact {
    padding-top: 0.7rem;
  }

  .hero-copy,
  .content-card,
  .action-panel {
    padding: 1.4rem;
  }

  .hero-card,
  .hero-copy,
  .route-card,
  .content-card,
  .action-panel,
  .image-panel {
    border-radius: 20px;
  }

  .hero-copy--home h1 {
    max-width: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-shell {
    min-height: 30rem;
    padding: 1.6rem;
  }

  .hero-action {
    width: 100%;
  }

  .quick-grid,
  .service-grid,
  .pricing-grid,
  .analysis-grid,
  .support-grid,
  .tool-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-notes-viewport::before,
  .pricing-notes-viewport::after {
    width: 2rem;
  }

  .pricing-notes {
    animation-duration: 18s;
  }

  .note-card {
    flex-basis: min(84vw, 18rem);
  }

  .service-card,
  .service-card:nth-last-child(2),
  .service-card:last-child {
    grid-column: auto;
  }

  .quick-card,
  .service-card,
  .pricing-card,
  .analysis-card,
  .support-card,
  .contact-side-card {
    padding: 1.2rem;
  }

  .page-home .pricing-grid > .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .quick-surface,
  .contact-shell {
    padding: 1.4rem;
  }

  .hero-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-home .section--hero {
    padding-top: 0.95rem;
    padding-bottom: 0.35rem;
  }

  .page-home .hero-shell {
    min-height: auto;
    padding: 1.1rem;
    border-radius: 24px;
  }

  .page-home .hero-copy--home h1 {
    font-size: clamp(2.05rem, 9.8vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .page-home .hero-locations {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .page-home .lead,
  .page-home .hero-summary {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .page-home .hero-tags {
    margin-top: 0.9rem;
    gap: 0.35rem;
  }

  .page-home .hero-tags li {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .page-home .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
    align-items: stretch;
  }

  .page-home .hero-action {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.74rem 0.8rem;
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  }

  .hero-actions .hero-action[href="#tarifs"],
  .hero-actions .hero-action[href="/#tarifs"],
  .hero-actions .hero-action[href="/en/#tarifs"] {
    border-color: rgba(32, 168, 20, 0.9);
    background: linear-gradient(180deg, rgba(32, 168, 20, 0.26), rgba(24, 30, 36, 0.97));
    box-shadow: 0 0 0 1px rgba(32, 168, 20, 0.26), 0 0 22px rgba(32, 168, 20, 0.22), 0 16px 30px rgba(7, 18, 8, 0.26);
  }

  .hero-actions .hero-action[href="#tarifs"]:hover,
  .hero-actions .hero-action[href="#tarifs"]:focus-visible,
  .hero-actions .hero-action[href="/#tarifs"]:hover,
  .hero-actions .hero-action[href="/#tarifs"]:focus-visible,
  .hero-actions .hero-action[href="/en/#tarifs"]:hover,
  .hero-actions .hero-action[href="/en/#tarifs"]:focus-visible {
    border-color: rgba(32, 168, 20, 1);
    background: linear-gradient(180deg, rgba(32, 168, 20, 0.34), rgba(24, 30, 36, 0.99));
    box-shadow: 0 0 0 1px rgba(32, 168, 20, 0.34), 0 0 28px rgba(32, 168, 20, 0.26), 0 18px 34px rgba(7, 18, 8, 0.28);
  }

  .hero-actions .hero-action--primary[href="#services"],
  .hero-actions .hero-action--primary[href="/services.html"],
  .hero-actions .hero-action--primary[href="/en/services.html"] {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
    min-height: 2.62rem;
    padding: 0.66rem 0.72rem;
  }

  .hero-actions .hero-action--primary[href="#services"]:hover,
  .hero-actions .hero-action--primary[href="#services"]:focus-visible,
  .hero-actions .hero-action--primary[href="/services.html"]:hover,
  .hero-actions .hero-action--primary[href="/services.html"]:focus-visible,
  .hero-actions .hero-action--primary[href="/en/services.html"]:hover,
  .hero-actions .hero-action--primary[href="/en/services.html"]:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
  }

  .hero-actions .hero-action--primary[href="#services"] span,
  .hero-actions .hero-action--primary[href="/services.html"] span,
  .hero-actions .hero-action--primary[href="/en/services.html"] span {
    font-size: 0.6rem;
    letter-spacing: 0.085em;
  }

  .page-home .hero-action span {
    font-size: 0.64rem;
    letter-spacing: 0.095em;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }

  .page-home .hero-action--featured {
    grid-column: 1 / -1;
  }

  .page-contact.page-english .hero-copy--home h1,
  .page-english.page-contact .hero-copy--home h1 {
    font-size: clamp(1.9rem, 9.8vw, 2.8rem);
  }

  .page-contact.page-english .contact-side,
  .page-english.page-contact .contact-side {
    grid-template-columns: 1fr;
  }

  .page-contact.page-english .contact-form-card,
  .page-english.page-contact .contact-form-card {
    width: 100%;
    border-radius: 24px;
  }

  .page-contact.page-english .contact-calendar-copy,
  .page-english.page-contact .contact-calendar-copy {
    gap: 0.7rem;
  }

  .page-contact.page-english .check-option span,
  .page-english.page-contact .check-option span {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .page-contact.page-english .button-row .button,
  .page-contact.page-english #booking-submit-button,
  .page-english.page-contact .button-row .button,
  .page-english.page-contact #booking-submit-button {
    min-height: 3.2rem;
    white-space: normal;
  }

  .page-contact .section--hero {
    padding-top: 0.95rem;
    padding-bottom: 0.35rem;
  }

  .page-contact .hero-shell {
    min-height: auto;
    padding: 1.05rem 1rem;
    border-radius: 24px;
  }

  .page-contact .hero-copy--home h1 {
    max-width: none;
    font-size: clamp(1.9rem, 9.9vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .page-contact .hero-locations {
    margin-top: 0.55rem;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .page-contact .lead,
  .page-contact .copy,
  .page-contact .calendar-points li,
  .page-contact .contact-side-card span,
  .page-contact .field-hint,
  .page-contact .estimate-empty,
  .page-contact .estimate-note,
  .page-contact .form-note {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .page-contact .divider {
    margin: 0.8rem 0 1rem;
  }

  .page-contact .hero-tags {
    margin-top: 0.9rem;
    gap: 0.5rem;
  }

  .page-contact .hero-tags li {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .page-contact .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
    align-items: stretch;
  }

  .page-contact .hero-action {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.74rem 0.8rem;
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  }

  .page-contact .hero-action span {
    font-size: 0.64rem;
    letter-spacing: 0.095em;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }

  .page-contact .hero-actions .hero-action:last-child {
    grid-column: 1 / -1;
  }

  .page-contact .section--compact {
    padding-top: 0.3rem;
    padding-bottom: 0.35rem;
  }

  .page-contact .note-card {
    flex-basis: min(82vw, 16rem);
  }

  .page-contact .contact-shell {
    gap: 0.9rem;
    padding: 1rem;
  }

  .page-contact .contact-form-card {
    order: 1;
    padding: 1rem;
  }

  .page-contact .contact-form-card h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.02;
  }

  .page-contact .booking-form {
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .page-contact .field-grid {
    gap: 0.8rem;
  }

  .page-contact .check-option {
    padding: 0.85rem 0.9rem;
  }

  .page-contact .estimate-panel {
    gap: 0.8rem;
    margin-top: 0.8rem;
    padding: 1rem;
  }

  .page-contact .estimate-row,
  .page-contact .estimate-total-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .page-contact .estimate-row strong,
  .page-contact .estimate-total-row strong {
    white-space: normal;
  }

  .page-contact .button-row {
    margin-top: 1rem;
  }

  .page-contact .button-row .button,
  .page-contact #booking-submit-button {
    width: 100%;
  }

  .page-contact .contact-side {
    grid-template-columns: 1fr;
    order: 3;
    gap: 0.75rem;
  }

  .page-contact .contact-side-card {
    padding: 1rem;
  }

  .page-contact .contact-calendar-card {
    order: 2;
    gap: 1rem;
    padding: 1rem;
  }

  .contact-followup-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-contact .contact-calendar-copy {
    gap: 0.75rem;
  }

  .page-contact .calendar-embed-shell,
  .page-contact .calendar-embed {
    min-height: 24rem;
  }

  .page-contact .calendar-embed-shell {
    padding: 0.55rem;
  }

  .page-home .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .page-home .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.75rem;
  }

  .page-home .brand img {
    width: 58px;
    height: 44px;
  }

  .page-home .brand small {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .page-home .brand strong {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  .page-home .nav {
    flex: 0 0 auto;
    width: auto;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .page-home .nav.is-collapsed .nav-panel {
    width: min(21.75rem, calc(100vw - 1rem));
  }

  .page-home .nav.is-collapsed .nav-phone {
    font-size: 1.04rem;
    letter-spacing: 0.04em;
  }

  .page-home .nav.is-collapsed .nav-email {
    font-size: 0.84rem;
  }

  .page-home .hero-shell {
    min-height: auto;
    padding: 1.35rem;
  }

  .page-home .hero-copy--home h1 {
    font-size: clamp(2.45rem, 11vw, 3.75rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .page-home .hero-locations {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .page-home .lead,
  .page-home .hero-summary,
  .page-home .copy,
  .page-home .section-head p,
  .page-home .section-head--light p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .page-home .divider {
    margin: 0.9rem 0 1rem;
  }

  .page-home .hero-tags {
    margin-top: 1.1rem;
    gap: 0.35rem;
  }

  .page-home .hero-tags li {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .page-home .hero-actions {
    margin-top: 1.2rem;
    gap: 0.7rem;
  }

  .page-home .hero-action {
    min-height: 3.15rem;
    padding: 0.9rem 1rem;
  }

  .page-home .hero-action span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .page-home .section-head h2,
  .page-home .section-head--light h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.02;
  }

  .page-home .quick-card p,
  .page-home .service-points li,
  .page-home .pricing-summary,
  .page-home .pricing-list li,
  .page-home .analysis-card p:last-child,
  .page-home .support-card p,
  .page-home .tool-copy p,
  .page-home .contact-side-card span {
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .page-home .service-card h3,
  .page-home .pricing-card h3,
  .page-home .analysis-card h3,
  .page-home .support-card h3,
  .page-home .tool-copy h3 {
    font-size: 1.42rem;
  }

  .page-home .pricing-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .page-home .price {
    font-size: 2.15rem;
  }

  .page-home .note-card {
    flex-basis: min(88vw, 17rem);
  }

  .page-home .tool-card .image-panel img {
    min-height: 13.2rem;
  }

  .page-home .contact-shell {
    gap: 1rem;
    padding: 1.25rem;
  }

  .page-home .action-row {
    flex-direction: column;
  }

  .page-home .action-row .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page-english .hero-copy--home h1,
  .page-topic.page-english .hero-copy--home h1,
  .page-topic.page-english .topic-hero-copy h1 {
    font-size: clamp(1.85rem, 10.4vw, 2.55rem);
  }

  .page-english .brand strong {
    font-size: 0.8rem;
  }

  .page-english .brand small {
    font-size: 0.6rem;
  }

  .page-english .hero-shell,
  .page-english .content-card,
  .page-english .route-card,
  .page-english .action-panel,
  .page-english .contact-form-card,
  .page-english .contact-calendar-card {
    border-radius: 18px;
  }

  .page-english .route-card p,
  .page-english .stack-list li,
  .page-english .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .page-english .nav.is-collapsed .nav-panel {
    width: min(21rem, calc(100vw - 0.9rem));
  }

  .page-contact .hero-shell {
    padding: 1rem 0.9rem;
  }

  .page-contact .hero-copy--home h1 {
    font-size: clamp(1.82rem, 11.5vw, 2.35rem);
  }

  .page-contact .contact-shell {
    padding: 0.85rem;
  }

  .page-contact .contact-form-card,
  .page-contact .contact-calendar-card {
    padding: 0.9rem;
  }

  .page-contact .calendar-embed-shell,
  .page-contact .calendar-embed {
    min-height: 21rem;
  }

  .page-home.js-section-motion .home-main > .section,
  .page-topic.js-section-motion .topic-main > .section {
    transform: translateY(1.2rem) rotateX(4deg);
  }

  .topic-hero-copy h1 {
    font-size: clamp(1.74rem, 9.6vw, 2.28rem);
  }

  .page-topic .hero-shell {
    padding: 1rem 0.82rem 0.92rem;
    max-width: 20.7rem;
  }

  .page-topic .hero-locations {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .page-topic .hero-summary {
    font-size: 0.78rem;
    line-height: 1.46;
    max-width: 16rem;
  }

  .page-topic .hero-tags li {
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }

  .page-topic .hero-actions {
    grid-template-columns: 1fr;
  }

  .page-topic .hero-action {
    min-height: 2.8rem;
    padding: 0.72rem 0.8rem;
  }

  .page-topic .hero-action span {
    font-size: 0.62rem;
  }

  .page-home .hero-copy--home h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .page-home .quick-surface,
  .page-home .contact-shell {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home.js-section-motion .home-main > .section,
  .page-topic.js-section-motion .topic-main > .section {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .page-home.js-section-motion .home-main > .section,
  .page-topic.js-section-motion .topic-main > .section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .intro-content {
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }

  .intro-brand {
    max-width: min(100%, 22rem);
  }

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

@media (max-width: 560px) {
  .intro-brand {
    width: 100%;
  }

  .intro-actions {
    width: 100%;
    justify-content: space-between;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.page-home .nav.is-collapsed .nav-toggle,
.page-topic .nav.is-collapsed .nav-toggle {
  display: inline-flex;
  position: relative;
  z-index: 64;
  justify-content: center;
  align-items: center;
  min-width: 4rem;
  min-height: 4rem;
  padding: 0.95rem;
  border-color: rgba(210, 222, 232, 0.28);
  background:
    linear-gradient(180deg, rgba(93, 111, 126, 0.52), rgba(61, 73, 87, 0.52)),
    rgba(39, 52, 66, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(12, 21, 33, 0.22);
  backdrop-filter: blur(12px);
}

.page-home .nav.is-collapsed .nav-toggle > span:first-child,
.page-topic .nav.is-collapsed .nav-toggle > span:first-child {
  display: none;
}

.page-home .header-inner:has(.nav.is-collapsed),
.page-topic .header-inner:has(.nav.is-collapsed) {
  min-height: 5.3rem;
  padding-block: 0.72rem;
  align-items: center;
}

.page-home .site-header:has(.nav.is-collapsed),
.page-topic .site-header:has(.nav.is-collapsed) {
  background:
    linear-gradient(90deg, rgba(24, 27, 36, 0.985), rgba(37, 56, 53, 0.96));
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(6, 10, 18, 0.22);
}

.page-home .brand,
.page-topic .brand {
  position: relative;
  flex: 0 0 auto;
  width: clamp(4.4rem, 6vw, 5.2rem);
  height: clamp(4.4rem, 6vw, 5.2rem);
  min-width: 0;
  gap: 0;
}

.page-home .brand::before,
.page-topic .brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(211, 218, 222, 0.72);
  border-radius: 999px;
  background:
    #000000
    url("/assets/images/Logo_InspectionsProSpections.jpg")
    center 46% / auto 80% no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.page-home .brand img,
.page-topic .brand img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  opacity: 0;
  box-shadow: none;
}

.page-home .header-inner:has(.nav.is-collapsed) .brand,
.page-topic .header-inner:has(.nav.is-collapsed) .brand {
  position: relative;
  z-index: 64;
  flex: 0 0 auto;
  width: clamp(4.8rem, 20vw, 5.45rem);
  height: clamp(4.8rem, 20vw, 5.45rem);
  min-width: 0;
}

.page-home .header-inner:has(.nav.is-collapsed) .brand::before,
.page-topic .header-inner:has(.nav.is-collapsed) .brand::before {
  background-position: center 46%;
  background-size: auto 80%;
}

.page-home .header-inner:has(.nav.is-collapsed) .brand img,
.page-topic .header-inner:has(.nav.is-collapsed) .brand img {
  width: 100%;
  height: 100%;
}

.page-home .header-inner:has(.nav.is-collapsed) .nav-toggle-bars,
.page-topic .header-inner:has(.nav.is-collapsed) .nav-toggle-bars {
  gap: 0.28rem;
}

.page-home .header-inner:has(.nav.is-collapsed) .nav-toggle-bars span,
.page-topic .header-inner:has(.nav.is-collapsed) .nav-toggle-bars span {
  width: 1.35rem;
  height: 0.18rem;
}

.page-home .nav.is-collapsed.is-open .nav-toggle,
.page-topic .nav.is-collapsed.is-open .nav-toggle {
  position: fixed;
  inset: calc(env(safe-area-inset-top) + 0.45rem) auto auto 50%;
  z-index: 72;
  width: 2.7rem;
  max-width: 2.7rem;
  min-width: 2.7rem;
  height: 2.7rem;
  max-height: 2.7rem;
  min-height: 2.7rem;
  flex: 0 0 2.7rem;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.page-home .nav.is-collapsed.is-open .nav-toggle:hover,
.page-home .nav.is-collapsed.is-open .nav-toggle:focus-visible,
.page-topic .nav.is-collapsed.is-open .nav-toggle:hover,
.page-topic .nav.is-collapsed.is-open .nav-toggle:focus-visible {
  background: transparent;
  color: #ffffff;
  transform: translateX(-50%);
}

.page-home .nav.is-collapsed.is-open .nav-toggle-bars span:nth-child(1),
.page-topic .nav.is-collapsed.is-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.page-home .nav.is-collapsed.is-open .nav-toggle-bars span:nth-child(3),
.page-topic .nav.is-collapsed.is-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-home .nav.is-collapsed::before,
.page-topic .nav.is-collapsed::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 12, 20, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.page-home .nav.is-collapsed.is-open::before,
.page-topic .nav.is-collapsed.is-open::before {
  opacity: 1;
}

.page-home .nav .nav-meta,
.page-topic .nav .nav-meta {
  display: none;
}

.page-home .nav.is-collapsed .nav-panel,
.page-topic .nav.is-collapsed .nav-panel {
  position: fixed;
  inset: 0;
  z-index: 68;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "logo"
    "links"
    "lang"
    "contact"
    "meta";
  align-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  padding:
    calc(env(safe-area-inset-top) + 4.75rem)
    clamp(1.2rem, 6vw, 2rem)
    calc(max(1.5rem, env(safe-area-inset-bottom) + 1.1rem));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at top center, rgba(0, 255, 209, 0.08), transparent 15rem),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.05), transparent 18rem),
    linear-gradient(180deg, rgba(25, 28, 39, 0.995), rgba(31, 58, 56, 0.995));
  box-shadow: none;
  backdrop-filter: none;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.9rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.page-home .nav.is-collapsed .nav-panel::-webkit-scrollbar,
.page-topic .nav.is-collapsed .nav-panel::-webkit-scrollbar {
  display: none;
}

.page-home .nav.is-collapsed .nav-panel::before,
.page-topic .nav.is-collapsed .nav-panel::before {
  content: "";
  grid-area: logo;
  position: relative;
  inset: auto;
  width: clamp(8.9rem, 38vw, 10.4rem);
  height: clamp(8.9rem, 38vw, 10.4rem);
  justify-self: center;
  margin: 0 auto 0.65rem;
  border: 1.5px solid rgba(211, 218, 222, 0.72);
  border-radius: 999px;
  background:
    #000000
    url("/assets/images/Logo_InspectionsProSpections.jpg")
    center 46% / auto 80% no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 36px rgba(15, 21, 30, 0.14);
}

.page-home .nav.is-collapsed.is-open .nav-panel,
.page-topic .nav.is-collapsed.is-open .nav-panel {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.page-home .nav.is-collapsed .nav-links,
.page-topic .nav.is-collapsed .nav-links {
  grid-area: links;
  display: grid;
  justify-self: center;
  justify-items: center;
  gap: 0.9rem;
  width: min(100%, 18rem);
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .nav.is-collapsed .nav-links a,
.page-topic .nav.is-collapsed .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.04rem, 4.6vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(53, 78, 118, 0.16);
}

.page-home .nav.is-collapsed .nav-links a:hover,
.page-home .nav.is-collapsed .nav-links a:focus-visible,
.page-topic .nav.is-collapsed .nav-links a:hover,
.page-topic .nav.is-collapsed .nav-links a:focus-visible {
  background: transparent;
  color: #ffffff;
  opacity: 0.82;
  transform: none;
}

.page-home .nav.is-collapsed .lang-switch,
.page-topic .nav.is-collapsed .lang-switch {
  grid-area: lang;
  justify-self: center;
  width: auto;
  margin-top: 0;
  padding: 0.3rem;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.page-home:has(.nav.is-collapsed.is-open) .brand,
.page-topic:has(.nav.is-collapsed.is-open) .brand,
.page-home:has(.nav.is-collapsed.is-open) .lead-assistant,
.page-topic:has(.nav.is-collapsed.is-open) .lead-assistant {
  opacity: 0;
  pointer-events: none;
}

.page-home .nav.is-collapsed .lang-switch a,
.page-topic .nav.is-collapsed .lang-switch a {
  min-width: 3rem;
  min-height: 2.6rem;
  padding-inline: 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.page-home .nav.is-collapsed .lang-switch a[aria-current="true"],
.page-topic .nav.is-collapsed .lang-switch a[aria-current="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.page-home .nav.is-collapsed .nav-contact,
.page-topic .nav.is-collapsed .nav-contact {
  grid-area: contact;
  display: grid;
  justify-self: center;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 16rem);
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .nav.is-collapsed .nav-contact a,
.page-topic .nav.is-collapsed .nav-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  text-transform: none;
}

.page-home .nav.is-collapsed .nav-phone,
.page-home .nav.is-collapsed .nav-email,
.page-topic .nav.is-collapsed .nav-phone,
.page-topic .nav.is-collapsed .nav-email {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
}

.page-home .nav.is-collapsed .nav-reserve,
.page-topic .nav.is-collapsed .nav-reserve {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .nav.is-collapsed .nav-reserve:hover,
.page-home .nav.is-collapsed .nav-reserve:focus-visible,
.page-topic .nav.is-collapsed .nav-reserve:hover,
.page-topic .nav.is-collapsed .nav-reserve:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transform: none;
}

.page-home .nav.is-collapsed .nav-meta,
.page-topic .nav.is-collapsed .nav-meta {
  grid-area: meta;
  display: grid;
  justify-self: center;
  justify-items: center;
  gap: 0.65rem;
  width: min(100%, 22rem);
  margin-top: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.page-home .nav.is-collapsed .nav-social,
.page-topic .nav.is-collapsed .nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  flex-wrap: wrap;
  width: 100%;
}

.page-home .nav.is-collapsed .nav-social-link,
.page-topic .nav.is-collapsed .nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #ffffff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.page-home .nav.is-collapsed .nav-social-link svg,
.page-topic .nav.is-collapsed .nav-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.page-home .nav.is-collapsed .nav-social-link--network,
.page-topic .nav.is-collapsed .nav-social-link--network {
  width: auto;
  min-width: 3.45rem;
  padding-inline: 0.9rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.page-home .nav.is-collapsed .nav-social-link:hover,
.page-home .nav.is-collapsed .nav-social-link:focus-visible,
.page-topic .nav.is-collapsed .nav-social-link:hover,
.page-topic .nav.is-collapsed .nav-social-link:focus-visible {
  border-color: rgba(0, 255, 209, 0.34);
  background: rgba(0, 255, 209, 0.12);
  color: #ffffff;
  transform: none;
}

.page-home .nav.is-collapsed .nav-meta__copy,
.page-home .nav.is-collapsed .nav-meta__credit,
.page-topic .nav.is-collapsed .nav-meta__copy,
.page-topic .nav.is-collapsed .nav-meta__credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.page-home .nav.is-collapsed .nav-meta__credit a,
.page-home .nav.is-collapsed .nav-meta__policies a,
.page-topic .nav.is-collapsed .nav-meta__credit a,
.page-topic .nav.is-collapsed .nav-meta__policies a {
  color: #ffffff;
}

.page-home .nav.is-collapsed .nav-meta__credit a:hover,
.page-home .nav.is-collapsed .nav-meta__credit a:focus-visible,
.page-home .nav.is-collapsed .nav-meta__policies a:hover,
.page-home .nav.is-collapsed .nav-meta__policies a:focus-visible,
.page-topic .nav.is-collapsed .nav-meta__credit a:hover,
.page-topic .nav.is-collapsed .nav-meta__credit a:focus-visible,
.page-topic .nav.is-collapsed .nav-meta__policies a:hover,
.page-topic .nav.is-collapsed .nav-meta__policies a:focus-visible {
  color: rgba(0, 255, 209, 0.96);
}

.page-home .nav.is-collapsed .nav-meta__policies,
.page-topic .nav.is-collapsed .nav-meta__policies {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
}

.page-home .nav.is-collapsed .nav-meta__policies a,
.page-topic .nav.is-collapsed .nav-meta__policies a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-decoration: none;
}

.page-english .nav.is-collapsed .nav-links a {
  font-size: clamp(0.96rem, 4.2vw, 1.12rem);
  line-height: 1.3;
}

@media (max-width: 540px) {
  .page-home .nav.is-collapsed .nav-panel,
  .page-topic .nav.is-collapsed .nav-panel {
    padding:
      calc(env(safe-area-inset-top) + 3.2rem)
      1.05rem
      calc(max(1.25rem, env(safe-area-inset-bottom) + 0.95rem));
  }

  .page-home .nav.is-collapsed .nav-panel::before,
  .page-topic .nav.is-collapsed .nav-panel::before {
    width: 8.2rem;
    height: 8.2rem;
  }

  .page-home .nav.is-collapsed .nav-links,
  .page-topic .nav.is-collapsed .nav-links {
    width: min(100%, 15.5rem);
    gap: 0.82rem;
  }

  .page-home .nav.is-collapsed .nav-links a,
  .page-topic .nav.is-collapsed .nav-links a {
    font-size: 0.95rem;
  }

  .page-home .nav.is-collapsed .nav-contact,
  .page-topic .nav.is-collapsed .nav-contact {
    width: min(100%, 14.75rem);
  }

  .page-home .nav.is-collapsed .nav-meta,
  .page-topic .nav.is-collapsed .nav-meta {
    width: min(100%, 18rem);
    gap: 0.58rem;
  }

  .page-home .nav.is-collapsed .nav-social,
  .page-topic .nav.is-collapsed .nav-social {
    gap: 0.62rem;
  }

  .page-home .nav.is-collapsed .nav-social-link,
  .page-topic .nav.is-collapsed .nav-social-link {
    width: 2.65rem;
    height: 2.65rem;
  }

  .page-home .nav.is-collapsed .nav-social-link--network,
  .page-topic .nav.is-collapsed .nav-social-link--network {
    min-width: 3.2rem;
    padding-inline: 0.78rem;
    font-size: 0.64rem;
  }

  .page-home .nav.is-collapsed .nav-phone,
  .page-home .nav.is-collapsed .nav-email,
  .page-topic .nav.is-collapsed .nav-phone,
  .page-topic .nav.is-collapsed .nav-email {
    font-size: 0.92rem;
  }

  .page-home .nav.is-collapsed .nav-meta__copy,
  .page-home .nav.is-collapsed .nav-meta__credit,
  .page-home .nav.is-collapsed .nav-meta__policies a,
  .page-topic .nav.is-collapsed .nav-meta__copy,
  .page-topic .nav.is-collapsed .nav-meta__credit,
  .page-topic .nav.is-collapsed .nav-meta__policies a {
    font-size: 0.68rem;
  }

  .page-english .nav.is-collapsed .nav-links a {
    font-size: 0.88rem;
  }
}

.page-topic:not(.page-error) .hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 26rem);
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  min-height: auto;
}

.page-topic:not(.page-error) .hero-shell::after {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 168, 20, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.page-topic:not(.page-error) .hero-copy--home {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: 100%;
  max-width: none;
}

.page-topic:not(.page-error) .hero-background {
  position: relative;
  inset: auto;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(21.5rem, 30vw, 30.5rem);
  border-radius: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(116, 255, 205, 0.18);
  box-shadow: 0 30px 64px rgba(4, 6, 11, 0.34);
  object-fit: cover;
  filter: none;
  transform: none;
}

.page-topic:not(.page-error) .topic-hero-copy h1 {
  max-width: 8.6ch;
}

.page-topic:not(.page-error) .hero-summary {
  max-width: 32rem;
}

.page-topic:not(.page-error) .hero-actions {
  width: min(100%, 34rem);
}

@media (max-width: 860px) {
  .page-topic:not(.page-error) .hero-shell {
    grid-template-columns: minmax(0, 1fr) clamp(6.9rem, 28vw, 9.5rem);
    align-items: start;
    gap: clamp(0.72rem, 2.2vw, 1rem);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.05rem clamp(0.34rem, 1.9vw, 0.65rem) 1.02rem;
    box-sizing: border-box;
    padding-inline-end: clamp(0.72rem, 2.4vw, 1.08rem);
  }

  .page-topic:not(.page-error) .topic-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 7.4vw, 2.28rem);
    line-height: 0.94;
  }

  .page-topic:not(.page-error) .hero-background {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    width: 100%;
    max-width: clamp(6.9rem, 28vw, 9.5rem);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: clamp(0.92rem, 2vw, 1rem);
  }

  .page-topic:not(.page-error) .hero-summary,
  .page-topic:not(.page-error) .lead {
    width: 100%;
    max-width: none;
  }

  .page-topic:not(.page-error) .hero-actions {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
  }

  .page-topic:not(.page-error) .hero-actions .hero-action:last-child {
    grid-column: auto;
  }
}
