:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f3f3ef;
  --muted: rgba(243, 243, 239, 0.68);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
  --mobile-header-height: 88px;
  --mobile-cta-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: #050505;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0b0b0b 0%, #030303 100%);
  scroll-snap-type: y proximity;
}

body.nav-open {
  overflow: hidden;
}

body.intro-running {
  overflow: hidden;
}

body.intro-running .page-shell,
body.intro-running .noise {
  opacity: 0;
  transform: scale(0.998);
  filter: none;
  clip-path: none;
  transition-delay: 0s;
}

body.intro-running.intro-reveal .page-shell,
body.intro-running.intro-reveal .noise {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}

body.intro-running .noise,
body.intro-running.intro-reveal .noise {
  opacity: 0.17;
  transform: none;
  filter: none;
  clip-path: none;
  transition-delay: 0s;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button {
  cursor: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.96) 0.95px, transparent 1.2px),
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.78) 0.85px, transparent 1.15px),
    radial-gradient(circle at 35% 75%, rgba(255, 255, 255, 0.54) 0.75px, transparent 1.05px);
  background-size: 140px 140px, 190px 190px, 260px 260px;
  mix-blend-mode: screen;
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-sequence {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(4, 4, 4, 0.98));
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 260ms ease;
}

body.intro-running .intro-sequence {
  opacity: 1;
  pointer-events: auto;
}

body.intro-running.intro-reveal .intro-sequence {
  background: transparent;
  pointer-events: none;
}

body.intro-running.intro-reveal .intro-core {
  animation: introCoreFadeOut 560ms ease forwards;
}

.intro-shutter {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 48%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(4, 4, 4, 0.995));
  transform: translateY(0);
  overflow: visible;
}

.intro-shutter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.92),
    0 0 52px rgba(255, 255, 255, 0.36);
}

.intro-shutter-top {
  top: 0;
}

.intro-shutter-top::after {
  bottom: 0;
}

.intro-shutter-bottom {
  bottom: 0;
}

.intro-shutter-bottom::after {
  top: 0;
}

body.intro-running.intro-reveal .intro-shutter-top {
  animation: introShutterTopOpen 5.2s cubic-bezier(0.18, 0.84, 0.2, 1) forwards;
}

body.intro-running.intro-reveal .intro-shutter-bottom {
  animation: introShutterBottomOpen 5.2s cubic-bezier(0.18, 0.84, 0.2, 1) forwards;
}

body.intro-running.intro-reveal .intro-shutter::after {
  animation: introShutterGlow 4.1s cubic-bezier(0.18, 0.84, 0.2, 1) forwards;
}

.intro-core {
  position: relative;
  width: min(52vw, 360px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.intro-logo-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.52);
  animation: introLogoEntrance 3.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-logo-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.intro-logo-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 130%;
  height: 130%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 64%);
  transform: translate(-50%, -50%);
  filter: blur(18px);
  animation: introGlowPulse 2.1s ease-in-out infinite;
}

.intro-howl-ring,
.intro-dust {
  position: absolute;
  pointer-events: none;
}

.intro-tv-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 3px;
  opacity: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.95),
    0 0 72px rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%) scaleX(0.2);
  will-change: transform, opacity;
}

body.intro-running.intro-reveal .intro-tv-line {
  animation: introTvLine 0.4s cubic-bezier(0.16, 0.84, 0.2, 1) forwards;
}

.intro-tv-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.16));
  mix-blend-mode: screen;
}

body.intro-running.intro-reveal .intro-tv-flash {
  animation: introTvFlash 2.4s cubic-bezier(0.16, 0.84, 0.2, 1) forwards;
}

.intro-howl-ring {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0;
}

.ring-one {
  inset: 18%;
  animation: introHowl 1.5s ease-out 0.55s forwards;
}

.ring-two {
  inset: 8%;
  animation: introHowl 1.5s ease-out 0.72s forwards;
}

.ring-three {
  inset: -2%;
  animation: introHowl 1.5s ease-out 0.9s forwards;
}

