:root {
  color-scheme: dark;
  --bg: #030507;
  --bg-soft: #080d12;
  --surface: #0b1017;
  --surface-2: #101720;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(168, 224, 12, 0.42);
  --text: #f7fbff;
  --muted: #aeb9c6;
  --muted-2: #7f8b98;
  --green: #a7e000;
  --green-2: #78b900;
  --blue: #0997ff;
  --blue-2: #00c2ff;
  --danger: #ff5a5f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

/* Cambrai has no WhatsApp channel. Keep two primary mobile actions balanced. */
@media (max-width: 760px) {
  .mobile-sticky.mobile-sticky--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.final-cta-v4-actions.final-cta-v4-actions--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reviews-v3-layout.reviews-v3-layout--summary-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.reviews-v3-layout--summary-only .reviews-v3-summary {
  text-align: center;
}

.reviews-v3-layout--summary-only .reviews-v3-score,
.reviews-v3-layout--summary-only .review-google-link {
  margin-inline: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #010203 0%, #050a0f 46%, #030507 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(167, 224, 0, 0.92);
  outline-offset: 3px;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--green);
  color: #091005;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 3, 6, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-link img {
  width: 52px;
  height: auto;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-wordmark strong {
  color: #fff;
  font-size: 1.58rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-wordmark span {
  color: var(--blue-2);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.nav-menu button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #e9f0f7;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu button:hover,
.nav-menu a:focus-visible,
.nav-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 12, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  justify-content: space-between;
  width: 100%;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: #effcff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.phone-pill svg {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  background: var(--green);
  color: #081000;
  text-decoration: none;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(167, 224, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #b8f018;
  box-shadow: 0 18px 38px rgba(167, 224, 0, 0.3);
}

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

.btn.secondary {
  background: transparent;
  color: #f8fbff;
  border-color: rgba(167, 224, 0, 0.55);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(167, 224, 0, 0.08);
}

.btn.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #021521;
  box-shadow: 0 14px 32px rgba(9, 151, 255, 0.22);
}

.btn.whatsapp {
  background: #25d366;
  color: #041205;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.btn.small {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 0.84rem;
}

.section {
  padding: 54px 0;
}

.section.tight {
  padding: 30px 0;
}

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

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.section-title,
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
.section-title {
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6.1vw, 5.4rem);
  line-height: 0.94;
  margin-top: 18px;
}

h2.section-title {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 0.98;
}

.green-text {
  color: var(--green);
}

.blue-text {
  color: var(--blue);
}

.lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: #d7e0ea;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 46px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.92) 0%, rgba(3, 5, 7, 0.74) 42%, rgba(3, 5, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 151, 255, 0.12) 0%, transparent 38%, rgba(167, 224, 0, 0.09) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 26px;
}

.hero-copy {
  padding: 24px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-item {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 13, 18, 0.76);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
}

.proof-item strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.stars {
  display: inline-flex;
  color: var(--green);
  letter-spacing: 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-phone {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: min(70vw, 440px);
  border-radius: 34px;
  filter: drop-shadow(0 38px 55px rgba(0, 0, 0, 0.7));
  transform: rotate(-6deg);
}

.hero-chip {
  position: absolute;
  border: 1px solid rgba(0, 194, 255, 0.55);
  background: rgba(5, 18, 31, 0.78);
  box-shadow: 0 0 28px rgba(9, 151, 255, 0.2);
}

.hero-chip.one {
  width: 132px;
  height: 88px;
  right: 36%;
  top: 16%;
  transform: rotate(7deg);
}

.hero-chip.two {
  width: 90px;
  height: 128px;
  right: 4%;
  top: 20%;
  transform: rotate(-11deg);
}

.hero-chip.three {
  width: 168px;
  height: 56px;
  right: 19%;
  bottom: 4%;
  transform: rotate(5deg);
}

.hero-glow-line {
  position: absolute;
  right: 6%;
  top: 49%;
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  box-shadow: 0 0 22px rgba(167, 224, 0, 0.6);
  transform: rotate(-15deg);
}

.brand-strip {
  position: relative;
  margin-top: -1px;
  padding-bottom: 26px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 11, 16, 0.88);
  box-shadow: var(--shadow);
}

.brand-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 9px;
  padding: 14px 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

.brand-card:last-child {
  border-right: 0;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.brand-logo {
  min-height: 38px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 1.35rem;
}

.brand-card small {
  color: #f5f8fc;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 8, 12, 0.78);
  box-shadow: var(--shadow);
}

.process-title {
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 950;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.process-step {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 34px);
  width: calc(100% - 50px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px);
  opacity: 0.75;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #061002;
  font-size: 1.3rem;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(167, 224, 0, 0.22);
}

.process-step strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.98rem;
  line-height: 1.15;
}

.process-step span {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr 1.1fr;
  gap: 10px;
}

.feature-card,
.service-card,
.review-card,
.shop-card,
.contact-card,
.faq-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 14, 20, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-card h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.shop-card p,
.contact-card p,
.quote-card p,
.faq-card p {
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  min-height: 260px;
  display: grid;
  grid-template-rows: 142px 1fr;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  opacity: 0.88;
}

.service-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: -38px;
  border-radius: var(--radius);
  background: var(--green);
  color: #071000;
  box-shadow: 0 14px 30px rgba(167, 224, 0, 0.22);
}

.service-card h3,
.review-card h3,
.shop-card h3,
.contact-card h3,
.quote-card h3 {
  text-transform: uppercase;
  font-size: 1.18rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 950;
  font-size: 0.86rem;
}

.review-layout {
  display: grid;
  grid-template-columns: 0.92fr repeat(3, 1fr);
  gap: 10px;
}

.review-summary,
.review-card {
  min-height: 210px;
  padding: 22px;
}

.review-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.score {
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.review-card {
  display: grid;
  gap: 12px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 224, 0, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(167, 224, 0, 0.22), rgba(9, 151, 255, 0.14));
  color: #fff;
  font-weight: 950;
}

.review-card blockquote {
  margin: 0;
  color: #e8eef5;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-card {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
}

.shop-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.48));
}

.visit-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(167, 224, 0, 0.15), rgba(9, 151, 255, 0.1));
  box-shadow: var(--shadow);
}

.visit-strip h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.8rem);
  text-transform: uppercase;
}

.visit-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-row svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(167, 224, 0, 0.32);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(167, 224, 0, 0.06);
}

.contact-row strong {
  display: block;
  color: #fff;
}

.map-frame {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
}

.map-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  text-decoration: none;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
}

.map-placeholder > * {
  position: relative;
  z-index: 1;
}

.map-placeholder svg {
  color: var(--green);
}

.map-placeholder strong {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.quote-section {
  padding-bottom: 84px;
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: start;
}

.quote-card {
  padding: 24px;
}

.quote-intro {
  display: grid;
  gap: 14px;
}

.quote-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.quote-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: #dfe8f2;
}

.quote-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(167, 224, 0, 0.28);
}

