:root {
  --yellow: #ef2b2d;
  --black: #111111;
  --red: #ef2b2d;
  --white: #ffffff;
  --paper: #181818;
  --ink: #f3f3f3;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.08);
  --panel-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --soft-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  --cta-shadow: 0 4px 20px rgba(239, 43, 45, 0.35);
  --ease-ui: 0.2s ease;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --page-max: 1440px;
  --shell-inline-pad: clamp(12px, 1.4vw, 22px);
  --section-pad: clamp(28px, 4vw, 40px);
  --section-gap: 18px;
  --section-vpad: 100px;
  --separator: rgba(255, 255, 255, 0.08);
  --main-gap: 0;
  --ba-placeholder: #1a1a1a;
  --hero-overlap: clamp(72px, 7vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  background: linear-gradient(180deg, #121212, #0b0b0b);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(239, 43, 45, 0.14), transparent 380px),
    linear-gradient(180deg, #141414, #0d0d0d);
}

html.gsap-ui .service-card h3::after,
html.gsap-ui .service-card:hover h3::after {
  width: var(--svc-line, 0px);
  transition: none;
}

html.gsap-ui .site-header,
html.gsap-ui .hero-eyebrow,
html.gsap-ui .hero-word,
html.gsap-ui .hero-text,
html.gsap-ui .hero-actions .cta-button,
html.gsap-ui .hero-actions .secondary-button,
html.gsap-ui #services .anim-eyebrow,
html.gsap-ui #services .anim-headline,
html.gsap-ui #services .anim-service,
html.gsap-ui #confiance .trust-score > .anim-headline,
html.gsap-ui #confiance .anim-trust,
html.gsap-ui #confiance .anim-review {
  opacity: 0;
}

html.gsap-ui .hero-eyebrow {
  transform: translateX(-48px);
}

html.gsap-ui .hero-word {
  display: inline-block;
  transform: translateY(60px);
}

html.gsap-ui .hero-text {
  transform: translateY(28px);
}

html.gsap-ui .hero-actions .cta-button,
html.gsap-ui .hero-actions .secondary-button {
  transform: scale(0.95);
}

html.gsap-ui #services .anim-eyebrow {
  transform: translateX(-40px);
}

html.gsap-ui #services .anim-headline,
html.gsap-ui #confiance .trust-score > .anim-headline {
  transform: translateY(30px);
}

html.gsap-ui #services .anim-service {
  transform: translateY(36px);
}

html.gsap-ui #confiance .anim-trust {
  transform: translateX(48px);
}

html.gsap-ui #confiance .anim-review {
  transform: translateY(30px);
}

html.gsap-ui .results-section {
  opacity: 0;
  transform: scale(0.97);
}

html.gsap-ui .cta-button {
  transition:
    background-color var(--ease-ui),
    border-color var(--ease-ui),
    opacity var(--ease-ui);
}

html.gsap-ui .hero-actions .cta-button,
html.gsap-ui .hero-actions .secondary-button {
  opacity: 0;
  transform: scale(0.95);
}

html.gsap-ui .cta-button:hover {
  transform: none;
  box-shadow: var(--cta-shadow);
}

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

.page-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 0 var(--shell-inline-pad) clamp(18px, 2vw, 28px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(16px, 2vw, 28px);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(14px, 1.4vw, 20px);
  padding-bottom: clamp(14px, 1.4vw, 20px);
  padding-left: max(16px, calc((100vw - min(100vw, var(--page-max))) / 2 + var(--shell-inline-pad)));
  padding-right: max(16px, calc((100vw - min(100vw, var(--page-max))) / 2 + var(--shell-inline-pad)));
  border: none;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    border-color 0.35s ease;
}

html.js-motion .site-header {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    border-color 0.35s ease;
}

html.js-motion .site-header.header-in {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
}

.site-header .header-nav {
  grid-column: 2;
  justify-self: center;
}

.site-header .header-aside {
  grid-column: 3;
  justify-self: end;
}

.header-aside {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--ease-ui);
}

.brand:hover {
  opacity: 0.92;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 3vw, 52px);
  height: clamp(42px, 3vw, 52px);
  border-radius: var(--radius-md);
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.header-phone,
.contact-phone {
  font-family: "Barlow Condensed", Arial, sans-serif;
}