.intro-dust {
  top: 50%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0;
}

.dust-left {
  left: -20px;
  transform: translateY(-50%) rotate(-10deg);
  animation: introDustLeft 1.2s ease-out 1.7s forwards;
}

.dust-right {
  right: -20px;
  transform: translateY(-50%) rotate(10deg);
  animation: introDustRight 1.2s ease-out 1.7s forwards;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, box-shadow 180ms ease;
  mix-blend-mode: difference;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-active {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.06);
}

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

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition:
    opacity 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    clip-path 1120ms cubic-bezier(0.16, 0.84, 0.2, 1);
  will-change: opacity, transform, filter, clip-path;
}

main > section {
  min-height: 100svh;
  padding: 128px 0 42px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  scroll-margin-top: 0;
  display: grid;
  align-content: center;
  opacity: 0.42;
  transform: translateY(14px);
  transition:
    opacity 560ms ease,
    transform 640ms cubic-bezier(0.16, 0.84, 0.2, 1);
}

.section,
.contact {
  align-content: center;
  padding-top: 112px;
  padding-bottom: 24px;
}

.faq,
.contact {
  align-content: start;
  padding-top: 96px;
  padding-bottom: 18px;
}

main > section#accueil {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  padding-top: 72px;
  padding-bottom: 6px;
  overflow: clip;
}

main > section:first-child {
  opacity: 1;
  transform: translateY(0);
}

main > section.is-inview {
  opacity: 1;
  transform: translateY(0);
}

main > section[data-free-scroll].is-inview {
  opacity: 1;
  transform: none;
}

@media (min-width: 1024px) {
  #transformations,
  #avis {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  #transformations,
  #avis,
  #transformations.is-inview,
  #avis.is-inview {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 6px;
  left: 50%;
  width: min(calc(100% - 32px), var(--content));
  transform: translateX(-50%);
  z-index: 30;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.brand span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand strong,
.site-nav a,
.eyebrow,
.service-tag,
.tier,
.comparison-label,
.contact-card p {
  font-family: "Syne", sans-serif;
}

.brand strong {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.site-nav-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-nav a.is-active::after {
  display: none;
}

.site-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav-toggle,
.mobile-nav-backdrop,
.mobile-cta-bar {
  display: none;
}

.mobile-nav-toggle {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  place-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

body.nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 4px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.nav-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 1));
  transition: width 120ms linear;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
}

.mobile-cta-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 34;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.mobile-cta-primary {
  color: #080808;
  background: linear-gradient(180deg, #f7f7f3 0%, #d8d8d2 100%);
}

.mobile-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero,
.contact-shell {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 42px;
  min-height: 0;
  height: calc(100svh - 82px);
}

.hero-copy {
  max-width: 520px;
  display: grid;
  align-content: center;
  align-self: center;
  justify-items: start;
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 9.2ch;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 0.92;
  text-align: left;
}

.hero-line {
  display: block;
}

.hero-line-main {
  max-width: 9ch;
  white-space: normal;
}

.hero-line-sub {
  display: block;
  margin-top: 10px;
  max-width: 13ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  white-space: normal;
}

.hero-text,
.service-card p,
.comparison-card p,
.price-card ul,
.contact-copy p,
.contact-card span,
.contact-list {
  color: var(--muted);
}

.hero-text {
  max-width: 33ch;
  margin: 16px 0 0;
  line-height: 1.68;
  font-size: 0.98rem;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin: 22px 0 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 16px 0 0;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #080808;
  background: linear-gradient(180deg, #f7f7f3 0%, #d8d8d2 100%);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.services-grid,
.comparison-grid,
.pricing-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.hero-logo-panel,
.service-card,
.comparison-card,
.price-card,
.contact-shell,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
}

.service-card,
.comparison-card,
.price-card,
.contact-card {
  padding: 24px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: center;
  align-self: center;
  transform: translateY(-8px);
}

.hero-logo-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 14px;
  overflow: hidden;
  animation: heroPanelFloat 2.1s ease-in-out infinite, heroPanelShimmer 4.8s ease-in-out infinite;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease;
}

.hero-logo-panel[data-corner="tl"]::before {
  opacity: 1;
  background: radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.32), transparent 34%);
}