.quote-form {
  display: grid;
  gap: 18px;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.step-tab {
  min-height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.step-tab.is-active,
.step-tab.is-complete {
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.form-step {
  display: none;
  gap: 16px;
}

.form-step.is-active {
  display: grid;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label,
.field-label {
  color: #f3f7fb;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 6, 10, 0.78);
  color: #fff;
  padding: 12px 13px;
}

.form-field textarea {
  resize: vertical;
  min-height: 118px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #74808d;
}

.phone-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice-btn {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
}

.choice-btn.is-selected {
  border-color: var(--green);
  background: rgba(167, 224, 0, 0.13);
  color: #fff;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-actions .btn {
  min-width: 150px;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.consent-line input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
}

.form-message {
  min-height: 24px;
  color: var(--muted);
  font-weight: 800;
}

.form-message.is-error {
  color: #ffd3d4;
}

.form-message.is-success {
  color: #d9ff9a;
}

.recap-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.recap-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  color: #e8eff7;
}

.recap-row span:first-child {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-card {
  padding: 0;
}

.faq-card summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-card p {
  margin: 0;
  padding: 0 18px 18px;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-links a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  text-decoration: none;
}

.seo-links a:hover {
  color: var(--green);
}

.site-footer {
  padding: 34px 0 94px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #020304;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 52px;
  height: auto;
}

.footer-col h3 {
  color: var(--green);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
}

.footer-col a {
  display: inline-flex;
  margin: 4px 0;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-col a.btn {
  color: #081000;
}

.footer-col a.btn:hover {
  color: #081000;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu-wrap {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 4, 7, 0.98);
  }

  .nav-menu-wrap.is-open {
    display: block;
  }

  .nav-menu {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .nav-menu a,
  .nav-menu button {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .phone-pill {
    display: none;
  }

  .nav-actions .btn {
    flex: 1;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

  .hero-phone {
    right: 12%;
    width: min(74vw, 360px);
  }

  .hero-proof,
  .brand-grid,
  .service-layout,
  .review-layout,
  .shop-grid,
  .contact-grid,
  .quote-shell,
  .footer-grid,
  .seo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .review-summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .brand-link img {
    width: 44px;
  }

  .brand-wordmark strong {
    font-size: 1.22rem;
  }

  .brand-wordmark span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu-wrap {
    inset: 70px 0 auto 0;
  }

  .hero {
    padding: 28px 0 20px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 5, 7, 0.9) 0%, rgba(3, 5, 7, 0.74) 56%, rgba(3, 5, 7, 0.35) 100%),
      linear-gradient(180deg, rgba(9, 151, 255, 0.12), rgba(167, 224, 0, 0.06));
  }

  h1 {
    font-size: clamp(2.48rem, 13vw, 4.35rem);
  }

  .lead {
    font-size: 1.05rem;
  }

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

  .hero-proof,
  .brand-grid,
  .process-steps,
  .service-layout,
  .review-layout,
  .shop-grid,
  .contact-grid,
  .quote-shell,
  .form-grid,
  .choice-grid,
  .footer-grid,
  .seo-links {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 9px;
    margin-top: 22px;
  }

  .proof-item {
    min-height: 66px;
  }

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

  .hero-phone {
    right: 3%;
    bottom: 0;
    width: min(86vw, 310px);
  }

  .hero-chip.one {
    right: 48%;
    top: 16%;
  }

  .hero-chip.two {
    right: 4%;
    top: 10%;
  }

  .hero-chip.three {
    right: 20%;
    bottom: 0;
  }

  .brand-grid {
    border-radius: var(--radius);
  }

  .brand-card {
    min-height: 82px;
    grid-template-columns: 54px 1fr;
    justify-items: start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-card:last-child {
    border-bottom: 0;
  }

  .process-panel {
    padding: 20px;
  }

  .process-title {
    text-align: left;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    text-align: left;
  }

  .process-step:not(:last-child)::after {
    left: 29px;
    top: 58px;
    width: 2px;
    height: calc(100% - 22px);
    background: repeating-linear-gradient(180deg, var(--green) 0 6px, transparent 6px 12px);
  }

  .service-card {
    grid-template-rows: 150px 1fr;
  }

  .visit-strip,
  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-card img {
    order: -1;
    height: 150px;
  }

  .section,
  .section.tight {
    padding: 38px 0;
  }

  .section-head {
    display: grid;
  }

  .visit-actions,
  .contact-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 300px;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .recap-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .mobile-sticky.is-over-hero {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
  }

  .mobile-sticky .btn {
    min-height: 52px;
    padding: 8px 6px;
    font-size: clamp(0.72rem, 3vw, 0.9rem);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  }
}

@media (max-width: 430px) {
  .mobile-sticky .btn {
    gap: 5px;
  }

  .btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-chip.one,
  .hero-chip.two {
    opacity: 0.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .mobile-sticky {
    transition: none !important;
  }
}

/* Visual pass aligned with the approved DR Phone reference. */
body {
  background: #020304;
}

.container {
  width: min(calc(100% - 48px), 1200px);
}

h1,
h2,
h3,
.brand-wordmark,
.btn,
.nav-menu {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.96);
}

.nav {
  min-height: 70px;
  gap: 18px;
}

.brand-link {
  gap: 8px;
}

.brand-link > img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 3px;
}

.brand-wordmark {
  gap: 0;
}

.brand-wordmark strong {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 0.86;
}

.brand-wordmark strong span {
  color: var(--blue);
  font-size: 1.85rem;
  letter-spacing: 0;
}

.brand-wordmark small {
  color: #47baff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0;
  text-align: right;
}

.nav-menu {
  gap: 0;
}

.nav-menu a,
.nav-menu button {
  min-height: 38px;
  padding: 8px 9px;
  font-size: 0.8rem;
  font-weight: 500;
}

.phone-pill {
  font-size: 0.82rem;
}

.btn {
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 500;
}

.btn.small {
  min-height: 40px;
  padding: 10px 15px;
}

.hero {
  min-height: 0;
  padding: 26px 0 20px;
  background: #010203;
}

.hero::before {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(400px, 0.78fr) minmax(590px, 1.22fr);
  gap: 0;
  min-height: 500px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 24px 0 16px;
}

.hero-kicker {
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(168, 235, 0, 0.42);
  border-radius: 4px;
  background: rgba(168, 235, 0, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero h1 {
  max-width: 540px;
  margin-top: 15px;
  font-size: 4.25rem;
  font-weight: 500;
  line-height: 0.92;
}

.lead {
  max-width: 515px;
  margin-top: 17px;
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-actions {
  gap: 12px;
  margin-top: 22px;
}

.hero-actions .btn {
  min-width: 180px;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-quick-links a {
  color: var(--blue-2);
  font-weight: 850;
  text-decoration: none;
}

.hero-quick-links a::after {
  content: " →";
  color: var(--green);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 405px;
  margin-left: -120px;
  overflow: visible;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 25%;
  background: linear-gradient(90deg, #010203, transparent);
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  top: 50%;
  left: -195px;
  right: auto;
  bottom: auto;
  width: 970px;
  max-width: none;
  border-radius: 0;
  filter: none;
  transform: translateY(-50%);
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(820px, 100%);
  margin: 12px 0 0;
  position: relative;
  z-index: 4;
}

.proof-item {
  min-height: 62px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
}

.proof-icon {
  width: 35px;
  height: 35px;
}

.proof-item strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}

.proof-item span {
  font-size: 0.72rem;
}

.brand-strip {
  padding: 0 0 18px;
  background: #020304;
}

.brand-grid {
  border-color: rgba(255, 255, 255, 0.14);
  background: #05080c;
}

.brand-card {
  min-height: 92px;
  gap: 5px;
  padding: 10px 6px;
}

.brand-logo {
  width: 100%;
  height: 44px;
  min-height: 31px;
  overflow: hidden;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.38rem;
  font-weight: 500;
}

.brand-logo img,
.brand-logo svg {
  display: block;
  flex: none;
}

.brand-logo-apple {
  width: 36px;
  height: 42px;
}

.brand-logo-samsung {
  width: 98px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.brand-logo-google {
  width: 40px;
  height: 40px;
}

.brand-logo-xiaomi,
.brand-logo-oneplus {
  width: 42px;
  height: 42px;
}

.brand-logo-honor {
  width: 98px;
  height: auto;
  filter: invert(52%) sepia(99%) saturate(2377%) hue-rotate(164deg) brightness(96%) contrast(101%);
}

.brand-logo-oppo {
  width: 98px;
  height: auto;
  filter: invert(46%) sepia(91%) saturate(644%) hue-rotate(102deg) brightness(91%) contrast(101%);
}

.brand-logo-more {
  color: #f7f9fc;
}

.brand-card small {
  font-size: 0.66rem;
  font-weight: 850;
}

.section,
.section.tight {
  padding: 20px 0;
}

.section-kicker {
  font-size: 0.69rem;
  letter-spacing: 0.05em;
}

.section-title,
h2.section-title {
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 0.95;
}

.process-panel {
  padding: 18px 24px 16px;
  background: #030506;
}

.process-title {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 500;
}

.process-steps {
  gap: 8px;
}

.process-step {
  gap: 8px;
}

.process-step:not(:last-child)::after {
  top: 35px;
  left: calc(50% + 48px);
  width: calc(100% - 86px);
}

.step-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.step-number {
  width: 34px;
  height: 34px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.step-symbol {
  display: grid;
  place-items: center;
  color: var(--green);
}

.process-step strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.process-step span {
  font-size: 0.76rem;
}

.process-cta {
  margin-top: 16px;
}

.service-layout {
  grid-template-columns: 0.95fr repeat(4, 1fr);
  gap: 8px;
}

.feature-card,
.service-card,
.review-card,
.shop-card {
  background: #080b0f;
}

.feature-card,
.service-card {
  min-height: 290px;
}

.feature-card {
  padding: 18px;
}

.feature-card h2 {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
}

.feature-card p,
.service-card p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-card {
  grid-template-rows: 135px 1fr;
}

.service-card img {
  height: 135px;
  opacity: 1;
}

.service-body {
  align-content: start;
  gap: 7px;
  padding: 13px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-top: -31px;
}

.service-card h3,
.review-card h3,
.shop-card h3 {
  font-size: 1rem;
  font-weight: 500;
}

.text-link {
  font-size: 0.72rem;
}

.review-layout {
  gap: 8px;
}

.review-summary,
.review-card {
  min-height: 225px;
  padding: 18px;
}

.review-summary .section-title {
  font-size: 2.15rem;
}

.review-summary p,
.review-card p,
.review-card blockquote {
  font-size: 0.78rem;
}

.score {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 2.7rem;
  font-weight: 500;
}

.avatar {
  width: 38px;
  height: 38px;
  font-size: 0.78rem;
}

.shop-grid {
  gap: 10px;
}

.shop-card {
  min-height: 240px;
  display: block;
  padding: 22px;
  isolation: isolate;
}

.shop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.18) 62%, transparent 76%);
}

.shop-card > div {
  position: relative;
  z-index: 3;
  width: 52%;
}

.shop-card h3 {
  font-size: 1.85rem;
  line-height: 1;
}

.shop-card p {
  font-size: 0.8rem;
}

.shop-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.shop-card picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.shop-card:first-child img {
  filter: brightness(1.2);
}

.visit-strip {
  padding: 18px 20px;
}

.visit-strip h2 {
  font-size: 2.1rem;
  font-weight: 500;
}

.site-footer {
  padding-top: 28px;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-visual {
    margin-left: -80px;
  }

  .hero-phone {
    left: -220px;
    width: 880px;
  }

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

  .feature-card {
    grid-column: auto;
  }

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

  .review-summary {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), 1200px);
  }

  .hero {
    padding-top: 18px;
  }

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

  .hero-copy {
    padding: 10px 0 0;
  }

  .hero h1 {
    max-width: 580px;
    font-size: 3.45rem;
  }

  .lead {
    max-width: 610px;
  }

  .hero-visual {
    min-height: 310px;
    margin: -20px 0 0;
    overflow: hidden;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-phone {
    top: 50%;
    left: 50%;
    width: 760px;
    transform: translate(-47%, -50%);
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: -8px 0 0;
    gap: 8px 18px;
  }

  .brand-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 130px;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .brand-card {
    min-height: 82px;
    grid-template-columns: 1fr;
    justify-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

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

  .process-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .service-layout {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 45vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
  }

  .review-layout {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 60vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
  }

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

@media (max-width: 560px) {
  .nav {
    min-height: 66px;
  }

  .brand-link > img {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark strong {
    font-size: 1.3rem;
  }

  .brand-wordmark strong span {
    font-size: 1.48rem;
  }

  .brand-wordmark small {
    font-size: 0.52rem;
  }

  .nav-menu-wrap {
    inset: 66px 0 auto;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .lead {
    font-size: 0.96rem;
  }

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

  .hero-actions .btn {
    min-width: 0;
    padding-inline: 10px;
  }

  .hero-quick-links span {
    flex-basis: 100%;
  }

  .hero-visual {
    min-height: 230px;
    margin-top: -5px;
  }

  .hero-phone {
    width: 610px;
    transform: translate(-46%, -50%);
  }

  .hero-proof {
    margin-top: 0;
  }

  .proof-item {
    grid-template-columns: 34px 1fr;
  }

  .proof-icon {
    width: 30px;
    height: 30px;
  }

  .proof-icon svg {
    width: 18px;
    height: 18px;
  }

  .proof-item strong {
    font-size: 0.68rem;
  }

  .proof-item span {
    font-size: 0.64rem;
  }

  .process-panel {
    padding: 16px;
  }

  .process-title {
    text-align: center;
    font-size: 1.65rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    grid-template-columns: 76px 1fr;
    justify-items: start;
    text-align: left;
  }

  .step-symbol svg {
    width: 26px;
    height: 26px;
  }

  .service-layout {
    grid-auto-columns: 82vw;
  }

  .review-layout {
    grid-auto-columns: 82vw;
  }

  .shop-card {
    min-height: 390px;
    display: grid;
    grid-template-rows: 190px 1fr;
    padding: 0;
  }

  .shop-card > div {
    z-index: 3;
    grid-row: 2;
    width: 100%;
    padding: 18px;
    background: #080b0f;
  }

  .shop-card::after {
    display: none;
  }

  .shop-card picture {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 190px;
  }

  .shop-card img {
    position: relative;
    inset: auto;
    height: 190px;
    object-position: 68% center;
  }

  .shop-card h3 {
    font-size: 1.55rem;
  }
}

/* Phase 2 : paiement, marques et parcours de devis. */
body.quote-open {
  overflow: hidden;
}

.hero-proof--reference {
  width: min(780px, 100%);
  grid-template-columns: 153px 133px 140px 154px minmax(190px, 1fr);
}

.proof-payment-wrap {
  position: relative;
  min-width: 0;
}

.hero-proof--reference .proof-payment {
  width: 100%;
  height: 100%;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0 4px 9px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-proof--reference .proof-payment:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.hero-proof--reference .proof-copy {
  min-width: 0;
}

.hero-proof--reference .proof-copy strong,
.hero-proof--reference .proof-copy > span {
  display: block;
}

.hero-proof--reference .proof-copy > span {
  min-height: 0;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.2;
}

.payment-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  z-index: 20;
  width: min(320px, 84vw);
  padding: 11px 12px;
  border: 1px solid rgba(167, 224, 0, 0.42);
  border-radius: 6px;
  background: #080d12;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
  color: #e8eef5;
  font-size: 0.68rem;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.proof-payment-wrap:hover .payment-tooltip,
.proof-payment-wrap:focus-within .payment-tooltip,
.proof-payment-wrap.is-open .payment-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brand-card {
  position: relative;
  isolation: isolate;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  z-index: 2;
  border-color: rgba(36, 178, 255, 0.62);
  background: #091019;
  box-shadow: inset 0 0 0 1px rgba(167, 224, 0, 0.22), 0 0 24px rgba(17, 156, 255, 0.17);
  transform: translateY(-2px);
}

.brand-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -3px;
}

.process-panel--reference .process-title {
  letter-spacing: 0;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
}

.quote-modal-dialog {
  position: relative;
  width: min(1160px, 100%);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(41, 169, 255, 0.34);
  border-radius: 8px;
  background: #05080c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.66), 0 0 42px rgba(0, 143, 255, 0.1);
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.quote-modal.is-open .quote-modal-dialog {
  transform: translateY(0);
}

.quote-modal-dialog:focus {
  outline: none;
}

.quote-modal-head {
  position: relative;
  z-index: 3;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #030507;
}

.quote-modal-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.quote-modal-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #0a0f15;
  color: #fff;
  cursor: pointer;
}

.quote-modal-close:hover,
.quote-modal-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.quote-modal-body {
  min-height: 0;
  overflow-y: auto;
  padding: 18px;
  overscroll-behavior: contain;
}

.quote-modal .quote-shell {
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: 14px;
}

.quote-modal .quote-card {
  border-radius: 6px;
  background: #080c11;
  box-shadow: none;
}

.quote-modal .quote-intro {
  position: sticky;
  top: 0;
  align-self: start;
  padding: 22px;
}

.quote-modal .quote-intro .section-title {
  margin: 6px 0 4px;
  font-size: clamp(1.8rem, 2.3vw, 2.35rem);
}

.quote-modal .quote-list {
  margin-top: 10px;
}

.quote-modal .quote-list li {
  grid-template-columns: 18px minmax(0, 1fr);
  font-size: 0.82rem;
  line-height: 1.45;
}

.quote-modal .quote-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 2px;
  box-shadow: none;
}

.quote-modal .quote-form {
  min-width: 0;
  gap: 15px;
  padding: 18px;
}

.quote-modal .step-indicator {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0 0 2px;
  list-style: none;
}

.quote-modal .step-tab {
  position: relative;
  min-height: 42px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: #778391;
}

.quote-modal .step-tab::after {
  content: "";
  position: absolute;
  left: 34px;
  right: -10px;
  bottom: 1px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.quote-modal .step-tab:last-child::after {
  display: none;
}

.quote-modal .step-tab > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: #0b1118;
  color: #9ca7b3;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
}

.quote-modal .step-tab small {
  overflow: hidden;
  font-size: 0.64rem;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-modal .step-tab.is-active,
.quote-modal .step-tab.is-complete {
  background: transparent;
  color: #f2f6fa;
}

.quote-modal .step-tab.is-active > span,
.quote-modal .step-tab.is-complete > span {
  border-color: var(--green);
  background: var(--green);
  color: #071000;
}

.quote-modal .step-tab.is-complete::after {
  background: var(--green);
  box-shadow: 0 0 8px rgba(167, 224, 0, 0.28);
}

.quote-modal .form-step {
  min-height: 360px;
  align-content: start;
  gap: 14px;
}

.form-step-head {
  display: grid;
  gap: 5px;
}

.form-step-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.form-step-head h3:focus {
  outline: none;
}

.quote-modal .form-field label,
.quote-modal .field-label {
  font-size: 0.8rem;
}

.quote-modal .form-field input,
.quote-modal .form-field select,
.quote-modal .form-field textarea {
  min-height: 48px;
  border-radius: 5px;
  background: #04070a;
}

.quote-modal .form-field textarea {
  min-height: 88px;
}

.quote-modal .form-field input:focus,
.quote-modal .form-field select:focus,
.quote-modal .form-field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(28, 164, 255, 0.2);
  outline-offset: 1px;
}

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

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

.quote-modal .choice-btn {
  min-height: 48px;
  border-radius: 5px;
  cursor: pointer;
}

.quote-modal .choice-btn:hover,
.quote-modal .choice-btn:focus-visible,
.quote-modal .choice-btn.is-selected {
  border-color: var(--green);
  background: rgba(167, 224, 0, 0.1);
  outline: none;
}

.quote-modal .consent-line {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.76rem;
  line-height: 1.4;
}

.quote-modal .consent-line input {
  accent-color: var(--green);
}

.installment-notice {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  border-left: 3px solid var(--green);
  background: rgba(167, 224, 0, 0.07);
  color: #f1f6fa;
}

.installment-notice svg {
  color: var(--green);
}

.installment-notice p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.installment-notice strong,
.installment-notice span {
  display: block;
}

.installment-notice strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.installment-notice span {
  color: #c3ccd6;
  font-size: 0.74rem;
  line-height: 1.4;
}

.installment-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 9px;
}

.installment-details summary {
  width: fit-content;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
}

.installment-details p,
.privacy-note {
  margin: 8px 0 0;
  color: #929eaa;
  font-size: 0.7rem;
  line-height: 1.45;
}

.optional-line {
  border-color: rgba(36, 178, 255, 0.24) !important;
}

.privacy-note {
  margin: -5px 0 0;
}

.quote-modal .recap-box {
  gap: 7px;
  padding: 12px;
  border-radius: 5px;
  background: #04070a;
}

.quote-modal .recap-row {
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 10px;
  font-size: 0.75rem;
}

.quote-modal .recap-row strong {
  overflow-wrap: anywhere;
}

.quote-modal .form-message {
  min-height: 20px;
  margin: 0;
  font-size: 0.76rem;
}

.quote-modal .form-actions {
  align-items: center;
  padding-top: 2px;
}

.quote-modal .form-actions .btn {
  min-height: 48px;
  border-radius: 5px;
}

.quote-modal .form-actions .btn[disabled] {
  cursor: wait;
  opacity: 0.62;
}

@media (max-width: 1100px) {
  .hero-proof--reference {
    width: min(760px, calc(100% - 24px));
    grid-template-columns: 145px 126px 132px 145px minmax(188px, 1fr);
  }

  .quote-modal .quote-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .quote-modal .step-tab small {
    display: none;
  }

  .quote-modal .step-tab {
    grid-template-columns: 30px 1fr;
  }
}

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

  .hero-proof--reference .proof-payment-wrap {
    grid-column: 1 / -1;
  }

  .hero-proof--reference .proof-payment {
    min-height: 50px;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 9px;
    padding: 4px 0;
  }

  .hero-proof--reference .proof-copy > span {
    font-size: 0.6rem;
  }

  .payment-tooltip {
    position: static;
    display: none;
    width: 100%;
    margin-top: 5px;
    transform: none;
  }

  .proof-payment-wrap:hover .payment-tooltip,
  .proof-payment-wrap:focus-within .payment-tooltip {
    display: none;
  }

  .proof-payment-wrap.is-open .payment-tooltip {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .brand-grid {
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(167, 224, 0, 0.58) rgba(255, 255, 255, 0.06);
  }

  .brand-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .quote-modal {
    display: block;
    padding: 0;
  }

  .quote-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    transform: translateY(18px);
  }

  .quote-modal-head {
    min-height: 68px;
    padding: max(10px, env(safe-area-inset-top)) 12px 10px 14px;
  }

  .quote-modal-head h2 {
    font-size: 1.48rem;
  }

  .quote-modal-close {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .quote-modal-body {
    padding: 12px 12px calc(18px + env(safe-area-inset-bottom));
  }

  .quote-modal .quote-shell {
    display: block;
  }

  .quote-modal .quote-intro {
    display: none;
  }

  .quote-modal .quote-form {
    gap: 13px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .quote-modal .step-indicator {
    position: sticky;
    top: -12px;
    z-index: 2;
    padding: 8px 0 7px;
    background: #05080c;
  }

  .quote-modal .step-tab {
    min-height: 34px;
    grid-template-columns: 28px 1fr;
  }

  .quote-modal .step-tab > span {
    width: 28px;
    height: 28px;
  }

  .quote-modal .step-tab::after {
    left: 31px;
  }

  .quote-modal .form-step {
    min-height: 0;
    padding-bottom: 8px;
  }

  .quote-modal .form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

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

  .quote-modal .choice-btn {
    min-height: 52px;
  }

  .quote-modal .phone-row {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .quote-modal .recap-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .quote-modal .form-actions {
    position: sticky;
    bottom: calc(-18px - env(safe-area-inset-bottom));
    z-index: 4;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 8px;
    margin: 0 -12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 5, 7, 0.97);
  }

  .quote-modal .form-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
  }

  .quote-modal .form-actions [data-prev-step][hidden] + [data-next-step] {
    grid-column: 1 / -1;
  }

  .quote-open .mobile-sticky {
    display: none;
  }
}

@media (max-width: 430px) {
  .quote-modal .phone-row {
    grid-template-columns: 1fr;
  }

  .hero-proof--reference .proof-payment {
    grid-template-columns: 25px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-modal,
  .quote-modal-dialog,
  .payment-tooltip,
  .brand-card {
    transition: none;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.55rem;
  }

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

  .hero-quick-links {
    gap: 7px 12px;
  }

  .hero-phone {
    width: 560px;
  }

  .proof-item strong {
    font-size: 0.64rem;
  }

  .proof-item span {
    font-size: 0.6rem;
  }
}

/* Phase 1 visual correction: header and hero only. */
.site-header {
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(12px);
}

.site-header .container,
.hero .container {
  width: min(calc(100% - 64px), 1360px);
}

.nav {
  min-height: 76px;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 22px;
}

.brand-link {
  position: relative;
  width: 220px;
  height: 70px;
  gap: 0;
  overflow: hidden;
}

.brand-link .header-logo {
  width: 210px;
  height: auto;
  max-width: none;
  border-radius: 0;
  object-fit: contain;
}

.brand-city {
  position: absolute;
  left: 112px;
  bottom: 3px;
  color: #39b7ff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.mobile-nav-controls {
  display: none;
}

.nav-menu {
  gap: 4px;
}

.nav-menu a,
.nav-menu button {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.nav-actions {
  gap: 14px;
}

.phone-pill {
  font-size: 0.86rem;
}

.nav-actions .btn {
  min-height: 44px;
  padding-inline: 18px;
}

.hero {
  height: clamp(700px, calc(100svh - 76px), 780px);
  min-height: 700px;
  padding: 0;
  background: #020304;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hero .container {
  height: 100%;
}

.hero-grid {
  height: 100%;
  min-height: 700px;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: 0;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  align-self: center;
  padding: 54px 0 34px;
}

.hero-kicker {
  min-height: 30px;
  padding: 6px 11px;
  border-color: rgba(168, 235, 0, 0.5);
  background: rgba(168, 235, 0, 0.08);
  font-size: 0.74rem;
}

.hero h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(4.25rem, 5vw, 5rem);
  line-height: 0.88;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero .lead {
  max-width: 520px;
  margin-top: 24px;
  color: #dce3ec;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 218px;
  min-height: 52px;
  padding: 13px 22px;
  font-size: 0.86rem;
}

.hero-actions .btn.secondary {
  border-color: rgba(168, 235, 0, 0.72);
  background: rgba(0, 0, 0, 0.4);
}

.hero-actions .btn.secondary svg {
  color: var(--green);
}

.hero-quick-links {
  margin-top: 15px;
  font-size: 0.82rem;
}

.hero-quick-links a {
  color: #dfe8f2;
}

.hero-quick-links a::after {
  color: var(--green);
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  margin: 0 0 0 -72px;
  overflow: visible;
}

.hero-visual::after {
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #020304 8%, transparent);
}

.hero-phone {
  top: 50%;
  left: -240px;
  width: 1180px;
  transform: translateY(-50%);
}

.hero-proof {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof .proof-item {
  min-height: 72px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: 11px;
  padding: 8px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof .proof-item:first-child {
  padding-left: 0;
}

.hero-proof .proof-payment {
  padding-right: 0;
  border-right: 0;
}

.hero-proof .proof-icon {
  width: 38px;
  height: 38px;
  margin: 0;
  color: var(--green);
  border-color: var(--green);
}

.hero-proof .proof-item > div {
  min-width: 0;
  padding-top: 1px;
}

.hero-proof .proof-item strong {
  min-height: 16px;
  line-height: 1.15;
  font-size: 0.78rem;
}

.hero-proof .proof-item > div > span {
  min-height: 30px;
  margin-top: 6px;
  font-size: 0.69rem;
  line-height: 1.35;
}

.hero-proof .proof-payment > div > span {
  font-size: 0.69rem;
}

.proof-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding: 7px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #7f8997;
  font-size: 0.58rem;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header .container,
  .hero .container {
    width: min(calc(100% - 32px), 1360px);
  }

  .nav {
    grid-template-columns: auto 1fr;
  }

  .mobile-nav-controls {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }

  .mobile-nav-call,
  .mobile-nav-quote {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 235, 0, 0.48);
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
  }

  .mobile-nav-call {
    width: 42px;
    color: var(--green);
  }

  .mobile-nav-quote {
    padding: 0 14px;
    background: var(--green);
    color: #071000;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
  }

  .mobile-nav-controls .menu-toggle {
    display: inline-flex;
    border-radius: 5px;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu-wrap {
    inset: 76px 0 auto;
  }
}

@media (max-width: 820px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: 24px 0 20px;
  }

  .hero .container {
    height: auto;
  }

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

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 4px 0 12px;
  }

  .hero h1 {
    max-width: 610px;
    font-size: 3.65rem;
  }

  .hero .lead {
    max-width: 610px;
    margin-top: 20px;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 320px;
    margin: -8px 0 0;
    overflow: hidden;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-phone {
    top: 50%;
    left: 50%;
    width: 820px;
    transform: translate(-46%, -50%);
  }

  .hero-proof {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2px;
    padding: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-proof .proof-item {
    min-height: 88px;
    padding: 11px 12px;
    border: 0;
    background: #080b10;
  }

  .hero-proof .proof-item:first-child,
  .hero-proof .proof-payment {
    padding: 11px 12px;
  }

  .hero-proof .proof-payment {
    grid-column: 1 / -1;
  }

  .hero-proof .proof-disclaimer {
    grid-column: 1 / -1;
    padding: 10px 12px;
    border-top: 0;
    background: #080b10;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
  }

  .site-header .container,
  .hero .container {
    width: min(calc(100% - 24px), 1360px);
  }

  .nav {
    min-height: 72px;
    gap: 8px;
  }

  .brand-link {
    width: 142px;
    height: 60px;
  }

  .brand-link .header-logo {
    width: 140px;
  }

  .brand-city {
    left: 75px;
    bottom: 4px;
    font-size: 0.42rem;
  }

  .mobile-nav-controls {
    gap: 5px;
  }

  .mobile-nav-call {
    width: 38px;
    min-height: 40px;
  }

  .mobile-nav-quote {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .mobile-nav-controls .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-menu-wrap {
    inset: 72px 0 auto;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    width: 100%;
    margin-top: 15px;
    font-size: 2.82rem;
  }

  .hero .lead {
    margin-top: 18px;
    font-size: 0.97rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    min-width: 0;
    min-height: 50px;
    padding: 10px 8px;
    font-size: 0.7rem;
  }

  .hero-quick-links {
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 278px;
    margin-top: 0;
  }

  .hero-phone {
    width: 590px;
    transform: translate(-59%, -50%);
  }

  .hero-proof .proof-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }

  .hero-proof .proof-icon {
    width: 32px;
    height: 32px;
  }

  .hero-proof .proof-item strong {
    font-size: 0.67rem;
  }

  .hero-proof .proof-item span {
    font-size: 0.61rem;
  }

  .hero-proof .proof-payment > div > span {
    font-size: 0.61rem;
  }
}

@media (max-width: 360px) {
  .brand-link {
    width: 128px;
  }

  .brand-link .header-logo {
    width: 126px;
  }

  .brand-city {
    left: 68px;
  }

  .mobile-nav-quote {
    padding-inline: 8px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Parcours de réparation fidèle à la maquette de référence. */
.process-panel--reference {
  min-height: 252px;
  padding: 17px 54px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #020405;
  box-shadow: none;
}

.process-panel--reference .process-title {
  margin: 0 0 10px;
  color: #f7f9fc;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

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

.process-panel--reference .process-step {
  min-width: 0;
  gap: 3px;
}

.process-panel--reference .process-step:not(:last-child)::after {
  top: 34px;
  left: calc(50% + 64px);
  width: calc(100% - 128px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 7px, transparent 7px 13px);
  opacity: 0.8;
}

.process-panel--reference .process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 58px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
  opacity: 0.85;
}

.process-panel--reference .step-mark {
  min-height: 66px;
  gap: 15px;
}

.process-panel--reference .step-number {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(192, 255, 42, 0.82);
  background: linear-gradient(145deg, #7fbd00, #4f7e00);
  color: #f7f9fc;
  font-size: 1.08rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 18px rgba(168, 235, 0, 0.16);
}

.process-panel--reference .step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 7px);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.process-panel--reference .step-symbol {
  width: 54px;
  height: 58px;
  color: var(--green);
  filter: drop-shadow(0 0 5px rgba(168, 235, 0, 0.2));
}

.process-panel--reference .step-symbol svg {
  width: 50px;
  height: 50px;
}

.process-panel--reference .step-copy {
  min-height: 58px;
}

.process-panel--reference .process-step strong {
  display: block;
  color: #f7f9fc;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.12;
}

.process-panel--reference .process-step .step-title-detail {
  color: #f7f9fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

.process-panel--reference .process-step .step-subtitle {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.process-panel--reference .process-cta {
  margin-top: 9px;
}

.process-panel--reference .process-cta .btn {
  min-width: 276px;
  min-height: 45px;
  gap: 18px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .process-panel--reference {
    min-height: 0;
    padding: 20px 18px 18px;
  }

  .process-panel--reference .process-title {
    margin-bottom: 20px;
    font-size: 1.55rem;
  }

  .process-panel--reference .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .process-panel--reference .process-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .process-panel--reference .process-step::before,
  .process-panel--reference .process-step::after {
    display: none;
  }

  .process-panel--reference .step-mark {
    min-height: 52px;
    gap: 9px;
  }

  .process-panel--reference .step-number {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border: 0;
    border-radius: 4px;
    background: var(--green);
    color: #071000;
    font-size: 0.82rem;
    text-shadow: none;
    box-shadow: none;
  }

  .process-panel--reference .step-number::after {
    display: none;
  }

  .process-panel--reference .step-symbol {
    filter: none;
  }

  .process-panel--reference .process-cta {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .process-panel--reference {
    padding-inline: 12px;
  }

  .process-panel--reference .step-mark {
    gap: 8px;
  }

  .process-panel--reference .step-number {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .process-panel--reference .step-symbol,
  .process-panel--reference .step-symbol svg {
    width: 40px;
    height: 40px;
  }

  .process-panel--reference .process-step strong {
    font-size: 0.8rem;
  }

  .process-panel--reference .process-step .step-title-detail {
    font-size: 0.76rem;
  }

  .process-panel--reference .process-cta .btn {
    width: min(100%, 276px);
    min-width: 0;
  }
}

/* Avis Google compacts, selon la rangée de la maquette. */
#avis.section {
  padding-block: 14px 20px;
}

.review-layout--compact {
  grid-template-columns: minmax(210px, 0.9fr) repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.review-layout--compact .review-summary,
.review-layout--compact .review-card {
  min-height: 222px;
}

.review-summary--compact {
  justify-content: flex-start;
  gap: 13px;
  padding: 16px 14px 12px 0;
}

.review-summary--compact .section-title {
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 0.98;
}

.review-summary--compact .section-title > span {
  display: block;
}

.review-summary--compact p {
  margin: 0;
  color: #c7ced8;
  font-size: 0.74rem;
  line-height: 1.45;
}

.review-google-link {
  width: fit-content;
  min-height: 42px;
  gap: 10px;
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.review-google-link img,
.review-google-logo {
  flex: 0 0 auto;
  object-fit: contain;
}

.review-layout--compact .review-card {
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 18px;
  padding: 15px 14px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #080b0f;
  box-shadow: none;
}

.review-layout--compact .review-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  align-items: start;
  gap: 9px;
}

.review-layout--compact .avatar {
  width: 42px;
  height: 42px;
  font-size: 0.76rem;
}

.review-layout--compact .review-author {
  min-width: 0;
}

.review-layout--compact .review-card h3 {
  margin: 0 0 2px;
  overflow-wrap: anywhere;
  font-size: 0.84rem;
  line-height: 1.05;
}

.review-layout--compact .stars {
  display: block;
  font-size: 0.84rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.review-source {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.15;
}

.review-layout--compact .review-google-logo {
  width: 22px;
  height: 22px;
}

.review-layout--compact .review-card blockquote {
  align-self: start;
  margin: 4px 0 0;
  color: #e9edf3;
  font-size: 0.75rem;
  line-height: 1.48;
}

@media (max-width: 820px) {
  #avis.section {
    padding-top: 8px;
  }

  .review-layout--compact {
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 72vw);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .review-layout--compact .review-summary,
  .review-layout--compact .review-card {
    min-height: 220px;
    scroll-snap-align: start;
  }

  .review-summary--compact {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #080b0f;
  }
}

/* Bloc logo complet : ville intégrée entre les deux traits bleus. */
.brand-city,
.footer-city {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #37b8ff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-city::before,
.brand-city::after,
.footer-city::before,
.footer-city::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: #168fd5;
  opacity: 0.95;
}

.brand-link {
  height: 70px;
}

.brand-city {
  left: 52px;
  bottom: 21px;
  width: 150px;
  font-size: 0.5rem;
}

.footer-brand {
  display: block;
  margin-bottom: 10px;
}

.footer-logo-lockup {
  position: relative;
  display: block;
  width: 184px;
  height: 58px;
  overflow: hidden;
}

.footer-brand .footer-logo {
  display: block;
  width: 184px;
  height: auto;
  max-width: none;
}

.footer-city {
  position: absolute;
  left: 45px;
  bottom: 17px;
  width: 132px;
  font-size: 0.45rem;
}

.footer-col[data-analytics-location="footer"] > a:not(.btn) {
  display: flex;
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .brand-city {
    left: 35px;
    bottom: 24px;
    width: 100px;
    gap: 4px;
    font-size: 0.37rem;
  }

  .footer-logo-lockup,
  .footer-brand .footer-logo {
    width: 170px;
  }

  .footer-logo-lockup {
    height: 54px;
  }

  .footer-city {
    left: 42px;
    width: 122px;
    font-size: 0.42rem;
  }
}

@media (max-width: 360px) {
  .brand-city {
    left: 31px;
    width: 90px;
  }
}

/* Ligne de réassurance calée sur les proportions de la maquette. */
.hero-proof--reference {
  justify-self: start;
  width: min(980px, 100%);
  grid-template-columns: 180px 150px 160px 170px minmax(250px, 1fr);
  gap: 0;
  margin: 0 0 10px;
  padding: 10px 0 12px;
  border: 0;
  background: transparent;
}

.hero-proof--reference .proof-item {
  min-height: 62px;
  grid-template-columns: 30px minmax(0, auto);
  align-content: center;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 6px 12px;
  border: 0;
}

.hero-proof--reference .proof-item:first-child {
  padding-left: 0;
}

.hero-proof--reference .proof-item:last-child {
  padding-right: 0;
}

.hero-proof--reference .proof-icon {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof--reference .proof-icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.hero-proof--reference .proof-item strong {
  font-size: 0.86rem;
  line-height: 1.08;
}

.hero-proof--reference .proof-item > div > span,
.hero-proof--reference .proof-copy > span {
  min-height: 0;
  margin-top: 5px;
  font-size: 0.76rem;
  line-height: 1.3;
}

.hero-proof--reference .stars {
  display: inline;
  margin-left: 4px;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-proof--reference a.proof-item {
  transition: background-color 160ms ease;
}

.hero-proof--reference a.proof-item:hover {
  color: #fff;
}

@media (min-width: 821px) and (max-width: 1100px) {
  .hero-proof--reference {
    margin-left: 24px;
    width: calc(100% - 24px);
    grid-template-columns: 1.14fr 0.92fr 0.98fr 1.06fr 1.5fr;
  }
}

@media (max-width: 820px) {
  .hero-proof--reference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-left: 0;
    padding: 10px 2px;
    border: 0;
    background: transparent;
  }

  .hero-proof--reference .proof-item,
  .hero-proof--reference .proof-item:first-child,
  .hero-proof--reference .proof-item:last-child {
    min-height: 52px;
    grid-template-columns: 28px minmax(0, 1fr);
    justify-content: start;
    gap: 9px;
    padding: 3px 0;
    border: 0;
    background: transparent;
  }

  .hero-proof--reference .proof-icon {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-proof--reference .proof-icon svg,
  .hero-proof--reference .proof-icon img {
    width: 24px;
    height: 24px;
  }

  .hero-proof--reference .proof-item strong {
    font-size: 0.8rem;
  }

  .hero-proof--reference .proof-item > div > span,
  .hero-proof--reference .proof-copy > span,
  .hero-proof--reference .stars {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .hero-proof--reference .proof-item,
  .hero-proof--reference .proof-item:first-child,
  .hero-proof--reference .proof-item:last-child {
    min-height: 52px;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 8px;
    padding: 3px 0;
  }

  .hero-proof--reference .proof-icon {
    width: 27px;
    height: 27px;
  }

  .hero-proof--reference .proof-icon svg,
  .hero-proof--reference .proof-icon img {
    width: 24px;
    height: 24px;
  }

  .hero-proof--reference .proof-item strong {
    font-size: 0.8rem;
  }

  .hero-proof--reference .proof-item > div > span,
  .hero-proof--reference .proof-copy > span,
  .hero-proof--reference .stars {
    font-size: 0.72rem;
  }
}

/* Phase 2 doit rester prioritaire sur les ajustements visuels de phase 1. */
.hero-proof--reference {
  width: min(980px, 100%);
  grid-template-columns: 180px 150px 160px 170px minmax(250px, 1fr);
}

.hero-proof--reference .proof-payment {
  width: 100%;
  height: 100%;
  min-height: 62px;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 0 6px 12px;
}

@media (min-width: 821px) and (max-width: 1100px) {
  .hero-proof--reference {
    width: calc(100% - 24px);
    grid-template-columns: 1.14fr 0.92fr 0.98fr 1.06fr 1.5fr;
  }
}

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

  .hero-proof--reference .proof-payment-wrap {
    grid-column: 1 / -1;
  }

  .hero-proof--reference .proof-payment {
    min-height: 52px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 4px 0;
  }

  .brand-grid {
    grid-auto-columns: 33.333333%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .brand-grid::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-proof--reference .proof-payment {
    grid-template-columns: 27px minmax(0, 1fr);
  }
}

/* Phase 3 - prestations et avis Google */
.section-anchor-alias {
  position: absolute;
  top: -84px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.services-v3-section,
.reviews-v3-section {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #030507 0%, #070b10 52%, #030507 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-v3-section {
  padding-block: 38px 32px;
}

.services-v3-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 22px;
}

.services-v3-head h2,
.reviews-v3-summary h2 {
  margin: 6px 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-v3-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.services-v3-head p {
  max-width: 700px;
  margin: 0;
  color: #b8c2cd;
  font-size: 0.92rem;
}

.services-v3-head .btn {
  min-width: 230px;
}

.services-v3-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-v3-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 440px;
  display: grid;
  grid-template-rows: 178px minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #080c11;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-v3-card:hover,
.service-v3-card:focus-within {
  border-color: rgba(0, 174, 255, 0.48);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), 0 0 24px rgba(0, 151, 255, 0.08);
  transform: translateY(-2px);
}

.service-v3-card:nth-child(even):hover,
.service-v3-card:nth-child(even):focus-within {
  border-color: rgba(167, 224, 0, 0.42);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), 0 0 24px rgba(167, 224, 0, 0.07);
}

.service-v3-media {
  position: relative;
  overflow: hidden;
  display: block;
  background: #020406;
}

.service-v3-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, #080c11);
  pointer-events: none;
}

.service-v3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-v3-card:hover .service-v3-media img,
.service-v3-card:focus-within .service-v3-media img {
  transform: scale(1.025);
}

.service-v3-body {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto minmax(68px, 1fr) auto;
  align-content: start;
  gap: 9px;
  padding: 0 15px 15px;
}

.service-v3-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: -21px;
  border: 1px solid rgba(206, 255, 44, 0.8);
  border-radius: 4px;
  background: var(--green);
  color: #071000;
  box-shadow: 0 12px 24px rgba(167, 224, 0, 0.18);
}

.service-v3-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-v3-card p {
  margin: 0;
  color: #aeb9c6;
  font-size: 0.77rem;
  line-height: 1.5;
}

.service-v3-actions {
  display: grid;
  gap: 7px;
}

.service-v3-actions a {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 4px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-v3-actions a::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.service-v3-actions a[data-service-action="quote"] {
  justify-content: center;
  padding-inline: 10px;
  border: 1px solid rgba(167, 224, 0, 0.62);
  background: rgba(167, 224, 0, 0.06);
  color: #f6f9fc;
}

.service-v3-actions a[data-service-action="quote"]::after {
  display: none;
}

.service-v3-actions a:hover,
.service-v3-actions a:focus-visible {
  color: #fff;
}

.service-v3-actions a[data-service-action="quote"]:hover,
.service-v3-actions a[data-service-action="quote"]:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #071000;
}

.other-services-v3 {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.other-services-v3-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.other-services-v3-head h3,
.service-reassurance-v3 h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.other-services-v3-head h3 {
  font-size: 1.35rem;
}

.other-services-v3-head p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.76rem;
}

.other-services-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.other-service-v3 {
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 15, 0.78);
}

.other-service-v3-main,
.other-service-v3-quote {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.other-service-v3-main {
  min-width: 0;
  gap: 10px;
  padding: 10px 12px;
  color: #e8edf3;
  font-size: 0.76rem;
  font-weight: 800;
}

.other-service-v3-main > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.other-service-v3-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 224, 0, 0.36);
  border-radius: 4px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
}

.other-service-v3-quote {
  justify-content: center;
  min-width: 58px;
  padding: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--blue-2);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.other-service-v3-main:hover,
.other-service-v3-main:focus-visible,
.other-service-v3-quote:hover,
.other-service-v3-quote:focus-visible {
  background: rgba(0, 151, 255, 0.08);
  color: #fff;
}

.service-reassurance-v3 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(167, 224, 0, 0.055), rgba(0, 151, 255, 0.035) 58%, #070b10);
}

.service-reassurance-v3 h3 {
  margin-top: 4px;
  font-size: 1.7rem;
}

.service-reassurance-v3 p {
  max-width: 720px;
  margin: 4px 0 0;
  color: #b9c3ce;
  font-size: 0.82rem;
}

.service-reassurance-v3-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-reassurance-v3-actions .btn {
  min-width: 172px;
  min-height: 44px;
}

.service-payment-v3 {
  position: relative;
}

.service-payment-v3 > summary {
  list-style: none;
}

.service-payment-v3 > summary::-webkit-details-marker {
  display: none;
}

.service-payment-v3[open] > summary {
  border-color: var(--green);
  color: var(--green);
}

.service-payment-v3-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(390px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(167, 224, 0, 0.42);
  border-radius: 6px;
  background: #060a0e;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.service-payment-v3-panel strong {
  color: var(--green);
  text-transform: uppercase;
}

.service-payment-v3-panel p {
  margin: 6px 0;
  color: #e3e9ef;
  line-height: 1.45;
}

.service-payment-v3-panel span {
  display: block;
  color: var(--muted-2);
  font-size: 0.7rem;
  line-height: 1.45;
}

.reviews-v3-section {
  padding-block: 34px 38px;
  background: linear-gradient(180deg, #030507, #060b10 48%, #020405);
}

.reviews-v3-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2.7fr);
  gap: 12px;
  align-items: stretch;
}

.reviews-v3-summary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 22px 22px 0;
}

.reviews-v3-summary h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
}

.reviews-v3-summary > p {
  margin: 5px 0;
  color: #bdc7d1;
  font-size: 0.8rem;
}

.reviews-v3-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 5px 0 4px;
}

.reviews-v3-score > strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.reviews-v3-score .stars {
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1;
}

.reviews-v3-source {
  min-height: 34px;
  color: var(--muted-2) !important;
  font-size: 0.67rem !important;
  line-height: 1.4;
}

.reviews-v3-summary .review-google-link {
  min-width: 220px;
  margin-top: 10px;
}

.reviews-v3-carousel {
  min-width: 0;
}

.reviews-v3-track {
  min-width: 0;
  min-height: 272px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reviews-v3-track:focus-visible {
  border-radius: 6px;
}

.review-v3-card {
  min-width: 0;
  min-height: 272px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #080c11;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-v3-card:hover,
.review-v3-card:focus-within {
  border-color: rgba(167, 224, 0, 0.4);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), 0 0 22px rgba(167, 224, 0, 0.055);
  transform: translateY(-2px);
}

.review-v3-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
}

.review-v3-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 224, 0, 0.48);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(167, 224, 0, 0.18), rgba(0, 151, 255, 0.13));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-v3-author {
  min-width: 0;
}

.review-v3-author h3 {
  margin: 0 0 3px;
  overflow-wrap: anywhere;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-v3-author .stars {
  display: block;
  color: var(--green);
  font-size: 0.86rem;
  line-height: 1;
}

.review-v3-google {
  width: 22px;
  height: 22px;
}

.review-v3-card blockquote {
  align-self: center;
  margin: 0;
  color: #edf2f6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.review-v3-meta {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.68rem;
}

.reviews-v3-controls {
  display: none;
}

.reviews-v3-controls > button,
.reviews-v3-dots button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #080c11;
  color: #fff;
}

.reviews-v3-controls > button {
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
}

.reviews-v3-controls > button:disabled {
  cursor: default;
  opacity: 0.35;
}

.reviews-v3-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.reviews-v3-dots button {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border-color: transparent;
  border-radius: 50%;
  background: transparent;
}

.reviews-v3-dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #080c11;
}

.reviews-v3-dots button.is-active {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.reviews-v3-dots button.is-active::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 10px rgba(167, 224, 0, 0.35);
}

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

  .service-v3-card {
    min-height: 410px;
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .reviews-v3-layout {
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 2.2fr);
  }

  .reviews-v3-track {
    grid-template-columns: repeat(3, minmax(215px, 1fr));
  }
}

@media (max-width: 820px) {
  .services-v3-section,
  .reviews-v3-section {
    padding-block: 28px;
  }

  .services-v3-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .services-v3-head .btn {
    width: fit-content;
  }

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

  .service-reassurance-v3 {
    grid-template-columns: 1fr;
  }

  .service-reassurance-v3-actions {
    justify-content: flex-start;
  }

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

  .reviews-v3-summary {
    padding: 0 0 10px;
  }
}

@media (max-width: 760px) {
  .services-v3-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-v3-card {
    min-height: 0;
    grid-template-rows: 200px auto;
  }

  .service-v3-body {
    grid-template-rows: auto auto auto auto;
    min-height: 240px;
  }

  .service-v3-card h3 {
    font-size: 1.4rem;
  }

  .service-v3-card p {
    font-size: 0.82rem;
  }

  .service-v3-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .service-v3-actions a {
    min-height: 44px;
  }

  .service-v3-actions a[data-service-action="details"] {
    justify-content: flex-start;
  }

  .other-services-v3-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .other-services-v3-grid {
    grid-template-columns: 1fr;
  }

  .service-reassurance-v3-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-reassurance-v3 h3 {
    font-size: 1.5rem;
  }

  .service-reassurance-v3-actions .btn {
    width: 100%;
  }

  .service-payment-v3-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .reviews-v3-track {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 10px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .reviews-v3-track::-webkit-scrollbar {
    display: none;
  }

  .review-v3-card {
    min-height: 250px;
    scroll-snap-align: start;
  }

  .reviews-v3-controls {
    min-height: 50px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }

  .reviews-v3-controls > button {
    display: grid;
  }
}

@media (max-width: 430px) {
  .services-v3-head h2 {
    font-size: 2.45rem;
  }

  .service-v3-actions {
    grid-template-columns: 1fr;
  }

  .service-v3-actions a {
    justify-content: center !important;
  }

  .service-v3-actions a[data-service-action="details"]::after {
    display: none;
  }

  .service-reassurance-v3 {
    padding: 16px;
  }

  .reviews-v3-summary h2 {
    font-size: 2.5rem;
  }

  .reviews-v3-score > strong {
    font-size: 2.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-v3-card,
  .service-v3-media img,
  .review-v3-card {
    transition: none;
  }
}

/* Phase 4 - reconditionnes, accessoires, CTA final et footer. */
#reconditionnes,
#accessoires,
#contact,
#footer {
  scroll-margin-top: 92px;
}

.commerce-v4-section {
  padding-block: 36px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #030507;
}

.commerce-v4-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.commerce-v4-card {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #05080c;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  scroll-margin-top: 92px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.commerce-v4-card:hover {
  border-color: rgba(167, 224, 0, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4), 0 0 28px rgba(9, 151, 255, 0.08);
}

.commerce-v4-media,
.commerce-v4-media img,
.commerce-v4-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.commerce-v4-media {
  z-index: -3;
}

.commerce-v4-media img {
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

.commerce-v4-card:hover .commerce-v4-media img {
  transform: scale(1.015);
}

.commerce-v4-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.99) 0%, rgba(1, 3, 5, 0.94) 36%, rgba(1, 3, 5, 0.42) 66%, rgba(1, 3, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 4, 7, 0.88) 0%, transparent 46%);
}

.commerce-v4-card--accessories .commerce-v4-overlay {
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.99) 0%, rgba(1, 3, 5, 0.94) 38%, rgba(1, 3, 5, 0.45) 68%, rgba(1, 3, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 4, 7, 0.9) 0%, transparent 48%);
}

.commerce-v4-content {
  width: 64%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 24px;
}

.commerce-v4-content h2,
.final-cta-v4 h2,
.store-v4-head h2 {
  margin: 7px 0 13px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-v4-content h2 {
  font-size: 2.7rem;
}

.commerce-v4-content > p {
  max-width: 350px;
  margin: 0;
  color: #d4dce5;
  font-size: 0.86rem;
  line-height: 1.55;
}

.commerce-v4-points {
  display: grid;
  gap: 7px;
  margin: 18px 0 20px;
  padding: 0;
  color: #eef5fa;
  font-size: 0.76rem;
  font-weight: 750;
  list-style: none;
}

.commerce-v4-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.commerce-v4-points li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  transform: rotate(45deg);
}

.commerce-v4-actions {
  width: 100%;
  margin-top: auto;
}

.commerce-v4-actions .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.commerce-v4-payment {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(167, 224, 0, 0.26);
  border-radius: 5px;
  background: rgba(2, 5, 7, 0.84);
}

.commerce-v4-payment summary {
  position: relative;
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  color: var(--green);
  cursor: pointer;
  list-style: none;
}

.commerce-v4-payment summary::-webkit-details-marker {
  display: none;
}

.commerce-v4-payment summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  color: #fff;
  font-weight: 900;
}

.commerce-v4-payment[open] summary::after {
  content: "−";
}

.commerce-v4-payment summary span {
  display: grid;
  gap: 1px;
  padding-right: 22px;
}

.commerce-v4-payment summary strong {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.commerce-v4-payment summary small {
  color: #b9c4cf;
  font-size: 0.66rem;
}

.commerce-v4-payment > p {
  margin: 0;
  padding: 0 12px 12px 45px;
  color: #b9c4cf;
  font-size: 0.68rem;
  line-height: 1.45;
}

.final-cta-v4-section {
  padding-block: 24px 34px;
  background: #030507;
}

.final-cta-v4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 26px 34px;
  padding: 28px 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(110deg, rgba(167, 224, 0, 0.09), transparent 34%),
    linear-gradient(290deg, rgba(9, 151, 255, 0.13), transparent 38%),
    #080c11;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.final-cta-v4 h2 {
  font-size: 2.65rem;
}

.final-cta-v4-copy > p {
  max-width: 570px;
  margin: 0;
  color: #bac5d0;
  font-size: 0.9rem;
}

.final-cta-v4-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.final-cta-v4-actions .btn {
  min-width: 0;
  min-height: 50px;
  justify-content: center;
  padding-inline: 12px;
  text-align: center;
}

.final-cta-v4-payment {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aab5c0;
  font-size: 0.76rem;
}

.store-v4-section {
  padding-block: 42px 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(9, 151, 255, 0.05), transparent 42%),
    #05080c;
}

.store-v4-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.store-v4-head h2 {
  font-size: 3rem;
}

.store-v4-head > p {
  margin: 0;
  color: #b8c3ce;
}

.store-v4-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.store-v4-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-right: 24px;
}

.store-v4-info {
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-v4-info:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.store-v4-info:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.store-v4-info:nth-child(even) {
  padding-left: 22px;
}

.store-v4-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(167, 224, 0, 0.36);
  border-radius: 4px;
  background: rgba(167, 224, 0, 0.04);
}

.store-v4-info > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.store-v4-info strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
}