.brand-copy strong {
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 0.95;
}

.brand-copy span,
.header-contact-label,
.eyebrow,
.contact-lines span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy span,
.header-contact-label {
  color: var(--muted);
}

.header-nav {
  display: inline-flex;
  justify-content: center;
  gap: 20px;
}

.header-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #dfdfdf;
  transition: color var(--ease-ui), opacity var(--ease-ui);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.header-nav a:hover {
  color: var(--white);
  opacity: 0.95;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-phone {
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 0.95;
  color: var(--white);
  transition: opacity var(--ease-ui);
}

.header-phone:hover {
  opacity: 0.9;
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color var(--ease-ui),
    border-color var(--ease-ui),
    opacity var(--ease-ui);
}

.cta-button {
  min-width: clamp(120px, 8vw, 148px);
  height: clamp(42px, 3vw, 48px);
  padding: 0 clamp(16px, 1.2vw, 20px);
  background: var(--red);
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--cta-shadow);
}

.cta-button:hover {
  box-shadow: 0 8px 32px rgba(239, 43, 45, 0.55);
  transform: scale(1.03);
}

.cta-button:active {
  transform: scale(1);
}

.cta-large {
  min-width: clamp(190px, 14vw, 230px);
  height: clamp(46px, 3.4vw, 54px);
  font-size: clamp(18px, 1.45vw, 22px);
}

.secondary-button {
  height: clamp(46px, 3.4vw, 54px);
  padding: 0 clamp(16px, 1.2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 700;
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  margin-top: 0;
  flex: 1 0 auto;
}

.hero,
.services-section,
.results-section,
.trust-section {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(24, 24, 24, 0.94);
  box-shadow: var(--panel-shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  column-gap: 0;
  min-height: calc(90vh + var(--hero-overlap));
  height: calc(90vh + var(--hero-overlap));
  max-height: calc(90vh + var(--hero-overlap));
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-top: calc(-1 * var(--hero-overlap));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.985) 0%, rgba(8, 8, 8, 0.96) 18%, rgba(8, 8, 8, 0.88) 34%, rgba(8, 8, 8, 0.66) 50%, rgba(8, 8, 8, 0.34) 66%, rgba(8, 8, 8, 0.12) 82%, rgba(8, 8, 8, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0.28) 100%),
    url("assets/1.jpg");
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.985) 0%, rgba(8, 8, 8, 0.96) 18%, rgba(8, 8, 8, 0.88) 34%, rgba(8, 8, 8, 0.66) 50%, rgba(8, 8, 8, 0.34) 66%, rgba(8, 8, 8, 0.12) 82%, rgba(8, 8, 8, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0.28) 100%),
    image-set(
      url("assets/hero-desktop.webp") type("image/webp") 1x,
      url("assets/1.jpg") type("image/jpeg") 1x
    );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  justify-self: stretch;
  width: min(56vw, 820px);
  max-width: calc(100% - max(60px, calc((100vw - min(100vw, var(--page-max))) / 2 + var(--shell-inline-pad))) - clamp(16px, 2vw, 28px));
  min-height: 0;
  margin-left: 0;
  box-sizing: border-box;
  padding-top: var(--hero-overlap);
  padding-right: clamp(16px, 2vw, 28px);
  padding-bottom: 0;
  padding-left: max(60px, calc((100vw - min(100vw, var(--page-max))) / 2 + var(--shell-inline-pad)));
  overflow-y: auto;
}

html.js-motion .hero-content {
  opacity: 0;
  transition: opacity 0.55s ease 0.2s;
}

html.js-motion .hero-content.hero-content-in {
  opacity: 1;
}


.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-weight: 800;
  line-height: 1;
}

.hero .eyebrow {
  margin: 0 0 26px;
}

.section-top .eyebrow,
.trust-score .eyebrow,
.contact-main .eyebrow {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.section-top h2,
.trust-score h2,
.contact-main h2 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.trust-score h2,
.contact-main h2 {
  margin-bottom: 40px;
}

.hero-title {
  margin: 0 0 32px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

html.js-motion .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--w, 0) * 80ms);
}

html.js-motion .hero-words-ready .hero-word {
  opacity: 1;
  transform: translateX(0);
}

.hero-text,
.section-intro,
.trust-score p,
.contact-note {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  color: #d0d0d0;
}

