@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.72);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --muted-soft: rgba(255, 255, 255, 0.56);
  --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.68);
  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.72);
  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.58) !important;
  font-size: 0.85rem !important;
}

.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;
}

.page-home .nav.is-collapsed .nav-panel,
.page-topic .nav.is-collapsed .nav-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 50;
  display: none;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(33, 35, 45, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.page-home .nav.is-collapsed.is-open .nav-panel,
.page-topic .nav.is-collapsed.is-open .nav-panel {
  display: flex;
}

.page-home .nav.is-collapsed .nav-links,
.page-topic .nav.is-collapsed .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.page-home .nav.is-collapsed .lang-switch,
.page-topic .nav.is-collapsed .lang-switch {
  width: 100%;
  justify-self: stretch;
  justify-content: center;
}

.page-home .nav.is-collapsed .nav-links a,
.page-topic .nav.is-collapsed .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.page-home .nav.is-collapsed .nav-contact,
.page-topic .nav.is-collapsed .nav-contact {
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding-top: 0.15rem;
  justify-self: stretch;
}

.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 {
  text-align: center;
}

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

.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 {
  border-collapse: separate;
  border-spacing: 0;
  width: auto;
  max-width: none;
  margin-left: 0;
  border-radius: 0;
  overflow: visible;
  flex: 0 0 auto;
  grid-column: 4;
  justify-self: end;
  min-width: max-content;
}

.nav-contact td {
  padding: 0;
}

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

.nav-phone,
.nav-email {
  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-phone:hover,
.nav-phone:focus-visible,
.nav-email:hover,
.nav-email:focus-visible {
  color: var(--accent-bright);
}

.nav-phone:focus-visible,
.nav-email: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);
}

.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;
}

.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 {
  perspective: 1400px;
}

.page-topic .topic-main {
  display: block;
  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);
}

.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;
}

.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.72);
}

.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);
}

@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;
  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: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.66);
  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.58);
}

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

.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;
}

.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;
}

.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;
}

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

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  color: var(--muted-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-copy,
.footer-credit {
  width: 100%;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1rem;
  width: 100%;
  color: var(--muted-soft);
}

.footer-policy-links a {
  color: var(--muted-soft);
  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;
  gap: 0.8rem;
  width: 100%;
  padding-top: 0.2rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 209, 0.7);
  background: rgba(0, 255, 209, 0.08);
  color: var(--accent-bright);
}

.footer-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  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) {
  .page-home .header-inner,
  .page-topic .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .page-home .brand,
  .page-topic .brand {
    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 {
    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(20.5rem, calc(100vw - 2rem));
  }

  .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;
  }
}

@media (max-width: 720px) {
  .privacy-popup {
    padding: 0.85rem;
  }

  .privacy-popup__card {
    width: min(100%, 25.5rem);
    border-radius: 22px;
    padding: 0.95rem 0.95rem 0.9rem;
  }

  .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) {
  .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(22rem, calc(100vw - 1.2rem));
  }

  .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(20.5rem, calc(100vw - 2rem));
  }

  .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.4rem;
  }

  .topic-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10.5vw, 3.8rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .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.98rem;
    line-height: 1.65;
  }

  .page-topic .hero-actions {
    margin-top: 1.2rem;
    gap: 0.7rem;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .page-topic .hero-action {
    width: 100%;
  }

  .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);
  }

  .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(20.5rem, calc(100vw - 2rem));
  }

  .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(19.5rem, 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(2.1rem, 12vw, 3.1rem);
  }

  .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: 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;
  }
}