.store-v4-info span,
.store-v4-info a {
  color: #b9c4cf;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.store-v4-info a:hover {
  color: var(--green);
}

.store-v4-hours {
  display: grid;
  gap: 2px;
}

.store-v4-route {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(9, 151, 255, 0.09), transparent 46%),
    rgba(7, 11, 16, 0.78);
}

.store-v4-route-icon {
  margin-bottom: 12px;
  color: var(--blue-2);
}

.store-v4-route h3 {
  margin: 5px 0 2px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.store-v4-route p {
  margin: 0;
  color: #b9c4cf;
  font-size: 0.82rem;
}

.store-v4-status {
  min-height: 20px;
  margin-top: 10px !important;
  color: #dce5ed !important;
}

.store-v4-status.is-open {
  color: var(--green) !important;
}

.store-v4-google {
  margin-top: 12px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.store-v4-google:hover {
  color: #fff;
}

.store-v4-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store-v4-actions .btn {
  min-width: 150px;
  justify-content: center;
}

.site-footer.footer-v4 {
  padding: 48px 0 108px;
  border-top: 1px solid rgba(167, 224, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(9, 151, 255, 0.035), transparent 34%),
    #010203;
}

.footer-v4-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 1.08fr 1.08fr;
  align-items: start;
  gap: 34px;
}

.footer-v4-column {
  min-width: 0;
}

.footer-v4-column h2 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-v4-column p,
.footer-v4-column a,
.footer-v4-hours {
  color: #aeb9c6;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-v4-column a {
  width: fit-content;
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.footer-v4-column a:hover {
  color: var(--green);
}

.footer-v4-logo {
  width: min(100%, 220px) !important;
  display: grid !important;
  justify-items: start;
  gap: 2px;
  margin: -5px 0 14px !important;
}

.footer-v4-logo img {
  width: 100%;
  height: auto;
}

.footer-v4-identity > p {
  max-width: 250px;
  margin: 0 0 10px;
  font-size: 0.88rem;
}

.footer-v4-contact {
  color: var(--blue-2) !important;
}

.footer-v4-hours {
  display: grid;
  gap: 3px;
  margin: 0 0 8px;
}

.footer-v4-trust > p {
  display: grid;
  gap: 1px;
  margin: 0 0 11px;
}

.footer-v4-trust > p strong {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-v4-trust > p span {
  color: #9ca8b4;
  font-size: 0.72rem;
}

.footer-v4-trust .btn {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  justify-content: center;
  margin-top: 14px;
  color: #071000;
}

.footer-v4-trust .btn:hover {
  color: #071000;
}

.footer-v4-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #778390;
  font-size: 0.72rem;
}

.footer-v4-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-v4-bottom a {
  color: #9ba7b3;
  text-decoration: none;
}

.footer-v4-bottom a:hover {
  color: var(--green);
}

.footer-v4-legal-note {
  margin: 14px 0 0;
  color: #687480;
  font-size: 0.68rem;
}

@media (max-width: 1100px) {
  .commerce-v4-content {
    width: 72%;
  }

  .commerce-v4-content h2 {
    font-size: 2.35rem;
  }

  .final-cta-v4 {
    grid-template-columns: 1fr;
  }

  .final-cta-v4-actions {
    max-width: 650px;
  }

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

  .store-v4-details {
    padding-right: 0;
  }

  .store-v4-route {
    min-height: 210px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

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

@media (max-width: 820px) {
  .commerce-v4-section {
    padding-block: 28px;
  }

  .commerce-v4-grid {
    grid-template-columns: 1fr;
  }

  .commerce-v4-card {
    min-height: 490px;
  }

  .commerce-v4-content {
    width: 58%;
    min-height: 490px;
  }

  .commerce-v4-content h2 {
    font-size: 2.55rem;
  }

  .final-cta-v4,
  .store-v4-route {
    padding-inline: 22px;
  }

  .store-v4-head h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 620px) {
  .commerce-v4-card {
    min-height: 600px;
  }

  .commerce-v4-media img {
    object-position: 66% center;
  }

  .commerce-v4-overlay,
  .commerce-v4-card--accessories .commerce-v4-overlay {
    background:
      linear-gradient(180deg, rgba(1, 3, 5, 0.99) 0%, rgba(1, 3, 5, 0.92) 40%, rgba(1, 3, 5, 0.64) 60%, rgba(1, 3, 5, 0.42) 76%, rgba(1, 3, 5, 0.96) 100%),
      linear-gradient(90deg, rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.16));
  }

  .commerce-v4-content {
    width: 100%;
    min-height: 600px;
    padding: 24px 20px 18px;
  }

  .commerce-v4-content h2 {
    font-size: 2.25rem;
  }

  .commerce-v4-content > p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .commerce-v4-points {
    font-size: 0.8rem;
  }

  .commerce-v4-payment summary strong {
    font-size: 0.8rem;
  }

  .commerce-v4-payment summary small,
  .commerce-v4-payment > p {
    font-size: 0.72rem;
  }

  .final-cta-v4 {
    padding: 22px 18px 18px;
  }

  .final-cta-v4 h2 {
    font-size: 2.25rem;
  }

  .final-cta-v4-actions {
    grid-template-columns: 1fr;
  }

  .final-cta-v4-payment {
    font-size: 0.8rem;
  }

  .store-v4-section {
    padding-block: 32px;
  }

  .store-v4-head h2 {
    font-size: 2.25rem;
  }

  .store-v4-details {
    grid-template-columns: 1fr;
  }

  .store-v4-info,
  .store-v4-info:nth-child(even),
  .store-v4-info:nth-child(odd) {
    min-height: 98px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .store-v4-info:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .store-v4-info:last-child {
    border-bottom: 0;
  }

  .store-v4-route {
    padding: 22px 0;
    background: transparent;
  }

  .store-v4-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-v4-actions .btn {
    width: 100%;
  }

  .footer-v4-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-v4-column {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-v4-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-v4-column h2 {
    font-size: 1.15rem;
  }

  .footer-v4-column p,
  .footer-v4-column a,
  .footer-v4-hours {
    font-size: 0.86rem;
  }

  .footer-v4-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-v4-bottom nav {
    flex-direction: column;
  }

  .site-footer.footer-v4 {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .commerce-v4-card,
  .commerce-v4-content {
    min-height: 625px;
  }

  .commerce-v4-content {
    padding-inline: 16px;
  }

  .commerce-v4-content h2,
  .final-cta-v4 h2,
  .store-v4-head h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commerce-v4-card,
  .commerce-v4-media img {
    transition: none;
  }
}

/* Phase 5: local content, internal linking and accessible FAQ */
.local-seo-v5-section {
  position: relative;
  padding-block: 84px;
  background: #05090d;
  border-top: 1px solid rgba(9, 151, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.local-seo-v5-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(9, 151, 255, 0.08) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 33.2%, rgba(167, 224, 0, 0.05) 33.3%, transparent 33.4%);
  background-size: 320px 100%, 100% 240px;
  opacity: 0.42;
}

.local-seo-v5-section > .container,
.faq-v5-section > .container {
  position: relative;
  z-index: 1;
}

.local-seo-v5-head {
  max-width: 880px;
  margin-bottom: 38px;
}

.local-seo-v5-head h2,
.faq-v5-head h2 {
  max-width: 820px;
  margin: 8px 0 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.local-seo-v5-head > p,
.faq-v5-head > p {
  max-width: 800px;
  margin: 0;
  color: #b7c2cd;
  font-size: 1rem;
  line-height: 1.75;
}

.local-seo-v5-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.local-seo-v5-card {
  position: relative;
  min-height: 300px;
  padding: 28px 30px 28px 78px;
  overflow: hidden;
  background: #090e14;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
}

.local-seo-v5-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  content: "";
  background: var(--blue-2);
}

.local-seo-v5-card:nth-child(even)::after {
  background: var(--green);
}

.local-seo-v5-number {
  position: absolute;
  top: 29px;
  left: 25px;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
}

.local-seo-v5-card h3,
.local-areas-v5 h3,
.internal-links-v5 h3 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.local-seo-v5-card p,
.local-areas-v5 p {
  margin: 0;
  color: #aeb9c6;
  font-size: 0.91rem;
  line-height: 1.72;
}

.local-seo-v5-card a,
.internal-links-v5 a {
  color: #eaf5ff;
  text-decoration-color: rgba(9, 151, 255, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.local-seo-v5-card a:hover,
.internal-links-v5 a:hover {
  color: var(--green);
}

.local-areas-v5 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.local-areas-v5-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.local-areas-v5-list li {
  min-width: 0;
  padding: 11px 13px;
  color: #d8e0e8;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
  font-weight: 800;
}

.internal-links-v5 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: #070b10;
}

.internal-links-v5 > div {
  min-width: 0;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.internal-links-v5 > div:last-child {
  border-right: 0;
}

.internal-links-v5 a {
  display: block;
  padding: 9px 0;
  color: #aeb9c6;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.79rem;
  line-height: 1.4;
  text-decoration: none;
}

.faq-v5-section {
  padding-block: 84px;
  background: #020406;
  border-bottom: 1px solid rgba(167, 224, 0, 0.16);
}

.faq-v5-head {
  max-width: 880px;
  margin-bottom: 32px;
}

.faq-v5-list {
  max-width: 980px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-v5-item {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-v5-item h3 {
  margin: 0;
}

.faq-v5-item button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 20px 8px;
  color: #f3f7fa;
  text-align: left;
  background: transparent;
  border: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-v5-item button:hover {
  color: var(--green);
}

.faq-v5-toggle {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(167, 224, 0, 0.72);
  border-radius: 50%;
}

.faq-v5-toggle::before,
.faq-v5-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--green);
  transform: translate(-50%, -50%);
}

.faq-v5-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-v5-item button[aria-expanded="true"] .faq-v5-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-v5-panel {
  max-width: 820px;
  padding: 0 58px 24px 8px;
}

.faq-v5-panel p {
  margin: 0;
  color: #aeb9c6;
  font-size: 0.93rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .local-seo-v5-grid,
  .local-areas-v5 {
    grid-template-columns: 1fr;
  }

  .local-areas-v5 {
    gap: 24px;
  }

  .internal-links-v5 {
    grid-template-columns: 1fr;
  }

  .internal-links-v5 > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .internal-links-v5 > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .local-seo-v5-section,
  .faq-v5-section {
    padding-block: 54px;
  }

  .local-seo-v5-head h2,
  .faq-v5-head h2 {
    font-size: 2.25rem;
  }

  .local-seo-v5-head > p,
  .faq-v5-head > p {
    font-size: 0.91rem;
    line-height: 1.65;
  }

  .local-seo-v5-card {
    min-height: 0;
    padding: 24px 20px 24px 56px;
  }

  .local-seo-v5-number {
    top: 25px;
    left: 18px;
    font-size: 1.05rem;
  }

  .local-seo-v5-card h3,
  .local-areas-v5 h3,
  .internal-links-v5 h3 {
    font-size: 1.24rem;
  }

  .local-seo-v5-card p,
  .local-areas-v5 p,
  .faq-v5-panel p {
    font-size: 0.87rem;
  }

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

  .internal-links-v5 > div {
    padding: 21px 18px;
  }

  .faq-v5-item button {
    min-height: 72px;
    padding-block: 18px;
    font-size: 1.05rem;
  }

  .faq-v5-panel {
    padding: 0 42px 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-v5-toggle::after {
    transition: none;
  }
}

.error-v5-shell {
  min-height: 100vh;
}

.error-v5-main {
  min-height: calc(100vh - 88px);
}

.error-v5-section {
  display: grid;
  min-height: calc(100vh - 88px);
  align-items: center;
  padding-block: 64px;
  background: #030609;
}

.error-v5-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: center;
}

.error-v5-code {
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 12rem;
  line-height: 0.8;
  letter-spacing: 0;
  -webkit-text-stroke: 2px var(--green);
  text-shadow: 14px 14px 0 rgba(9, 151, 255, 0.18);
}

.error-v5-content h1 {
  max-width: 720px;
  margin: 8px 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 3.6rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.error-v5-content > p {
  max-width: 680px;
  margin: 0;
  color: #aeb9c6;
  line-height: 1.7;
}

.error-v5-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.error-v5-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-v5-links a {
  color: #aeb9c6;
  font-size: 0.82rem;
  text-underline-offset: 3px;
}

.error-v5-links a:hover {
  color: var(--green);
}

@media (max-width: 820px) {
  .error-v5-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .error-v5-code {
    font-size: 7rem;
  }
}

@media (max-width: 620px) {
  .error-v5-section {
    align-items: start;
    padding-block: 46px;
  }

  .error-v5-content h1 {
    font-size: 2.55rem;
  }

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

  .error-v5-actions .btn {
    width: 100%;
  }

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