.hero-text {
  max-width: none;
  margin: 0 0 42px;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.72;
  color: #d0d0d0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.services-section,
.results-section,
.trust-section {
  border-top: 1px solid var(--separator);
  padding-top: var(--section-vpad);
  padding-bottom: var(--section-vpad);
  margin-top: 0;
  margin-bottom: 0;
}

.section-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
}

.results-section-intro,
.services-section-intro {
  grid-template-columns: 1fr;
  max-width: 100%;
}


.section-top h2 {
  font-size: clamp(30px, 2.6vw, 40px);
}

.section-intro {
  margin: 0;
  max-width: 500px;
  justify-self: end;
  padding-top: 2px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 0;
}

html.js-motion .anim-service {
  opacity: 0;
  transform: translateY(24px);
}

html.js-motion .services-section.is-in .anim-service {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: calc(var(--col, 0) * 60ms);
}

.service-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 0 clamp(16px, 2vw, 22px);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.service-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.service-card h3,
.trust-point h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.service-card h3 {
  position: relative;
  font-size: clamp(22px, 1.5vw, 25px);
  line-height: 1.15;
  font-weight: 800;
  min-height: 0;
  display: block;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 12px;
  margin-bottom: clamp(10px, 1.2vw, 14px);
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 24px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 100%;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.trust-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "score points"
    "carousel carousel";
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  scroll-margin-top: 80px;
}

html.js-motion .anim-eyebrow {
  opacity: 0;
  transform: translateX(-30px);
}

html.js-motion .anim-headline {
  opacity: 0;
  transform: translateY(30px);
}

html.js-motion .anim-footer {
  opacity: 0;
  transform: translateY(18px);
}

html.js-motion .services-section.is-in .anim-eyebrow,
html.js-motion .results-section.is-in .anim-eyebrow,
html.js-motion .trust-section.is-in .anim-eyebrow,
html.js-motion .contact-section.is-in .anim-eyebrow {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

html.js-motion .services-section.is-in .anim-headline,
html.js-motion .results-section.is-in .anim-headline,
html.js-motion .trust-section.is-in .anim-headline,
html.js-motion .contact-section.is-in .anim-headline {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: 0.1s;
}

html.js-motion .trust-section .anim-trust {
  opacity: 0;
  transform: translateX(28px);
}

html.js-motion .trust-section.is-in .anim-trust {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
  transition-delay: calc(var(--trust-i, 0) * 40ms);
}

html.js-motion .trust-section .anim-review {
  opacity: 0;
  transform: translateY(30px);
}

html.js-motion .trust-section.is-in .anim-review {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--review-i, 0) * 80ms);
}

html.js-motion .site-footer.is-in .anim-footer {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--footer-i, 0) * 90ms);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.ba-grid__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ba-grid__item--featured {
  grid-column: 1 / -1;
}

.ba-grid .before-after {
  margin-bottom: 0;
}

.ba-slider-label {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.before-after {
  --split: 50%;
  width: 100%;
  margin-bottom: 20px;
}

.before-after__inner {
  container-type: inline-size;
  container-name: beforeafter;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 520px);
  margin: 0 auto;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  border-radius: 12px;
}

.before-after__inner--tall {
  aspect-ratio: auto;
  max-height: none;
  height: clamp(500px, 62vh, 680px);
}

.before-after__inner--short {
  aspect-ratio: auto;
  max-height: none;
  height: 280px;
}

.before-after__texture {
  position: absolute;
  inset: 0;
  background-color: var(--ba-placeholder);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.16));
}

.before-after__texture--after {
  opacity: 0.92;
  filter: brightness(1.05) contrast(1.02);
}

.before-after__base {
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)),
    url("assets/Avant.jpeg");
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)),
    image-set(
      url("assets/avant.webp") type("image/webp") 1x,
      url("assets/Avant.jpeg") type("image/jpeg") 1x
    );
}

.before-after__clip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--split);
  overflow: hidden;
  z-index: 2;
}

.before-after__after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100cqi;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
    url("assets/Apr%C3%A8s.jpeg");
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
    image-set(
      url("assets/apres.webp") type("image/webp") 1x,
      url("assets/Apr%C3%A8s.jpeg") type("image/jpeg") 1x
    );
}