.hero-logo-panel[data-corner="tr"]::before {
  opacity: 1;
  background: radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.32), transparent 34%);
}

.hero-logo-panel[data-corner="bl"]::before {
  opacity: 1;
  background: radial-gradient(circle at 14% 86%, rgba(255, 255, 255, 0.32), transparent 34%);
}

.hero-logo-panel[data-corner="br"]::before {
  opacity: 1;
  background: radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.32), transparent 34%);
}

.hero-logo-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.hero-logo-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 38%, transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  animation: heroGlowPulse 1.45s ease-in-out infinite;
}

.hero-visual:hover .hero-logo-panel,
.hero-visual:focus-within .hero-logo-panel {
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
}

.hero-logo-panel[data-corner="tl"] {
  transform: translateY(-12px) rotate(-1.8deg) scale(1.045);
  box-shadow: -24px 34px 140px rgba(255, 255, 255, 0.09), 0 36px 124px rgba(0, 0, 0, 0.54);
}

.hero-logo-panel[data-corner="tr"] {
  transform: translateY(-12px) rotate(1.8deg) scale(1.045);
  box-shadow: 24px 34px 140px rgba(255, 255, 255, 0.09), 0 36px 124px rgba(0, 0, 0, 0.54);
}

.hero-logo-panel[data-corner="bl"] {
  transform: translateY(-7px) rotate(1.2deg) scale(1.035);
  box-shadow: -20px 28px 126px rgba(255, 255, 255, 0.08), 0 32px 114px rgba(0, 0, 0, 0.52);
}

.hero-logo-panel[data-corner="br"] {
  transform: translateY(-7px) rotate(-1.2deg) scale(1.035);
  box-shadow: 20px 28px 126px rgba(255, 255, 255, 0.08), 0 32px 114px rgba(0, 0, 0, 0.52);
}

.hero-visual:hover .hero-logo-panel img,
.hero-visual:focus-within .hero-logo-panel img {
  transform: scale(1.06);
  filter: contrast(1.04) brightness(1.02);
}

.hero-visual:hover .hero-logo-glow,
.hero-visual:focus-within .hero-logo-glow {
  animation-duration: 1.15s;
  opacity: 1;
}