.before-after__labels {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(12px, 2vw, 24px);
}

.before-after__label {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(0, 0, 0, 0.35);
}

.before-after__label--before {
  color: var(--white);
}

.before-after__label--after {
  color: var(--white);
}

.before-after__rail {
  position: absolute;
  left: var(--split);
  top: 0;
  bottom: 0;
  width: 44px;
  margin-left: -22px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.before-after__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.before-after__handle {
  position: relative;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--white);
  cursor: grab;
  box-shadow:
    0 0 0 2px rgba(239, 43, 45, 0.65),
    0 0 18px rgba(239, 43, 45, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.before-after__handle:active {
  cursor: grabbing;
  transform: scale(0.96);
}

.before-after__handle-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.before-after-caption {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.trust-card {
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.trust-score {
  grid-area: score;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  overflow: visible;
}

.trust-carousel-shell {
  grid-area: carousel;
  --trust-carousel-gap: 16px;
  --trust-pad-x: 24px;
  --trust-visible: 4.5;
  --trust-gap-slots: 4;
  --trust-fade-width: clamp(40px, 6.5vw, 96px);
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  min-width: 0;
  container-type: inline-size;
  container-name: trustcarousel;
}

.trust-carousel-shell::before,
.trust-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--trust-fade-width);
  z-index: 4;
  pointer-events: none;
}

.trust-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, #0f0f0f 0%, rgba(15, 15, 15, 0.86) 28%, rgba(15, 15, 15, 0.46) 62%, rgba(15, 15, 15, 0) 100%);
}

.trust-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0.86) 28%, rgba(15, 15, 15, 0.46) 62%, rgba(15, 15, 15, 0) 100%);
}

.trust-carousel__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-right: var(--trust-pad-x);
  box-sizing: border-box;
}

.trust-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.trust-carousel__btn:hover {
  transform: scale(1.1);
}

.trust-carousel__btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.trust-carousel__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.trust-carousel__viewport:active {
  cursor: grabbing;
}

.trust-carousel__track {
  display: flex;
  flex-direction: row;
  gap: var(--trust-carousel-gap);
  width: max-content;
  padding: 0 var(--trust-pad-x) 8px;
  box-sizing: border-box;
}

/* Auto marquee loop (transform-based, seamless) */
.trust-carousel-shell.trust-marquee .trust-carousel__track {
  --trust-marquee-duration: 60s; /* overridden by JS */
  --trust-marquee-distance: -1200px; /* overridden by JS */
  will-change: transform;
  animation: trustMarquee var(--trust-marquee-duration) linear infinite;
}

.trust-carousel-shell.trust-marquee:hover .trust-carousel__track,
.trust-carousel-shell.trust-marquee.is-paused .trust-carousel__track,
.trust-carousel-shell.trust-marquee:focus-within .trust-carousel__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .trust-carousel-shell.trust-marquee .trust-carousel__track {
    animation: none;
    transform: none;
  }
}

@keyframes trustMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--trust-marquee-distance), 0, 0);
  }
}

.trust-review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0
    calc(
      (
          100cqi - (2 * var(--trust-pad-x)) - var(--trust-gap-slots) * var(--trust-carousel-gap)
        ) / var(--trust-visible)
    );
  width: calc(
    (100cqi - (2 * var(--trust-pad-x)) - var(--trust-gap-slots) * var(--trust-carousel-gap)) / var(--trust-visible)
  );
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trust-review-card:hover {
  border-color: rgba(239, 43, 45, 0.35);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.trust-review-card__google {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.trust-review-card__g-icon {
  display: block;
  flex-shrink: 0;
}

.trust-review-card__google-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.trust-review-card__stars {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.trust-review-card__star-dim {
  color: rgba(255, 255, 255, 0.22);
}

.trust-review-card__text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  white-space: pre-line;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.trust-review-card__more {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.trust-review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.trust-review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #3a1214;
  color: #ef2b2d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.trust-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-review-card__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.trust-review-card__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
  .trust-carousel-shell {
    --trust-visible: 2.5;
    --trust-gap-slots: 2;
  }
}

@media (max-width: 640px) {
  .trust-carousel-shell {
    --trust-visible: 1.5;
    --trust-gap-slots: 1;
  }
}

.trust-points {
  grid-area: points;
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  align-content: start;
}

.trust-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 2vw, 20px);
  padding: 0 0 clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid var(--separator);
  border-left: none;
}

.trust-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 1em;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.trust-point h3 {
  font-size: 24px;
  line-height: 1;
}

.trust-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(18px, 1.6vw, 24px);
  padding: var(--section-vpad) var(--section-pad);
  align-items: stretch;
  margin-top: 36px;
}