.hero-backdrop-word {
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(5rem, 13vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.section-transition {
  position: fixed;
  left: 50%;
  top: 112px;
  z-index: 46;
  width: min(calc(100vw - 56px), 680px);
  height: 88px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-transition.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.section-transition-track {
  position: absolute;
  inset: 50% 16px auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateY(-50%);
}

.section-transition-car {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 188px;
  height: auto;
  transform: translateY(-50%) translateX(-28%);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.42));
}

.section-transition.is-active .section-transition-car {
  animation: sectionCarDrive 900ms cubic-bezier(0.18, 0.82, 0.18, 1);
}

.section-transition-car svg {
  display: block;
  width: 100%;
  height: auto;
}

.contact-highlight {
  display: grid;
  align-items: center;
}

.contact-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.contact-highlight .contact-shell {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
}

.contact-inline-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.section {
  gap: 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 14px;
  justify-items: center;
  text-align: center;
}

.section-heading-centered {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.section-heading-centered h2 {
  max-width: 12ch;
}

.faq .section-heading-centered h2 {
  max-width: none;
  white-space: nowrap;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.service-card h3,
.comparison-card h3,
.price-card h3 {
  margin: 10px 0 0;
  font-family: "Syne", sans-serif;
  line-height: 1.05;
  font-size: 1.15rem;
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 240px;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  text-align: center;
}

.service-card p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card ul,
.contact-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.service-tag,
.tier,
.comparison-label,
.contact-card p {
  display: inline-block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.service-tag {
  margin-top: 2px;
}

.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.results-card,
.review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
}

.results-card-heading {
  display: grid;
  gap: 6px;
}

.results-card-heading h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.results-card-primary {
  gap: 16px;
  padding: 18px;
}

.results-card-secondary {
  grid-column: 1 / -1;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.results-media-frame {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 48%),
    #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.results-expand-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.results-expand-button svg {
  width: 18px;
  height: 18px;
}

.results-media-frame:hover .results-expand-button,
.results-media-frame:focus-within .results-expand-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.results-expand-button:hover,
.results-expand-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.results-media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.results-card .results-media-frame {
  aspect-ratio: 9 / 14;
}

.results-card-secondary .results-media-frame {
  aspect-ratio: 16 / 8.8;
}

.results-media-frame img,
.results-media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-media-frame:hover .results-video,
.results-media-frame:focus-within .results-video {
  transform: scale(1.02);
}

.results-copy {
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
}

.results-kicker {
  display: inline-block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.results-copy h3,
.review-card strong {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.results-copy p:last-child,
.review-card p {
  margin: 0;
  line-height: 1.62;
}

.results-video {
  background: #050505;
  transition: transform 240ms ease;
}

.results-card-video .results-copy {
  gap: 8px;
}

.review-card {
  justify-items: center;
  text-align: center;
  align-content: start;
  min-height: 248px;
  width: auto;
  min-width: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 22px;
  border-radius: 26px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.review-stars {
  color: #f2c94c;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews .section-heading-centered h2 {
  max-width: none;
  white-space: nowrap;
}

.reviews-carousel {
  display: grid;
  gap: 18px;
  position: relative;
  overflow: visible;
  margin-inline: 68px;
}

.reviews-control {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.3rem;
  position: absolute;
  top: 50%;
  z-index: 3;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  transform: translateY(-50%);
  cursor: pointer;
}

.reviews-control:hover {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.reviews-control-prev {
  left: -68px;
}

.reviews-control-next {
  right: -68px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.reviews-mobile-nav,
.reviews-dots {
  display: none;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.reviews-dot.is-active {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.18);
}

.comparison-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.comparison-visual {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0f0f0f, #060606);
}

.comparison-surface {
  position: absolute;
  inset: 0;
}

.comparison-before {
  filter: grayscale(1) contrast(0.92) brightness(0.6);
}

.comparison-after {
  clip-path: inset(0 0 0 55%);
  animation: revealAfter 6s ease-in-out infinite;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05);
  animation: moveDivider 6s ease-in-out infinite;
}

.comparison-label {
  position: absolute;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.label-before {
  left: 16px;
}

.label-after {
  right: 16px;
}

.interior-before {
  background:
    radial-gradient(circle at 30% 72%, rgba(92, 92, 92, 0.7), transparent 20%),
    radial-gradient(circle at 60% 26%, rgba(78, 78, 78, 0.55), transparent 24%),
    linear-gradient(180deg, #494949, #141414);
}

.interior-after {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.38), transparent 16%),
    linear-gradient(180deg, #d8d8d4, #5a5a5a 45%, #0e0e0e);
}

.wheel-before {
  background:
    radial-gradient(circle at center, #181818 16%, #4c4c4c 18%, #1e1e1e 29%, #676767 31%, #0d0d0d 46%, #3e3e3e 50%, #1a1a1a 61%),
    linear-gradient(180deg, #5d5d5d, #111111);
}

.wheel-after {
  background:
    radial-gradient(circle at center, #0f0f0f 16%, #f3f3ee 18%, #1a1a1a 29%, #f9f9f4 31%, #0d0d0d 46%, #ecece6 50%, #131313 61%),
    linear-gradient(180deg, #d6d6d2, #0f0f0f);
}

.body-before {
  background:
    linear-gradient(180deg, rgba(90, 90, 90, 0.28), transparent 40%),
    linear-gradient(135deg, #525252, #141414 42%, #2f2f2f);
}

.body-after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #f3f3ef, #3e3e3e 36%, #0a0a0a 72%);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing {
  align-content: center;
  padding-top: 82px;
  padding-bottom: 18px;
}

.faq-list {
  column-count: 2;
  column-gap: 14px;
  max-width: none;
}

.faq-item {
  display: block;
  break-inside: avoid;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 18px 56px 18px 20px;
  font-family: "Syne", sans-serif;
  font-size: 0.94rem;
  line-height: 1.28;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
}

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

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.price {
  margin: 0 0 6px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.95rem, 3.6vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

.price span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.price-card-essential {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.014);
}

.price-card-signature {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.5);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
}

.price-card-elite {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.018);
}

.plan-badge {
  align-self: center;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card-essential .plan-badge + .plan-badge {
  margin-top: -4px;
}

.plan-badge-strong {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
  min-height: 42px;
  padding: 0 16px;
}

.price-card ul {
  margin: 12px 0 0;
  padding-left: 16px;
  width: min(100%, 24rem);
  text-align: left;
  line-height: 1.48;
  font-size: 0.84rem;
}

.price-card h3 {
  font-size: 0.98rem;
  line-height: 1.08;
}

.contact-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  min-height: min(54svh, 520px);
  gap: 26px;
  padding: 28px 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.01);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.contact-card-highlight {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.024);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.contact-intro {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
}

.contact-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-card-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.contact-card strong {
  font-family: "Syne", sans-serif;
  font-size: 1.18rem;
  line-height: 1.08;
  max-width: none;
}

.contact-copy {
  max-width: 54ch;
}

.contact .section-heading-centered h2,
.contact-copy h2 {
  max-width: none;
  white-space: nowrap;
}

.contact .contact-copy {
  justify-items: start;
}

.contact .section-heading {
  margin-bottom: 22px;
}

.contact .contact-copy .eyebrow,
.contact .contact-copy h2 {
  text-align: center;
  justify-self: center;
}

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

.contact-social-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 168px;
  padding: 22px 16px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.09), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.contact-social-card:first-child {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.contact-social-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.contact-social-card svg {
  width: 32px;
  height: 32px;
  transition: transform 220ms ease;
}

.contact-social-card span {
  font-family: "Syne", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.contact-social-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.contact-social-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-social-card:hover svg {
  transform: scale(1.12);
}

.contact-social-card:hover em {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
}

.contact-copy p {
  max-width: 34ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-inline-points {
  margin-top: 0;
  gap: 10px;
  justify-content: center;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.contact-template {
  margin-top: 18px;
  padding: 20px 20px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.contact-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-template-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-template-copy:hover,
.contact-template-copy:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.contact-template p {
  max-width: none;
}

.contact-template-body {
  display: grid;
  gap: 10px;
}

.contact-template-body p {
  margin: 0;
  line-height: 1.72;
}

.contact-template-question {
  white-space: nowrap;
}

.contact-template strong {
  font-weight: 600;
  color: var(--text);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 36px;
  margin-top: 84px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  transition: transform 180ms ease;
  will-change: transform;
}

@keyframes revealAfter {
  0%,
  100% {
    clip-path: inset(0 0 0 74%);
  }
  50% {
    clip-path: inset(0 0 0 24%);
  }
}

@keyframes moveDivider {
  0%,
  100% {
    left: 26%;
  }
  50% {
    left: 76%;
  }
}

@keyframes contactSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(36px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(36px) rotate(-360deg);
  }
}

@keyframes carFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(0.86);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes heroPanelFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  }
  50% {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.46);
  }
}

@keyframes heroPanelShimmer {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.22);
  }
}

@keyframes introLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.76);
  }
  14% {
    opacity: 1;
  }
  34% {
    transform: translateY(0) scale(1.04);
  }
  68% {
    transform: translateY(-4px) scale(1);
  }
  84% {
    opacity: 1;
    transform: translateY(-10px) scale(0.98);
  }
  100% {
    opacity: 0;
    transform: translateY(-110px) scale(0.64);
  }
}

@keyframes introGlowPulse {
  0%,
  100% {
    opacity: 0.56;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.16);
  }
}

@keyframes introHowl {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  24% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes introDustLeft {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(0) rotate(-10deg) scaleX(0.4);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-70px) rotate(-10deg) scaleX(1.2);
  }
}

@keyframes introDustRight {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(0) rotate(10deg) scaleX(0.4);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(70px) rotate(10deg) scaleX(1.2);
  }
}

@keyframes introTvLine {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.12);
  }
  6% {
    opacity: 1;
  }
  9% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  12% {
    opacity: 0.02;
    transform: translate(-50%, -50%) scaleX(1.02);
  }
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(1.02);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(1.03);
  }
}

@keyframes introTvFlash {
  0%,
  18% {
    opacity: 0;
  }
  28% {
    opacity: 0.14;
  }
  38% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.02;
  }
  100% {
    opacity: 0;
  }
}

@keyframes introShutterGlow {
  0% {
    opacity: 0;
    transform: scaleX(0.18);
  }
  14% {
    opacity: 0.92;
    transform: scaleX(0.45);
  }
  24% {
    opacity: 0.82;
    transform: scaleX(1);
  }
  62% {
    opacity: 0.18;
    transform: scaleX(1.04);
  }
  82% {
    opacity: 0.06;
    transform: scaleX(1.05);
  }
  96% {
    opacity: 0;
    transform: scaleX(1.05);
  }
  100% {
    opacity: 0;
    transform: scaleX(1.06);
  }
}

@keyframes introShutterTopOpen {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-112%);
  }
}

@keyframes introShutterBottomOpen {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(112%);
  }
}

@keyframes introCoreFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
}

@keyframes sectionCarDrive {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-28%) scale(0.96);
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(-50%) translateX(248%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(300%) scale(1.02);
  }
}

@media (max-width: 1100px) {
  .hero,
  .contact-shell,
  .services-grid,
  .comparison-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .results-card-secondary {
    padding: 18px;
  }

  .hero {
    gap: 26px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-logo-panel {
    width: min(100%, 430px);
  }

  .faq-list {
    column-count: 1;
  }

  .service-card:nth-child(2),
  .comparison-card:nth-child(2) {
    transform: none;
  }

  main > section {
    align-content: start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(var(--mobile-header-height) + 12px + env(safe-area-inset-top));
    overflow-x: hidden;
  }

  body.intro-running .site-header,
  body.intro-running .mobile-cta-bar,
  body.intro-running .mobile-nav-backdrop,
  body.intro-running .site-nav {
    opacity: 0;
    pointer-events: none;
  }

  .intro-sequence {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding:
      max(16px, env(safe-area-inset-top))
      16px
      max(16px, env(safe-area-inset-bottom));
  }

  .intro-core {
    position: relative;
    display: grid;
    place-items: center;
    width: min(66vw, 260px);
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .intro-logo-shell {
    width: 100%;
    padding: 16px;
    border-radius: 28px;
    margin-inline: auto;
  }

  .intro-logo-shell img {
    border-radius: 22px;
  }

  body,
  body a,
  body button {
    cursor: auto;
  }

  body {
    scroll-snap-type: y proximity;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 28%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 22%),
      linear-gradient(180deg, #0b0b0b 0%, #040404 100%);
    padding-bottom: calc(var(--mobile-cta-height) + 24px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  .cursor-dot {
    display: none;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--content));
    max-width: 100%;
    overflow-x: clip;
  }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }

  .site-header,
  .site-footer {
    display: grid;
    border-radius: 24px;
  }

  .site-header {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    left: 50%;
    width: min(calc(100vw - 20px), var(--content));
    transform: translateX(-50%);
    margin-top: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    overflow: visible;
  }

  .brand {
    gap: 12px;
    min-width: 0;
    max-width: 100%;
  }

  .brand span {
    max-width: 100%;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand em {
    display: none;
  }

  .mobile-nav-toggle {
    display: grid;
    position: relative;
    justify-self: end;
    z-index: 60;
    place-items: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
      radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 62%),
      rgba(20, 20, 20, 0.92);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.05),
      0 12px 28px rgba(0, 0, 0, 0.3);
    color: var(--text);
    opacity: 1;
    visibility: visible;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .mobile-nav-toggle-icon {
    display: grid;
    gap: 4px;
  }

  .mobile-nav-toggle-icon span {
    width: 19px;
    height: 2.5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.nav-open .mobile-nav-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .mobile-nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .mobile-nav-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: none;
  }

  .site-nav a {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav .nav-cta {
    justify-content: center;
    min-height: 60px;
    margin-top: 2px;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  }

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

  .nav-progress {
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 3px;
    z-index: 42;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  main > section {
    position: relative;
    min-height: auto;
    padding: calc(var(--mobile-header-height) + 18px) 0 calc(var(--mobile-cta-height) + 30px);
    opacity: 1;
    transform: none;
    display: grid;
    align-content: start;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    max-width: 100%;
    overflow-x: clip;
    transition: none;
  }

  main > section.reveal {
    opacity: 1;
    transform: none;
  }

  main > section.is-inview,
  main > section.reveal.is-inview,
  main > section#accueil {
    opacity: 1;
    transform: none;
  }

  main > section:not(#accueil)::before {
    content: none;
  }

  main > section[data-free-scroll] {
    padding-top: calc(var(--mobile-header-height) + 18px);
    padding-bottom: calc(var(--mobile-cta-height) + 30px);
  }

  main > section#accueil {
    min-height: 100svh;
    height: auto;
    max-height: none;
    overflow: visible;
    padding-top: calc(var(--mobile-header-height) + 24px);
    padding-bottom: calc(var(--mobile-cta-height) + 34px);
  }

  .hero-visual {
    order: -1;
    padding-top: 28px;
    justify-self: center;
  }

  .section-transition {
    top: 84px;
    width: min(calc(100vw - 36px), 360px);
    height: 60px;
  }

  .section-transition-car {
    width: 112px;
    left: 8px;
  }

  .hero-backdrop-word {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .hero-line-main,
  .hero-line-sub {
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 {
    width: min(100%, 8.8ch);
    margin-inline: auto;
    font-size: clamp(2.12rem, 10.6vw, 2.85rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  .hero-line-sub {
    max-width: 100%;
    margin-top: 8px;
    font-size: clamp(1.02rem, 4.2vw, 1.26rem);
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 0;
    height: auto;
    gap: 18px;
    max-width: 100%;
    overflow-x: clip;
    justify-items: center;
    align-items: center;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-points {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-points span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    display: none;
  }

  .hero-text {
    margin-top: 14px;
    max-width: 31ch;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-logo-panel {
    width: min(100%, 212px);
    margin-inline: auto;
    padding: 10px;
    transform: none;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .mobile-cta-bar a {
    min-height: 44px;
    font-size: 0.62rem;
    letter-spacing: 0.045em;
    padding: 0 10px;
  }

  .comparison-visual {
    min-height: 240px;
  }

  .results-card,
  .review-card {
    padding: 14px;
    border-radius: 20px;
  }

  .results-card .results-media-frame {
    aspect-ratio: 9 / 13;
  }

  .results-card-secondary .results-media-frame {
    aspect-ratio: 16 / 9.4;
  }

  .results-media-badge {
    top: 12px;
    left: 12px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .reviews-carousel {
    margin-inline: 0;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .reviews-control-prev,
  .reviews-control-next,
  .reviews-mobile-nav {
    display: none;
  }

  .reviews-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .review-card {
    position: relative;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding: 22px 18px 18px;
    gap: 12px;
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .review-card::before {
    content: "“";
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(255, 255, 255, 0.12);
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1;
    pointer-events: none;
  }

  .review-badge {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
  }

  .review-stars {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .review-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .review-card strong {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .contact-shell {
    gap: 16px;
    padding: 18px;
    min-height: auto;
  }

  .price-card-signature {
    transform: none;
  }

  .service-card,
  .comparison-card,
  .price-card,
  .contact-card,
  .hero-logo-panel {
    border-radius: 20px;
    padding: 18px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .contact .section-heading-centered h2 {
    font-size: clamp(1.68rem, 6.6vw, 2.15rem);
    white-space: normal;
  }

  .services-grid,
  .pricing-grid,
  .contact-socials {
    gap: 12px;
  }

  .service-card,
  .price-card,
  .contact-card {
    padding: 18px 16px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .price-card {
    gap: 12px;
  }

  .price-card-signature {
    order: -1;
  }

  .plan-badge,
  .review-badge,
  .results-kicker,
  .service-tag,
  .tier {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .price {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .service-card {
    min-height: 0;
    justify-items: center;
    text-align: center;
  }

  .service-card p {
    max-width: none;
  }

  .service-points {
    justify-content: center;
  }

  .price-card ul {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .results-card-primary,
  .results-card-secondary {
    gap: 12px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .results-card-heading {
    gap: 5px;
  }

  .results-card-heading h3 {
    font-size: 1.14rem;
    line-height: 1.02;
  }

  .results-card-primary .results-media-frame {
    aspect-ratio: 9 / 14.5;
  }

  .results-card-secondary {
    padding: 16px;
  }

  .results-card-secondary .results-media-frame {
    aspect-ratio: 16 / 11.2;
  }

  .results-card-secondary .results-copy {
    max-width: 32ch;
  }

  .results-copy h3 {
    font-size: 1.08rem;
  }

  .results-copy p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .results-video {
    border-radius: 16px;
    background: #000;
  }

  .results-video::-webkit-media-controls-panel {
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.68), rgba(8, 8, 8, 0.92));
  }

  .results-media-badge {
    top: 10px;
    left: 10px;
  }

  .results-expand-button {
    display: inline-flex;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .reviews {
    padding-top: calc(var(--mobile-header-height) + 6px);
  }

  .reviews .section-heading-centered h2,
  .faq .section-heading-centered h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .reviews-carousel {
    padding-bottom: 6px;
    overflow: hidden;
  }

  .reviews-track,
  .faq-list {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .review-card {
    min-height: 0;
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    overflow: hidden;
    padding: 18px;
    gap: 10px;
  }

  .review-card p {
    font-size: 0.92rem;
    line-height: 1.56;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    column-count: unset;
    column-gap: 0;
  }

  .faq-item {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
  }

  .faq,
  .contact {
    padding-top: calc(var(--mobile-header-height) + 10px);
  }

  .faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 0.92rem;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .faq-item p {
    padding: 0 18px 18px;
    overflow-wrap: anywhere;
  }

  .contact-intro {
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .contact-inline-points {
    justify-content: center;
  }

  .contact-copy {
    max-width: 100%;
  }

  .contact-copy p,
  .contact-template-body p {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .contact-template {
    margin-top: 8px;
    padding: 18px 16px;
  }

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

  .contact-template-copy {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .contact-template-question {
    white-space: normal;
  }

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

  .contact-social-card {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    column-gap: 0;
    row-gap: 4px;
    text-align: center;
    padding: 18px 16px;
  }

  .contact-card-highlight {
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .contact-social-card svg {
    grid-row: auto;
  }

  .contact-social-card em {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .site-footer {
    padding: 24px 0 8px;
    margin-top: 36px;
    gap: 8px;
    font-size: 0.84rem;
    text-align: center;
    justify-content: center;
  }

  @media (prefers-reduced-motion: reduce) {
    main > section {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
}

@media (max-width: 760px) {
  .section-transition {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 10px;
  }

  .brand em {
    display: none;
  }

  .brand strong {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .brand span {
    max-width: min(100%, calc(100vw - 178px));
  }

  .brand em {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 10.3vw, 2.72rem);
  }

  .hero-text,
  .contact-copy p,
  .contact-template-body p,
  .review-card p {
    font-size: 0.9rem;
  }
}