.contact-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-phone {
  display: inline-block;
  margin: 10px 0 10px;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 0.95;
  transition: opacity var(--ease-ui);
}

.contact-phone:hover {
  opacity: 0.9;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-lines p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}

.contact-lines p:last-child {
  border-bottom: 0;
}

.contact-lines span {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-shadow: 0 0 20px rgba(239, 43, 45, 0.25);
}

.contact-lines a {
  color: inherit;
  transition: color var(--ease-ui), opacity var(--ease-ui);
}

.contact-lines a:hover {
  color: var(--yellow);
  opacity: 0.92;
}

.map-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  min-height: 100%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  margin: clamp(12px, 1.6vw, 18px) 0 0;
  transform: translateZ(0);
  transform-origin: center center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.map-card:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.map-card__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: inherit;
  overflow: hidden;
  /* Keep map gestures (pinch zoom) smooth on mobile */
  touch-action: pan-x pan-y pinch-zoom;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
  border-radius: inherit;
  filter: brightness(0.86) contrast(1.12) saturate(0.95);
  pointer-events: auto;
}

.map-card__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(860px 420px at 22% 88%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.50) 100%);
}

/* (Removed) custom marker overlay */
.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 14px 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__icon {
  display: none;
}

.site-footer__label {
  min-width: 0;
  white-space: nowrap;
}

.site-footer__item:hover {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.site-footer__item:focus-visible {
  outline: 2px solid rgba(239, 43, 45, 0.65);
  outline-offset: 3px;
}

.site-footer__fineprint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.site-footer__dot {
  color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .site-footer {
    gap: 10px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .site-footer__item {
    width: auto;
    justify-content: center;
  }

  .site-footer__fineprint {
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-motion .site-header,
  html.js-motion .hero-word,
  html.js-motion .hero-content,
  html.js-motion .anim-eyebrow,
  html.js-motion .anim-headline,
  html.js-motion .anim-service,
  html.js-motion .trust-section .anim-trust,
  html.js-motion .trust-section .anim-review {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cta-button,
  .secondary-button,
  .service-card,
  .header-nav a,
  .brand,
  .header-phone,
  .contact-phone,
  .site-footer a {
    transition: none;
  }

  .header-nav a::after {
    display: none;
  }

  .service-card h3::after {
    width: 100%;
    transition: none;
  }

  .cta-button:hover {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

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

  .section-top,
  .contact-section,
  .trust-section,
  .results-section .section-top {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-areas:
      "score"
      "points"
      "carousel";
  }

  .section-intro {
    justify-self: start;
    max-width: none;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  body {
    min-width: 0;
  }

  .page-shell {
    width: 100%;
    padding: 0 14px 24px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
    row-gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .brand,
  .site-header .header-aside {
    grid-column: 1;
    justify-self: start;
  }

  .header-aside {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .header-contact {
    align-items: flex-start;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.985) 0%, rgba(8, 8, 8, 0.96) 18%, rgba(8, 8, 8, 0.88) 34%, rgba(8, 8, 8, 0.66) 50%, rgba(8, 8, 8, 0.34) 66%, rgba(8, 8, 8, 0.12) 82%, rgba(8, 8, 8, 0) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0.28) 100%),
      image-set(
        url("assets/hero-mobile.webp") type("image/webp") 1x,
        url("assets/1.jpg") type("image/jpeg") 1x
      );
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 76vh;
    max-height: none;
    overflow: hidden;
    padding: var(--section-vpad) 0 var(--section-vpad);
    background-position: 64% top;
  }

  .hero-content {
    grid-row: 1;
    padding: 24px 20px 16px 24px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    align-self: start;
    justify-self: stretch;
    overflow-y: visible;
  }


  .hero-title {
    font-size: clamp(36px, 9vw, 52px);
  }

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

  .section-top {
    gap: 12px;
  }

  .contact-lines p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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