﻿:root {
  --bg-950: #070707;
  --bg-900: #0f0f0f;
  --bg-850: #171717;
  --bg-800: #1f1f1f;
  --red-500: #8f0718;
  --red-400: #b10b1f;
  --red-300: #d10f25;
  --text-100: #f6f6f6;
  --text-300: #cfcfcf;
  --line: rgba(255, 255, 255, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-red: 0 16px 40px rgba(217, 15, 38, 0.28);
}

body[data-theme="brut"] {
  --red-500: #7b0614;
  --red-400: #9b0a1b;
  --red-300: #b90d21;
  --radius-lg: 10px;
  --radius-md: 8px;
}

body[data-theme="luxe"] {
  --red-500: #6d0412;
  --red-400: #8e0618;
  --red-300: #ad0a1f;
  --radius-lg: 20px;
  --radius-md: 14px;
}

body[data-theme="impact"] {
  --red-500: #a9091d;
  --red-400: #d20e26;
  --red-300: #f0152f;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  background: radial-gradient(circle at 12% 10%, #2a090f 0%, var(--bg-950) 35%), var(--bg-950);
  color: var(--text-100);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  display: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
}

.kicker {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-300);
  margin-bottom: 10px;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.1;
}

h1, h2 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.7rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.28rem; }

p {
  margin: 0 0 14px;
  color: var(--text-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--red-500), var(--red-400));
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #9f081b, #c20d22);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.14);
}


.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.65);
  background: rgba(37, 211, 102, 0.16);
  color: #ecfff4;
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.9);
  background: rgba(37, 211, 102, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
}

body[data-theme="brut"] .site-header,
body[data-theme="brut"] .section-dark,
body[data-theme="brut"] .expertise-showcase {
  backdrop-filter: none;
}

body[data-theme="luxe"] .site-header {
  background: rgba(5, 5, 5, 0.86);
}

body[data-theme="impact"] .btn-primary {
  box-shadow: 0 12px 28px rgba(210, 14, 38, 0.42);
}

.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(217, 15, 38, 0.18);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 16px;
}

.header-top-inner p,
.header-top-inner a {
  margin: 0;
  font-size: 0.84rem;
  color: #fff;
  font-weight: 600;
}

.header-top-inner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.36rem;
  margin-left: -44px;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: #efefef;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red-400);
  transition: width 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--red-500), var(--red-400));
  box-shadow: var(--shadow-red);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-cta-alt {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.header-cta-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.7);
  box-shadow: none;
}

.header-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 34px rgba(217, 15, 38, 0.4);
  filter: brightness(1.08);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 28%, rgba(225, 6, 31, 0.28), rgba(225, 6, 31, 0) 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 28%);
  animation: heroAuraDrift 16s ease-in-out infinite;
}

.hero::after {
  z-index: 1;
  left: -35%;
  right: auto;
  width: 60%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  mix-blend-mode: screen;
  animation: heroLightSweep 7.6s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.42) brightness(0.34) contrast(1.12);
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform, filter;
  animation: heroCinematic 22s cubic-bezier(0.35, 0, 0.18, 1) infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(110deg, rgba(0, 0, 0, 0.98) 14%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.76) 100%);
  animation: heroOverlayPulse 8.5s ease-in-out infinite;
}

.hero-content {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 31, 0.55);
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.72), rgba(225, 6, 31, 0.2));
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-content h1 span {
  color: #e1061f;
}

.hero-content h1 {
  max-width: 16ch;
  margin-inline: auto;
}

.hero-lead {
  font-size: 1.07rem;
  max-width: 58ch;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 25px 0;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-trust li {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.hero-trust li:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 31, 0.7);
  background: rgba(225, 6, 31, 0.12);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.35);
}

.hero-scroll:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero .kicker {
  color: #e1061f;
}

.hero .btn-primary {
  background: linear-gradient(120deg, #a80017, #e1061f);
}

.hero .btn-primary:hover {
  background: linear-gradient(120deg, #8c0717, #b70b20);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  backdrop-filter: none;
}

.hero-stats div {
  position: relative;
  flex: 0 1 auto;
  min-height: 0;
  border: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  padding: 2px 16px 2px 0;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 2px;
  transition: opacity 0.25s ease;
}

.hero-stats div::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-50%);
}

.hero-stats div:last-child {
  padding-right: 0;
}

.hero-stats div:last-child::after {
  display: none;
}

.hero-stats div:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
  opacity: 0.86;
}

.hero-stats strong {
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stats span {
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #d9d9d9;
}

.trust-band div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.trust-band div:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 31, 0.62);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.trust-band strong {
  display: inline-block;
  font-size: 1.24rem;
  font-family: "Teko", sans-serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.trust-band span {
  font-size: 0.78rem;
  color: #e5e5e5;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading > p:last-child {
  max-width: 760px;
}

.style-lab {
  padding-top: 38px;
}

.style-lab-wrap {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.style-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.style-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.style-btn:hover {
  transform: translateY(-2px);
}

.style-btn.is-active {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.2);
}

.section-heading.center > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.project-card,
.testimonial,
.contact-card,
.info-card,
.metric {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.glass-card,
.project-card,
.testimonial,
.contact-card,
.info-card {
  padding: 24px;
}

.glass-card:hover,
.project-card:hover,
.testimonial:hover,
.info-card:hover {
  border-color: rgba(177, 11, 31, 0.55);
  transform: translateY(-4px);
}

.expertise-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.expertise-index {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 31, 0.55);
  background: rgba(225, 6, 31, 0.13);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.expertise-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  font-size: 0.92rem;
}

.expertise-card a:hover {
  color: #e1061f;
}

.expertise-layout {
  display: block;
}

.expertise-listing {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 980px;
  margin: 0 auto;
}

.expertise-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 8px;
  background: transparent;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.expertise-row:hover {
  border-color: rgba(177, 11, 31, 0.72);
  background: rgba(177, 11, 31, 0.07);
  transform: translateY(-2px);
}

.expertise-row span {
  display: inline-grid;
  place-content: center;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(177, 11, 31, 0.68);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.55rem;
}

.expertise-row h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
}

.expertise-row p {
  margin: 0;
  color: #bfbfbf;
  font-size: 1.02rem;
}


.expertise-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.expertise-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.expertise-viewport::-webkit-scrollbar {
  display: none;
}

.expertise-track {
  display: flex;
  gap: 12px;
}

.expertise-track .expertise-card {
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 31, 0.8);
}

.carousel-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #e1061f;
}

.expertise-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(177, 11, 31, 0.08), rgba(0, 0, 0, 0));
}

.service-editorial {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(880px 340px at 100% 0%, rgba(225, 6, 31, 0.18), rgba(0, 0, 0, 0)),
    radial-gradient(720px 380px at 0% 100%, rgba(125, 12, 26, 0.24), rgba(0, 0, 0, 0)),
    linear-gradient(185deg, rgba(13, 13, 13, 0.88), rgba(6, 6, 6, 0.7));
}

.service-editorial::before,
.service-editorial::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-editorial::before {
  inset: -30% auto auto -14%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 31, 0.22), rgba(225, 6, 31, 0));
  filter: blur(8px);
  animation: floatAura 10s ease-in-out infinite;
}

.service-editorial::after {
  inset: auto -8% -34% auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  animation: floatAura 14s ease-in-out infinite reverse;
}

.service-editorial .container {
  position: relative;
  z-index: 1;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.service-editorial-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 26px 22px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(45deg, rgba(120, 9, 22, 0.3), rgba(9, 9, 9, 0.35));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.service-editorial-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.service-editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-editorial-card:hover {
  border-color: rgba(225, 6, 31, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(225, 6, 31, 0.22) inset;
}

.service-editorial-card:hover::after {
  opacity: 1;
}

.service-editorial-card .service-editorial-num {
  position: absolute;
  top: -20px;
  right: 10px;
  font-family: "Teko", sans-serif;
  font-size: clamp(4.8rem, 8vw, 7rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.03em;
  pointer-events: none;
}

.service-editorial-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-300);
  font-weight: 700;
}

.service-editorial-card h3 {
  margin: 0;
  max-width: 26ch;
  font-size: clamp(1.18rem, 1.7vw, 1.6rem);
  line-height: 1.1;
}

.service-editorial-card p {
  margin: 0;
  color: #d5d5d5;
  max-width: 52ch;
}

.service-editorial-card a {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.service-editorial-card a::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, width 0.3s ease;
}

.service-editorial-card a:hover {
  color: var(--red-300);
}

.service-editorial-card a:hover::after {
  width: 42px;
  transform: translateX(4px);
}

.service-editorial-card-xl {
  grid-column: span 7;
  min-height: 320px;
}

.service-editorial-card-tall {
  grid-column: span 5;
  min-height: 320px;
}

.service-editorial-card-wide {
  grid-column: 1 / -1;
  min-height: 230px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(95deg, rgba(132, 8, 24, 0.45), rgba(10, 10, 10, 0.4));
}

.service-editorial-grid .service-editorial-card:not(.service-editorial-card-xl):not(.service-editorial-card-tall):not(.service-editorial-card-wide) {
  grid-column: span 4;
}

.service-editorial-card.reveal {
  transform: translateY(32px) scale(0.98);
}

.service-editorial-card.reveal.in {
  transform: translateY(0) scale(1);
}

.service-editorial-cta {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 16px;
  flex-wrap: wrap;
}

.service-editorial-cta p {
  margin: 0;
  max-width: 760px;
}

.page-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(177, 11, 31, 0.72), rgba(8, 8, 8, 0.98)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: translateY(100%);
  transition: transform 0.78s cubic-bezier(0.65, 0.02, 0.25, 1);
}

.page-transition-layer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(220px, 36vw, 420px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) scale(0.88);
  transform-origin: center;
  background: url("images/logo.2.png") center / contain no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.46));
  transition: transform 0.72s ease, opacity 0.72s ease;
}

.page-transition-layer.is-active {
  transform: translateY(0);
}

.page-transition-layer.is-active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

@keyframes floatAura {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -24px, 0); }
}

.expertise-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 31, 0.65);
}

.tab-btn.is-active {
  border-color: rgba(225, 6, 31, 0.9);
  background: rgba(225, 6, 31, 0.2);
}

.expertise-panel {
  display: none;
}

.expertise-panel.is-active {
  display: block;
}

.expertise-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.expertise-timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 14px;
}

.expertise-timeline span {
  display: inline-grid;
  place-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(225, 6, 31, 0.2);
  border: 1px solid rgba(225, 6, 31, 0.65);
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
}

.expertise-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.expertise-band article {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.expertise-band h3 {
  margin-bottom: 6px;
}

.expertise-band p {
  margin-bottom: 10px;
}

.expertise-band ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-300);
}

.expertise-band li {
  margin-bottom: 5px;
}

.expertise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.split-main {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(225, 6, 31, 0.16), rgba(0, 0, 0, 0.32));
}

.split-side {
  display: grid;
  gap: 12px;
}

.split-side article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.expertise-list {
  display: grid;
  gap: 10px;
}

.expertise-list article {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.expertise-list span {
  display: inline-grid;
  place-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(225, 6, 31, 0.65);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.6rem;
}

.expertise-list h3,
.expertise-list p {
  margin: 0;
}

.expertise-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.expertise-list a:hover {
  color: #e1061f;
}

.expertise-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.expertise-blocks article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.expertise-blocks span {
  display: inline-block;
  margin-bottom: 8px;
  color: #e1061f;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark {
  background: linear-gradient(145deg, rgba(34, 8, 13, 0.65), rgba(7, 7, 7, 0.3));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.step-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.step-list span {
  display: inline-grid;
  place-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c40d22, #7b0513);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.35rem;
}

.project-grid,
.testimonials-grid,
.metrics-grid,
.services-grid,
.team-grid,
.rea-grid,
.contact-grid,
.contact-layout,
.page-grid {
  display: grid;
  gap: 16px;
}

.project-grid,
.testimonials-grid,
.metrics-grid,
.services-grid,
.team-grid,
.rea-grid,
.page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-300);
}

.realiz-showcase {
  padding-bottom: 38px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(920px 340px at 8% 4%, rgba(225, 6, 31, 0.18), rgba(0, 0, 0, 0)),
    radial-gradient(760px 300px at 92% 92%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(13, 13, 13, 0.78), rgba(8, 8, 8, 0.46));
}

.realiz-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.05), transparent 40%);
}

.realiz-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.realiz-main,
.realiz-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.14), rgba(8, 8, 8, 0.86)),
    var(--bg) center/cover no-repeat;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.realiz-main::before,
.realiz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 40%);
  opacity: 0.36;
}

.realiz-main::after,
.realiz-card::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.realiz-main:hover,
.realiz-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(225, 6, 31, 0.82);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.38);
}

.realiz-main:hover::before,
.realiz-card:hover::before {
  opacity: 0.9;
}

.realiz-main:hover::after,
.realiz-card:hover::after {
  left: 130%;
}

.realiz-main {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.realiz-side {
  display: grid;
  gap: 14px;
}

.realiz-card {
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.realiz-label {
  margin: 0 0 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #fff;
  opacity: 0.95;
}

.realiz-main h3,
.realiz-card h3 {
  margin: 0 0 6px;
}

.realiz-main p,
.realiz-card p {
  margin: 0;
  color: #ececec;
  text-wrap: balance;
}

.realiz-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.realiz-meta span,
.realiz-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 31, 0.8);
  background: rgba(225, 6, 31, 0.22);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.realiz-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.realiz-link {
  margin-top: 12px;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.24s ease, color 0.24s ease;
}

.realiz-link:hover {
  color: #ffd4d9;
  border-color: rgba(225, 6, 31, 0.92);
}

.realiz-reveal-list {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.realiz-reveal-item {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 16px;
}

.realiz-reveal-item.is-right {
  grid-template-columns: minmax(0, 1.28fr) minmax(210px, 0.72fr);
}

.realiz-side-photo {
  width: min(100%, 330px);
  justify-self: start;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  transform: translateX(-90px);
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: transform 0.72s ease, opacity 0.72s ease, clip-path 0.9s ease, border-color 0.25s ease;
}

.realiz-reveal-item.is-right .realiz-side-photo {
  justify-self: end;
  transform: translateX(90px);
  clip-path: inset(0 100% 0 0);
}

.realiz-side-photo img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  display: block;
}

.realiz-reveal-copy {
  min-height: 100%;
  display: grid;
  align-items: center;
  padding: 10px 0;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.56s ease, opacity 0.56s ease;
}

.realiz-reveal-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.realiz-reveal-copy p {
  margin: 10px 0 0;
  color: #e1e1e1;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 56ch;
}

.realiz-reveal-item.is-left .realiz-reveal-copy h3 {
  text-align: left;
}

.realiz-reveal-item.is-right .realiz-reveal-copy h3 {
  text-align: right;
}

.realiz-reveal-item.is-right .realiz-reveal-copy {
  justify-items: end;
}

.realiz-reveal-item.is-right .realiz-reveal-copy p {
  text-align: right;
  margin-left: auto;
}

.realiz-reveal-item.reveal.in .realiz-side-photo {
  transform: translateX(0);
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.realiz-reveal-item.reveal.in .realiz-reveal-copy {
  transform: translateY(0);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .realiz-side-photo:hover {
    border-color: rgba(225, 6, 31, 0.82);
  }
}

.realiz-proof {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.realiz-proof article {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  padding: 13px 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.realiz-proof article:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 31, 0.75);
}

.realiz-proof strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
}

.realiz-proof span {
  color: #d0d0d0;
  font-size: 0.9rem;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.testimonial p {
  color: #f3f3f3;
  margin-bottom: 12px;
}

.testimonial cite {
  font-style: normal;
  color: var(--text-300);
  font-size: 0.92rem;
}

.testimonials-premium {
  padding-top: 38px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background:
    radial-gradient(920px 300px at 100% -10%, rgba(225, 6, 31, 0.1), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(28, 28, 28, 0.56), rgba(18, 18, 18, 0.2));
}

.reviews-premium-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.reviews-premium-top article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.reviews-premium-top strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}

.reviews-premium-top span {
  color: #d1d1d1;
  font-size: 0.9rem;
}

.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reviews-carousel-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: reviewsCarouselLoop 130s linear infinite;
}

.reviews-carousel:hover .reviews-carousel-track {
  animation-play-state: paused;
}

.review-trust-bar {
  margin-bottom: 14px;
  padding: 0;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.review-trust-main {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.testimonials-premium .section-heading.center {
  margin-top: 0;
}

.review-trust-main img {
  width: 220px;
  height: 88px;
  object-fit: contain;
  object-position: left center;
}

.review-trust-rating strong {
  display: block;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.review-trust-rating span {
  color: #d2d2d2;
  font-size: 0.95rem;
}

.review-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.review-trust-badges span {
  color: #e7e7e7;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 4px;
}

.review-trust-badges span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 16px;
}

.review-premium-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-premium-head img {
  width: 92px;
  height: 40px;
  border-radius: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

.review-premium-head cite {
  margin: 0;
  font-style: normal;
  display: grid;
}

.review-premium-stars {
  display: inline-block;
  margin: 0 0 10px;
  color: #fbbc04;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  font-weight: 700;
}

.review-note {
  margin-left: 8px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0;
  font-weight: 700;
}

.review-premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  padding: 18px;
  width: clamp(230px, 22vw, 310px);
  flex: 0 0 auto;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(24, 24, 24, 0.32);
  transition: border-color 0.2s ease;
}

.review-premium-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 31, 0.68);
  box-shadow: 0 16px 26px rgba(225, 6, 31, 0.28);
}

.review-premium-card p {
  margin: 0 0 14px;
  color: #f6f6f6;
}

.review-premium-link {
  display: inline-block;
  margin-top: auto;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-cta-card {
  display: flex;
  flex-direction: column;
}

.review-cta-card .btn {
  margin-top: auto;
  width: fit-content;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partners-loop {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.partners-loop-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: partnersLoop 44s linear infinite;
  will-change: transform;
}

.partners-pill {
  flex: 0 0 auto;
  width: 220px;
  height: 130px;
  padding: 0;
  text-align: center;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.partners-section {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(760px 240px at 10% 0%, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0)),
    radial-gradient(740px 260px at 92% 100%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.82), rgba(9, 9, 9, 0.95));
}

.partners-heading {
  margin-top: 0;
  margin-bottom: 8px;
}

.zone-section {
  padding-top: 28px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(780px 260px at 8% 8%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(15, 15, 15, 0.72), rgba(10, 10, 10, 0.9));
}

.zone-section .section-heading {
  margin-bottom: 14px;
}

.zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.zone-map-card,
.zone-cities-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 22px;
}

.zone-map-card h3,
.zone-cities-card h3 {
  margin-bottom: 8px;
}

.zone-map-card p {
  margin-bottom: 14px;
}

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

.zone-map-grid span {
  border: 1px solid rgba(225, 6, 31, 0.56);
  border-radius: 12px;
  background: rgba(225, 6, 31, 0.14);
  color: #f5f5f5;
  font-weight: 700;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.9rem;
}

.zone-map-embed {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.zone-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}

.zone-city-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.zone-city-list li {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #ececec;
}

.zone-vague-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.zone-vague-list span {
  border: 1px solid rgba(225, 6, 31, 0.5);
  border-radius: 999px;
  background: rgba(225, 6, 31, 0.14);
  color: #f0f0f0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.emergency-section {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.94));
}

.emergency-wrap {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.emergency-wrap p {
  margin: 0 auto 8px;
  max-width: 62ch;
  font-size: 1.02rem;
}

.emergency-wrap h2 {
  margin-bottom: 6px;
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
}

.emergency-section .kicker {
  font-size: 0.94rem;
  letter-spacing: 0.16em;
}

.emergency-actions {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.emergency-section .btn {
  padding: 8px 13px;
  font-size: 0.86rem;
}

.review-premium-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.review-premium-score {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 31, 0.74);
  background: rgba(225, 6, 31, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
}

.review-premium-foot cite {
  margin: 0;
  font-style: normal;
  display: grid;
  text-align: right;
}

.review-premium-foot strong {
  color: #fff;
  font-size: 0.95rem;
}

.review-premium-foot span {
  color: #cdcdcd;
  font-size: 0.85rem;
}

.faq-reboot {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(225, 6, 31, 0.28), rgba(225, 6, 31, 0) 36%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(9, 9, 9, 0.96));
}

.faq-reboot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.faq-reboot-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.faq-reboot-intro {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 26px;
  align-items: end;
  text-align: left;
}

.faq-reboot-intro h2 {
  margin-bottom: 4px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.faq-reboot-intro > p {
  margin-bottom: 0;
  max-width: 78ch;
  font-size: 1.08rem;
}

.faq-reboot-intro .kicker,
.faq-reboot-intro h2,
.faq-reboot-intro > p {
  grid-column: 1;
}

.faq-reboot-intro .kicker {
  text-align: left;
  margin-bottom: 2px;
}

.faq-reboot-intro .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  margin-top: 0;
}

.faq-reboot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.faq-reboot-chips span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.faq-reboot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.faq-reboot-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 9px;
  text-align: center;
}

.faq-reboot-metrics strong {
  display: block;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-reboot-metrics span {
  color: #d8d8d8;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq-reboot-stack {
  display: grid;
  gap: 14px;
  max-width: none;
  margin: 0;
}

.faq-reboot-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 34%),
    linear-gradient(160deg, rgba(9, 9, 9, 0.92), rgba(22, 22, 22, 0.7));
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.faq-reboot-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(245, 26, 54, 0.96), rgba(123, 6, 20, 0.84));
  opacity: 0.58;
  transition: width 0.24s ease, opacity 0.24s ease;
}

.faq-reboot-item:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 31, 0.74);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.3);
}

.faq-reboot-item[open] {
  border-color: rgba(225, 6, 31, 0.9);
  box-shadow: 0 0 0 1px rgba(225, 6, 31, 0.24) inset, 0 22px 38px rgba(0, 0, 0, 0.28);
}

.faq-reboot-item[open]::before {
  width: 7px;
  opacity: 1;
}

.faq-reboot-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 82px 1fr 26px;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 20px;
}

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

.faq-reboot-id {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: inline-grid;
  place-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Teko", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, rgba(209, 15, 37, 0.22), rgba(123, 6, 20, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.faq-reboot-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  line-height: 1.24;
}

.faq-reboot-item summary::before,
.faq-reboot-item summary::after {
  content: "";
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-reboot-item summary::after {
  transform: rotate(90deg);
}

.faq-reboot-item[open] summary::after {
  transform: rotate(0);
  opacity: 0;
}

.faq-reboot-item p {
  margin: 0;
  padding: 0 24px 24px 122px;
  color: #dddddd;
  max-width: none;
  font-size: 1.03rem;
  line-height: 1.66;
}

.cta-band {
  padding-top: 24px;
}

.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  border: 1px solid rgba(225, 6, 31, 0.48);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(164, 8, 25, 0.52), rgba(30, 30, 30, 0.72));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
}

.cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.cta-wrap::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  right: -80px;
  top: -80px;
  pointer-events: none;
  animation: ctaGlowPulse 5.2s ease-in-out infinite;
}

.cta-main,
.cta-visual {
  position: relative;
  z-index: 1;
}

.cta-main h2 {
  margin-bottom: 10px;
}

.cta-main p {
  margin-bottom: 14px;
}

.cta-note {
  max-width: 58ch;
  color: #ececec;
  margin-bottom: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-visual {
  display: grid;
  place-items: center;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.cta-visual img {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.45));
  animation: ctaLogoFloat 5.2s ease-in-out infinite;
  padding: 8px 14px;
}

.cta-visual span {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-visual span:first-of-type {
  width: 250px;
  height: 250px;
  animation: ctaOrbit 11s linear infinite;
}

.cta-visual span:last-of-type {
  width: 320px;
  height: 320px;
  border-color: rgba(225, 6, 31, 0.34);
  animation: ctaOrbit 15s linear infinite reverse;
}

.cta-wrap p {
  max-width: 640px;
  margin: 0 0 16px;
}

.page-hero {
  padding: 95px 0 58px;
  background: linear-gradient(140deg, rgba(217, 15, 38, 0.2), rgba(8, 8, 8, 0.2));
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 700px;
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  color: #fff;
}

.metric span {
  color: var(--text-300);
}

.service-item,
.rea-item,
.team-item,
.info-card {
  padding: 22px;
}

.service-item,
.rea-item,
.team-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.services-grid .service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  padding: 16px 4px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.services-grid .service-item:hover {
  border-bottom-color: rgba(177, 11, 31, 0.72);
  background: rgba(177, 11, 31, 0.08);
}

.services-grid .service-item span {
  display: inline-grid;
  place-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(177, 11, 31, 0.68);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.25rem;
}

.services-grid .service-item h3 {
  margin-bottom: 4px;
  font-size: 1.14rem;
}

.services-grid .service-item p {
  margin: 0;
  color: #bfbfbf;
}


.rea-item span,
.service-item span {
  color: var(--red-300);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 12px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.contact-form-stack {
  display: grid;
  gap: 0;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(225, 6, 31, 0.09), transparent 34%);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form h2 {
  margin-bottom: 8px;
}

.contact-form-intro {
  margin: 0 0 12px;
  color: #d2d2d2;
  font-size: 0.95rem;
}

.contact-form-progress {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-form-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: #d8d8d8;
}

.contact-form-progress-head strong {
  color: #fff;
}

.contact-form-progress-bar {
  margin-top: 8px;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.contact-form-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b10b1f, #f13d53);
  transition: width 0.25s ease;
}

.contact-form-status {
  margin: 0 0 6px;
  color: #cfcfcf;
  font-size: 0.9rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  align-items: start;
  justify-items: center;
}

.form-field {
  display: grid;
  gap: 7px;
  width: 100%;
  max-width: 430px;
}

.form-field-full {
  grid-column: 1 / -1;
  max-width: none;
  justify-self: stretch;
}

.contact-form label {
  display: block;
  margin: 14px 0 7px;
  font-weight: 600;
}

.contact-form .form-field label {
  margin: 0;
}

.field-error {
  min-height: 16px;
  margin: 2px 0 0;
  color: #ff7686;
  font-size: 0.8rem;
  line-height: 1.25;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(255, 109, 129, 0.88);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.66);
  color: #fff;
  font: inherit;
  padding: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(177, 11, 31, 0.72);
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(177, 11, 31, 0.14);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-checkline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 8px;
}

.contact-checkline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b10b1f;
}

.contact-address-fields {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

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

.form-help {
  margin: 8px 0 4px;
  color: #bfbfbf;
  font-size: 0.9rem;
}

.contact-files-preview {
  margin: 0 0 10px;
  color: #f0f0f0;
  font-size: 0.9rem;
}

.contact-success {
  border: 1px solid rgba(37, 184, 97, 0.45);
  border-radius: var(--radius-md);
  padding: 24px;
  background: linear-gradient(180deg, rgba(26, 121, 72, 0.18), rgba(7, 36, 24, 0.24));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.contact-success h2 {
  margin-bottom: 12px;
}

.contact-success p {
  margin-bottom: 10px;
}

.contact-success .btn {
  margin-top: 8px;
}

.contact-page .contact-card {
  background:
    radial-gradient(420px 170px at 96% 8%, rgba(225, 6, 31, 0.16), rgba(0, 0, 0, 0)),
    linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.contact-card-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card-actions .btn,
.contact-emergency-actions .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-cine {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 740px);
  display: grid;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-bg {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.06);
  animation: contactHeroZoom 16s ease-in-out infinite alternate;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 300px at 12% 12%, rgba(225, 6, 31, 0.26), transparent 65%),
    radial-gradient(660px 240px at 96% 90%, rgba(255, 255, 255, 0.12), transparent 73%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.35), rgba(7, 7, 7, 0.82));
}

.contact-hero-cine-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: 20px;
  align-items: end;
  padding-top: 110px;
  padding-bottom: 90px;
}

.contact-hero-copy h1 {
  max-width: 18ch;
  margin: 0 0 12px;
}

.contact-hero-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hero-actions .btn-primary {
  box-shadow: 0 12px 24px rgba(177, 11, 31, 0.34);
}

.contact-hero-glass {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(9px);
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.35));
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.contact-hero-glass article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-hero-glass strong {
  display: block;
  color: #fff;
  font-size: 1.04rem;
  margin-bottom: 2px;
}

.contact-hero-glass span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
}

.contact-section-main {
  position: relative;
  margin-top: -74px;
  z-index: 2;
}

.contact-section-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0.08), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04));
}

.contact-side-card {
  min-height: 100%;
}

.contact-side-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-side-badges span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.contact-side-extra {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-side-extra h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.contact-side-extra ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.contact-side-extra li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.contact-emergency-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(225, 6, 31, 0.45);
  border-radius: 12px;
  background: linear-gradient(170deg, rgba(225, 6, 31, 0.16), rgba(20, 20, 20, 0.32));
}

.contact-emergency-box h3 {
  margin: 0 0 6px;
}

.contact-emergency-box p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-side-logo {
  display: block;
  width: min(100%, 210px);
  height: auto;
  margin: 28px auto 0;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

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

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

.quick-call-tag {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: inline-grid;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  padding: 12px 14px 12px 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 45%),
    linear-gradient(150deg, #c80f26, #8b0816);
  box-shadow: 0 16px 28px rgba(155, 9, 24, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, padding 0.22s ease;
}

.quick-call-tag:hover {
  transform: translateY(-50%) translateX(-4px);
  box-shadow: 0 18px 30px rgba(160, 8, 23, 0.56);
  filter: brightness(1.05);
  padding-right: 16px;
}

.quick-call-tag-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.96;
}

.quick-call-tag strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.contact-card p,
.info-card p,
.service-item p,
.rea-item p,
.team-item p {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  margin-top: 28px;
  border-top: 0;
  overflow: visible;
  background:
    radial-gradient(760px 220px at 10% 0%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(7, 7, 7, 0.98));
}

.site-footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding-inline: clamp(14px, 1.4vw, 22px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0 10px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  margin-left: 0;
  text-align: left;
  margin-bottom: 10px;
}

.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
  margin: 0;
}

.footer-about p {
  max-width: 50ch;
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-pill-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f3f3f3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.footer-title {
  margin: 0 0 3px;
  font-family: "Teko", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 5px;
  align-content: start;
}

.footer-links a {
  color: #e8e8e8;
  font-size: 0.97rem;
}

.footer-links a:hover {
  color: var(--red-300);
}

.footer-phone {
  font-size: 1.06rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 2px;
}

.footer-contact-actions a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.footer-contact-actions a:last-child {
  border-color: rgba(37, 211, 102, 0.65);
  background: rgba(37, 211, 102, 0.16);
}

.footer-contact-actions a:hover {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.14);
  color: #fff;
}

.footer-bottom {
  padding: 9px 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.96rem;
}

.footer-bottom a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom a:hover {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.14);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal-links a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8e8e8;
}

.footer-legal-links a:hover,
.footer-legal-links a[aria-current="page"] {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.14);
  color: #fff;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(225, 6, 31, 0.5);
  border-radius: 999px;
  padding: 5px 10px;
  margin-top: 2px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #fff;
  background: rgba(225, 6, 31, 0.14);
  box-shadow: none;
}

.footer-credit:hover {
  border-color: var(--red-300);
  background: rgba(177, 11, 31, 0.2);
}

.footer-toplink {
  justify-self: start;
  margin-right: 0;
}

.footer-mini-link {
  display: inline;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-left: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #f0f0f0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-mini-link:hover {
  color: var(--red-300);
}

.legal-section {
  padding-top: 36px;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-alert {
  border: 1px solid rgba(225, 6, 31, 0.45);
  border-radius: 12px;
  background: rgba(225, 6, 31, 0.12);
  color: #f4f4f4;
  padding: 12px 14px;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

.legal-card h2 {
  margin-bottom: 8px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-300);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

@keyframes heroCinematic {
  0% {
    transform: scale(1.08) translate3d(0%, 0%, 0);
    filter: saturate(0.38) brightness(0.33) contrast(1.09);
  }
  32% {
    transform: scale(1.16) translate3d(-1.6%, -1.1%, 0);
    filter: saturate(0.44) brightness(0.35) contrast(1.12);
  }
  68% {
    transform: scale(1.13) translate3d(1.4%, 1.6%, 0);
    filter: saturate(0.46) brightness(0.36) contrast(1.15);
  }
  100% {
    transform: scale(1.19) translate3d(0%, -1.8%, 0);
    filter: saturate(0.42) brightness(0.34) contrast(1.12);
  }
}

@keyframes heroOverlayPulse {
  0%, 100% { opacity: 0.94; }
  50% { opacity: 1; }
}

@keyframes heroLightSweep {
  0% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  14% { opacity: 0.36; }
  54% { opacity: 0.12; }
  100% { transform: translateX(230%) skewX(-18deg); opacity: 0; }
}

@keyframes heroAuraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-2.4%, 1.7%, 0) scale(1.04); }
}

@keyframes servicesFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes servicesFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 6px, 0); }
}

@keyframes servicesScrollMouse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
  50% {
    transform: translate(-50%, 9px);
    opacity: 0.58;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
}

@keyframes servicesHeroImgDrift {
  0%, 100% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.09) translate3d(0, -8px, 0);
  }
}


@media (max-width: 1040px) {
  .services-hero-grid,
  .services-page-cta-wrap {
    grid-template-columns: 1fr;
  }

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

  .services-hero-visual {
    grid-template-rows: 170px 170px;
  }

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

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

  .services-flow-track::before {
    display: none;
  }

  .services-page-cta-actions {
    justify-content: flex-start;
  }

  .card-grid-4,
  .project-grid,
  .testimonials-grid,
  .metrics-grid,
  .services-grid,
  .team-grid,
  .rea-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .footer-credit,
  .footer-toplink {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 74px;
  }

  .hero-layout {
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 88px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(12, 12, 12, 0.96);
    padding: 14px;
    display: none;
    flex-direction: column;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 9px 0;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-layout {
    display: block;
  }

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

  .service-editorial-card-xl,
  .service-editorial-card-tall,
  .service-editorial-grid .service-editorial-card:not(.service-editorial-card-wide) {
    grid-column: span 1;
    min-height: 270px;
  }

  .service-editorial-card-wide {
    grid-column: 1 / -1;
  }

  .expertise-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-track .expertise-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .expertise-split,
  .expertise-list article {
    grid-template-columns: 1fr;
  }

  .expertise-list article {
    gap: 10px;
  }

  .expertise-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services-page-hero {
    padding: 80px 0 56px;
  }

  .services-hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 140px 140px;
  }

  .services-hero-media-a,
  .services-hero-media-b,
  .services-hero-media-c {
    grid-column: auto;
    grid-row: auto;
    animation: none;
  }

  .services-signature-grid,
  .services-flow-track {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 82px 0 84px;
  }

  .trust-band,
  .project-grid,
  .testimonials-grid,
  .metrics-grid,
  .services-grid,
  .team-grid,
  .rea-grid,
  .page-grid,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .expertise-band {
    grid-template-columns: 1fr;
  }

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

  .service-editorial-card,
  .service-editorial-card-xl,
  .service-editorial-card-tall,
  .service-editorial-card-wide,
  .service-editorial-grid .service-editorial-card:not(.service-editorial-card-wide) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .expertise-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .expertise-track .expertise-card {
    flex: 0 0 100%;
  }

  .header-top {
    display: none;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
  }

  .brand {
    margin-left: -18px;
  }

  .hero-scroll {
    bottom: 14px;
  }

  .cta-wrap,
  .glass-card,
  .project-card,
  .testimonial,
  .contact-card,
  .info-card,
  .service-editorial-card,
  .service-item,
  .rea-item,
  .team-item,
  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .service-editorial-card,
  .service-editorial-card a::after,
  .service-plain-card::after,
  .method-stage::before,
  .method-stage .method-step,
  .method-stage .method-step span,
  .method-v2::before,
  .method-v2-flow::before,
  .method-v2-step,
  .method-v2-step span,
  .method-v3-track::before,
  .method-v3-step,
  .method-v3-step span,
  .reviews-carousel-track,
  .page-transition-layer,
  .page-transition-layer::after,
  .services-hero-media-a,
  .services-hero-media-b,
  .services-hero-media-c,
  .services-hero-media img,
  .service-editorial::before,
  .service-editorial::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.showcase-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-cinematic {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px 280px at 12% -2%, rgba(225, 6, 31, 0.16), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(14, 14, 14, 0.55), rgba(9, 9, 9, 0.2));
}

.service-cine-grid .showcase-cine-card {
  min-height: 290px;
}

.service-cine-grid .showcase-cine-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.16), rgba(8, 8, 8, 0.86)),
    var(--bg) center/cover no-repeat;
}

.service-cine-grid .showcase-cine-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(16, 6, 8, 0.2), rgba(8, 8, 8, 0.88)),
    var(--bg) center/cover no-repeat;
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(980px 420px at 14% 0%, rgba(225, 6, 31, 0.2), rgba(0, 0, 0, 0)),
    radial-gradient(820px 360px at 100% 100%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(6, 6, 6, 0.88));
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: center;
}

.services-hero-watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  z-index: 0;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.8rem, 12vw, 10rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.services-hero-copy,
.services-hero-visual,
.services-hero-scroll-indicator {
  will-change: transform, opacity;
}

.services-hero-copy h1 {
  max-width: 18ch;
}

.services-hero-copy p {
  max-width: 58ch;
}

.services-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.services-hero-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  will-change: transform, opacity;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.55s ease, filter 0.55s ease;
  animation: servicesHeroImgDrift 9.5s ease-in-out infinite;
}

.services-hero-media-a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.services-hero-media-b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.services-hero-media-c {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.services-hero-media-a img {
  animation-duration: 10.2s;
}

.services-hero-media-b img {
  animation-duration: 8.8s;
  animation-delay: 0.4s;
}

.services-hero-media-c img {
  animation-duration: 11.2s;
  animation-delay: 0.2s;
}

.services-hero-media:hover {
  border-color: rgba(225, 6, 31, 0.78);
  box-shadow: 0 20px 34px rgba(80, 10, 18, 0.42);
}

.services-hero-media:hover img {
  transform: scale(1.11);
  filter: saturate(1.12) contrast(1.08);
}

.services-hero-scroll-indicator {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.86);
}

.services-hero-scroll-indicator span {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  position: relative;
}

.services-hero-scroll-indicator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: servicesScrollMouse 1.8s ease-in-out infinite;
}

.services-hero-scroll-indicator em {
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.services-signature {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(820px 280px at 0% 0%, rgba(225, 6, 31, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(8, 8, 8, 0.92));
}

.services-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 45%);
  opacity: 0.55;
}

.services-signature-grid {
  position: relative;
  z-index: 1;
  margin: 22px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-signature-card {
  position: relative;
  min-height: 146px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid rgba(225, 6, 31, 0.8);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 18px 18px 16px 76px;
  display: grid;
  align-content: start;
  gap: 6px;
  overflow: hidden;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.services-signature-card:nth-child(odd) {
  transform: translateY(-8px);
}

.services-signature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.6), rgba(225, 6, 31, 0));
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.services-signature-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 42px;
  height: 34px;
  display: inline-grid;
  place-content: center;
  border-radius: 8px;
  border: 1px solid rgba(225, 6, 31, 0.8);
  background: rgba(225, 6, 31, 0.22);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.services-signature-card h3,
.services-signature-card p {
  margin: 0;
}

.services-signature-card h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.12rem, 1.12vw, 1.34rem);
  line-height: 1.1;
}

.services-signature-card p {
  color: rgba(243, 243, 243, 0.88);
  font-size: 0.95rem;
  line-height: 1.4;
}

.services-signature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(225, 6, 31, 0.72);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.services-signature-card:hover::after {
  opacity: 1;
}

@media (max-width: 1040px) {
  .services-signature-grid {
    grid-template-columns: 1fr;
  }

  .services-signature-card:nth-child(odd) {
    transform: none;
  }
}

.services-flow {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(860px 300px at 0% 0%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    radial-gradient(620px 280px at 100% 100%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(14, 14, 14, 0.76), rgba(8, 8, 8, 0.9));
}

.services-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(102deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.services-flow .section-heading {
  position: relative;
  z-index: 1;
}

.services-flow .section-heading h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.services-flow-intro {
  margin: 10px auto 0;
  max-width: 64ch;
  color: rgba(240, 240, 240, 0.9);
}

.services-flow-track {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-flow-track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.68), rgba(225, 6, 31, 0));
  opacity: 0.9;
}

.services-flow-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 20px 14px 16px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-flow-step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(225, 6, 31, 0.9);
  box-shadow: 0 0 0 3px rgba(225, 6, 31, 0.2);
}

.services-flow-step:first-child::before {
  display: none;
}

.services-flow-step span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.84);
  background: rgba(225, 6, 31, 0.28);
  font-family: "Teko", sans-serif;
  font-size: 1.28rem;
  color: #fff;
  box-shadow: 0 10px 18px rgba(80, 10, 18, 0.3);
}

.services-flow-step h3,
.services-flow-step p {
  margin: 0;
}

.services-flow-step h3 {
  margin-bottom: 6px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.04rem;
}

.services-flow-step p {
  color: rgba(240, 240, 240, 0.9);
  line-height: 1.42;
}

.services-flow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 31, 0.78);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34), 0 14px 22px rgba(100, 8, 20, 0.22);
}

.services-flow-step:hover span {
  background: rgba(225, 6, 31, 0.38);
}

.services-page-cta {
  padding-top: 48px;
  padding-bottom: 52px;
}

.services-page-cta-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.services-page-cta-wrap img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.services-page-cta-wrap h2 {
  margin-bottom: 4px;
}

.services-page-cta-wrap p {
  margin: 0;
}

.services-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.service-cine-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.service-showroom {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(940px 390px at 8% 0%, rgba(225, 6, 31, 0.1), rgba(0, 0, 0, 0)),
    radial-gradient(860px 380px at 100% 100%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(14, 14, 14, 0.68), rgba(9, 9, 9, 0.34));
}

.service-showroom::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.06), transparent 36%);
}

.service-activities-grid {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.service-activity-card {
  --svc-x: 0px;
  --svc-lift: 0px;
  --svc-scale: 1;
  --svc-opacity: 1;
  width: min(100%, 230px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(95, 95, 95, 0.52);
  padding: 14px 14px 16px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  transform: translate3d(var(--svc-x), var(--svc-lift), 0) scale(var(--svc-scale));
  opacity: var(--svc-opacity);
  will-change: transform, opacity;
  transition: transform 0.34s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.service-activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.service-activity-card--renovation img {
  object-position: 50% 46%;
}

.service-activity-card--zinguerie img {
  object-position: 52% 26%;
}

.service-activity-card--renovation-partielle img {
  object-position: 50% 42%;
}

.service-activity-card--hydrofuge img {
  object-position: 50% 50%;
}

.service-activity-card--gouttiere img {
  object-position: 50% 24%;
}

.service-activity-card--facade img {
  object-position: 52% 52%;
}

.service-activity-card--velux img {
  object-position: 50% 30%;
}

.service-activity-card h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.02rem;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .service-activity-card:hover {
    --svc-lift: -6px;
    border-color: rgba(225, 6, 31, 0.86);
    background: rgba(138, 30, 35, 0.55);
    box-shadow: 0 16px 28px rgba(100, 10, 19, 0.36);
  }
}

.service-variant {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.service-variant-head {
  margin-bottom: 14px;
  display: grid;
  gap: 4px;
}

.service-variant-head p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--red-300);
  font-weight: 700;
}

.service-variant-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.service-list-band {
  display: grid;
  gap: 10px;
}

.service-list-band article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-list-band article:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 31, 0.65);
}

.service-list-band span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(225, 6, 31, 0.7);
  background: rgba(225, 6, 31, 0.16);
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
}

.service-list-band h3,
.service-list-band p {
  margin: 0;
}

.service-list-minimal {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-list-minimal article {
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding-left 0.26s ease, border-color 0.26s ease;
}

.service-list-minimal article:hover {
  padding-left: 14px;
  border-color: rgba(225, 6, 31, 0.65);
}

.service-list-minimal h3 {
  margin: 0 0 4px;
}

.service-list-minimal p {
  margin: 0;
}

.service-list-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-list-split article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(130deg, rgba(130, 8, 21, 0.22), rgba(10, 10, 10, 0.2));
}

.service-list-split span {
  display: inline-grid;
  place-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.74);
  background: rgba(225, 6, 31, 0.2);
  font-family: "Teko", sans-serif;
  font-size: 1.45rem;
}

.service-list-split h3,
.service-list-split p {
  margin: 0;
}

.service-list-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-list-photo-grid article {
  position: relative;
  isolation: isolate;
  min-height: 210px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.6)),
    var(--bg) center/cover no-repeat;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-list-photo-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 36%);
  opacity: 0.45;
}

.service-list-photo-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 56%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.82));
}

.service-list-photo-grid article:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(225, 6, 31, 0.78);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.service-list-photo-grid span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(8, 8, 8, 0.45);
  font-family: "Teko", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-list-photo-grid h3 {
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.15;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.service-photo-timeline {
  display: grid;
  gap: 10px;
}

.service-photo-timeline-item {
  display: grid;
  grid-template-columns: 108px 60px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.service-photo-timeline-item::before {
  content: "";
  width: 108px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.78)),
    var(--bg) center/cover no-repeat;
}

.service-photo-timeline-item > span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.78);
  background: rgba(225, 6, 31, 0.2);
  font-family: "Teko", sans-serif;
  font-size: 1.25rem;
}

.service-photo-timeline-item h3,
.service-photo-timeline-item p {
  margin: 0;
}

.service-list-check {
  display: grid;
  gap: 9px;
}

.service-list-check article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 12px 10px;
  border-left: 3px solid rgba(225, 6, 31, 0.45);
  background: linear-gradient(90deg, rgba(225, 6, 31, 0.11), rgba(255, 255, 255, 0.02));
}

.service-list-check article > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.8);
  background: rgba(225, 6, 31, 0.2);
  position: relative;
  margin-top: 3px;
}

.service-list-check article > span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  left: 5px;
  top: 6px;
}

.service-list-check h3,
.service-list-check p {
  margin: 0;
}

.service-list-neo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-list-neo article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, rgba(103, 8, 18, 0.22), rgba(9, 9, 9, 0.2));
}

.service-list-neo span {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-grid;
  place-content: center;
  border: 1px solid rgba(225, 6, 31, 0.82);
  background: rgba(225, 6, 31, 0.2);
  font-family: "Teko", sans-serif;
  font-size: 1.35rem;
}

.method-stage {
  position: relative;
  overflow: hidden;
}

.method-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -230px;
  right: -170px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(225, 6, 31, 0.22), rgba(225, 6, 31, 0));
  filter: blur(4px);
  animation: methodAura 9s ease-in-out infinite;
}

.method-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 38%),
    linear-gradient(300deg, rgba(225, 6, 31, 0.1), rgba(225, 6, 31, 0) 58%);
}

.method-stage .container {
  position: relative;
  z-index: 1;
}

.method-stage-intro h2 {
  max-width: 18ch;
}

.method-badges {
  list-style: none;
  margin: 2px 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-badges li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.method-stage .step-list {
  position: relative;
  gap: 14px;
}

.method-stage .step-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(225, 6, 31, 0.9), rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 16px rgba(225, 6, 31, 0.32);
}

.method-stage .method-step {
  position: relative;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.method-stage .method-step:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 31, 0.66);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.method-stage .method-step span {
  box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.4);
  animation: methodPulse 2.6s ease-in-out infinite;
}

.method-stage .method-step:nth-child(2) span {
  animation-delay: 0.2s;
}

.method-stage .method-step:nth-child(3) span {
  animation-delay: 0.4s;
}

.method-stage .method-step:nth-child(4) span {
  animation-delay: 0.6s;
}

.method-stage .step-list.reveal.in .method-step {
  animation: methodStepIn 0.7s ease both;
}

.method-stage .step-list.reveal.in .method-step:nth-child(2) {
  animation-delay: 0.08s;
}

.method-stage .step-list.reveal.in .method-step:nth-child(3) {
  animation-delay: 0.16s;
}

.method-stage .step-list.reveal.in .method-step:nth-child(4) {
  animation-delay: 0.24s;
}

.method-v2 {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 340px at 100% -6%, rgba(225, 6, 31, 0.2), rgba(0, 0, 0, 0)),
    radial-gradient(800px 320px at -6% 110%, rgba(127, 8, 20, 0.24), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.85), rgba(8, 8, 8, 0.7));
}

.method-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 32%);
}

.method-v2-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.method-v2-intro {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.36);
}

.method-v2-intro h2 {
  max-width: 17ch;
}

.method-v2-metrics {
  margin: 8px 0 18px;
  display: grid;
  gap: 8px;
}

.method-v2-metrics article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.method-v2-metrics strong {
  font-family: "Teko", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
}

.method-v2-metrics span {
  color: #d4d4d4;
  font-size: 0.92rem;
}

.method-v2-flow {
  position: relative;
  display: grid;
  gap: 12px;
}

.method-v2-flow::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(225, 6, 31, 0.95), rgba(255, 255, 255, 0.25));
  box-shadow: 0 0 14px rgba(225, 6, 31, 0.36);
  transform-origin: top;
  transform: scaleY(0);
}

.method-v2-flow.reveal.in::before {
  animation: methodV2LineIn 0.8s ease forwards;
}

.method-v2-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  padding: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.3);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.method-v2-step:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 31, 0.66);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.method-v2-step span {
  display: inline-grid;
  place-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(225, 6, 31, 0.8);
  background: radial-gradient(circle at 28% 28%, #cf0f27, #770613);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.28rem;
  box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.42);
  animation: methodV2Pulse 2.6s ease-in-out infinite;
}

.method-v2-step:nth-child(2) span { animation-delay: 0.2s; }
.method-v2-step:nth-child(3) span { animation-delay: 0.4s; }
.method-v2-step:nth-child(4) span { animation-delay: 0.6s; }

.method-v2-step h3,
.method-v2-step p {
  margin: 0;
}

.method-v2-flow.reveal.in .method-v2-step {
  animation: methodV2StepIn 0.56s ease both;
}

.method-v2-flow.reveal.in .method-v2-step:nth-child(2) { animation-delay: 0.08s; }
.method-v2-flow.reveal.in .method-v2-step:nth-child(3) { animation-delay: 0.16s; }
.method-v2-flow.reveal.in .method-v2-step:nth-child(4) { animation-delay: 0.24s; }

.method-v3 {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(860px 280px at 0% 20%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(16, 16, 16, 0.76), rgba(8, 8, 8, 0.72));
}

.method-v3-head {
  text-align: center;
}

.method-v3-head p:last-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.method-v3-track {
  position: relative;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-v3-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0.9), rgba(255, 255, 255, 0.24));
  height: 2px;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 14px rgba(225, 6, 31, 0.35);
}

.method-v3-track.reveal.in::before {
  animation: methodV3Line 0.9s ease forwards;
}

.method-v3-step {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.36);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.method-v3-step:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 31, 0.72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.method-v3-step span {
  display: inline-grid;
  place-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.84);
  background: radial-gradient(circle at 30% 30%, #d1122b, #780513);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 9px;
  box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.45);
  animation: methodV3Pulse 2.5s ease-in-out infinite;
}

.method-v3-step:nth-child(2) span { animation-delay: 0.2s; }
.method-v3-step:nth-child(3) span { animation-delay: 0.4s; }
.method-v3-step:nth-child(4) span { animation-delay: 0.6s; }

.method-v3-step h3 {
  margin: 0 0 4px;
}

.method-v3-step p {
  margin: 0;
}

.method-v3-track.reveal.in .method-v3-step {
  animation: methodV3CardIn 0.56s ease both;
}

.method-v3-track.reveal.in .method-v3-step:nth-child(2) { animation-delay: 0.1s; }
.method-v3-track.reveal.in .method-v3-step:nth-child(3) { animation-delay: 0.2s; }
.method-v3-track.reveal.in .method-v3-step:nth-child(4) { animation-delay: 0.3s; }

.method-v3-foot {
  margin-top: 16px;
  text-align: center;
}

/* Scroll replay animation for the whole "Methode chantier" section */
.method-v3.is-ready .method-v3-head,
.method-v3.is-ready .method-v3-foot {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.method-v3.is-ready .method-v3-track::before {
  transform: scaleX(0);
  transition: transform 0.75s ease;
}

.method-v3.is-ready .method-v3-step {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.method-v3.is-ready.is-active .method-v3-head,
.method-v3.is-ready.is-active .method-v3-foot {
  opacity: 1;
  transform: translateY(0);
}

.method-v3.is-ready.is-active .method-v3-track::before {
  transform: scaleX(1);
}

.method-v3.is-ready.is-active .method-v3-step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.method-v3.is-ready.is-active .method-v3-step:nth-child(1) { transition-delay: 0.02s; }
.method-v3.is-ready.is-active .method-v3-step:nth-child(2) { transition-delay: 0.1s; }
.method-v3.is-ready.is-active .method-v3-step:nth-child(3) { transition-delay: 0.18s; }
.method-v3.is-ready.is-active .method-v3-step:nth-child(4) { transition-delay: 0.26s; }

.service-list-neo h3,
.service-list-neo p {
  margin: 0;
}

.service-plain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-plain-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, rgba(124, 7, 20, 0.24), rgba(8, 8, 8, 0.6));
  padding: 18px;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.service-plain-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -50%;
  width: 70%;
  height: 180%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  animation: shineSweep 6.6s linear infinite;
  pointer-events: none;
}

.service-plain-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 6, 31, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.service-plain-card span {
  display: inline-grid;
  place-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.62);
  background: rgba(225, 6, 31, 0.16);
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
}

.service-plain-card h3 {
  margin: 8px 0 6px;
}

.service-plain-card p {
  margin: 0;
}

.service-panels-pro .showcase-panel {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.service-panels-pro .showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-panels-pro .showcase-panel:hover::after {
  opacity: 1;
}

.showcase-cine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.showcase-cine-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.84)),
    var(--bg) center/cover no-repeat;
  transition: transform 0.42s ease, border-color 0.42s ease;
}

.showcase-cine-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 40px;
  height: 2px;
  background: var(--red-300);
  transition: width 0.35s ease;
}

.showcase-cine-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(225, 6, 31, 0.72);
}

.showcase-cine-card:hover::after {
  width: 92px;
}

.showcase-cine-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #fff;
  font-weight: 700;
}

.showcase-cine-card h3,
.showcase-cine-card p {
  margin: 0;
}

.showcase-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.showcase-timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(225, 6, 31, 0.8), rgba(255, 255, 255, 0.2));
}

.showcase-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
  border: 1px solid rgba(225, 6, 31, 0.78);
  background: rgba(225, 6, 31, 0.2);
}

.showcase-step h3,
.showcase-step p {
  margin: 0;
}

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

.showcase-panel {
  min-height: 260px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(225, 6, 31, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.8));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: grid-column 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.showcase-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 31, 0.68);
}

.showcase-panel h3,
.showcase-panel p {
  margin: 0;
}

.showcase-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.showcase-editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  padding: 22px;
  min-height: 230px;
  grid-column: span 4;
}

.showcase-editorial-card span {
  position: absolute;
  top: -16px;
  right: 10px;
  font-family: "Teko", sans-serif;
  font-size: 5rem;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.08);
}

.showcase-editorial-card h3,
.showcase-editorial-card p {
  margin: 0;
}

.showcase-choice {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase-choice p {
  margin: 0;
}

@media (max-width: 1040px) {
  .services-hero-grid,
  .services-page-cta-wrap {
    grid-template-columns: 1fr;
  }

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

  .services-hero-visual {
    grid-template-rows: 170px 170px;
  }

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

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

  .services-flow-track::before {
    display: none;
  }

  .services-page-cta-actions {
    justify-content: flex-start;
  }

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

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

  .service-list-split {
    grid-template-columns: 1fr;
  }

  .service-activity-card { width: min(100%, 260px); }

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

  .service-list-neo {
    grid-template-columns: 1fr;
  }

  .method-v2-layout {
    grid-template-columns: 1fr;
  }

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

  .method-v3-track::before {
    display: none;
  }


  .reviews-carousel-track {
    animation-duration: 110s;
  }

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

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

  .realiz-reveal-item,
  .realiz-reveal-item.is-right {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .realiz-reveal-item.is-right .realiz-side-photo {
    grid-row: 1;
  }

  .realiz-reveal-item.is-right .realiz-reveal-copy {
    grid-row: 2;
  }

.realiz-reveal-item.is-left .realiz-reveal-copy h3,
.realiz-reveal-item.is-right .realiz-reveal-copy h3 {
  text-align: left;
}

.realiz-reveal-item.is-left .realiz-reveal-copy p,
.realiz-reveal-item.is-right .realiz-reveal-copy p {
  text-align: left;
}

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

  .showcase-editorial-card {
    grid-column: span 6;
  }

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

  .emergency-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services-page-hero {
    padding: 80px 0 56px;
  }

  .services-hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 140px 140px;
  }

  .services-hero-media-a,
  .services-hero-media-b,
  .services-hero-media-c {
    grid-column: auto;
    grid-row: auto;
    animation: none;
  }

  .services-signature-grid,
  .services-flow-track {
    grid-template-columns: 1fr;
  }

  .showcase-cine-grid,
  .showcase-panels {
    grid-template-columns: 1fr;
  }

  .service-variant {
    padding: 16px;
  }

  .service-activities-grid {
    justify-content: center;
    gap: 12px;
  }

  .service-activity-card {
    width: min(100%, 320px);
    padding: 12px;
  }

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

  .service-list-band article,
  .service-list-split article {
    grid-template-columns: 1fr;
  }

  .service-photo-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-photo-timeline-item::before {
    width: 100%;
    height: 120px;
  }

  .service-list-photo-grid {
    grid-template-columns: 1fr;
  }

  .method-v2-intro,
  .method-v2-step {
    padding: 16px;
  }

  .method-v2-metrics article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .method-v2-flow::before {
    left: 22px;
  }

  .method-v3-track {
    grid-template-columns: 1fr;
  }

  .method-v3-step {
    padding: 14px;
  }


  .reviews-premium-top {
    grid-template-columns: 1fr;
  }

  .review-trust-bar {
    gap: 10px;
  }

  .review-trust-main {
    gap: 12px;
  }

  .review-trust-main img {
    width: 168px;
    height: 68px;
  }

  .review-trust-rating strong {
    font-size: 1.7rem;
  }

  .review-premium-card {
    padding: 16px;
    width: min(84vw, 320px);
  }

  .partners-loop {
    margin-top: 20px;
  }

  .partners-loop-track {
    gap: 10px;
  }

  .partners-pill {
    width: 170px;
    height: 96px;
    padding: 0;
  }

  .partners-logo {
    width: 100%;
    height: 100%;
  }

  .zone-map-card,
  .zone-cities-card {
    padding: 16px;
  }

  .zone-map-embed iframe {
    min-height: 250px;
  }

  .zone-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .zone-map-grid span {
    font-size: 0.84rem;
    padding: 9px 6px;
  }

  .zone-city-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .emergency-wrap {
    grid-template-columns: 1fr;
    padding: 10px 10px;
    border-radius: 10px;
  }

  .emergency-actions {
    justify-content: center;
  }

  .emergency-actions .btn {
    width: 100%;
  }

  .emergency-side {
    padding: 8px 9px;
  }

  .realiz-main,
  .realiz-card {
    padding: 16px;
  }

  .realiz-side {
    grid-template-columns: 1fr;
  }

  .realiz-side-photo {
    transform: translateX(0);
  }

  .realiz-reveal-copy h3 {
    font-size: clamp(1.25rem, 6.2vw, 1.8rem);
  }

  .realiz-proof {
    grid-template-columns: 1fr;
  }

  .service-list-band span,
  .service-list-split span {
    width: 44px;
    height: 44px;
  }

  .showcase-editorial {
    grid-template-columns: 1fr;
  }

  .showcase-editorial-card {
    grid-column: 1 / -1;
  }
}

@keyframes shineSweep {
  0% { transform: translateX(-120%) rotate(20deg); }
  100% { transform: translateX(260%) rotate(20deg); }
}

@keyframes methodPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(225, 6, 31, 0); }
}

@keyframes methodAura {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, 10px, 0); }
}

@keyframes methodStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes methodV2Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.42); }
  50% { box-shadow: 0 0 0 12px rgba(225, 6, 31, 0); }
}

@keyframes methodV2LineIn {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes methodV2StepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes methodV3Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.45); }
  50% { box-shadow: 0 0 0 11px rgba(225, 6, 31, 0); }
}

@keyframes methodV3Line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes methodV3CardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reviewsCarouselLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}

@keyframes partnersLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}

@keyframes emergencyCallPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 6, 31, 0.34); }
  50% { box-shadow: 0 0 0 12px rgba(225, 6, 31, 0); }
}

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

@keyframes ctaOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ctaGlowPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.75; }
}

@media (max-width: 1040px) {
  .faq-reboot-layout {
    grid-template-columns: 1fr;
  }

  .faq-reboot-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-reboot-intro .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-visual {
    min-height: 220px;
  }

  .cta-visual img {
    width: min(100%, 280px);
  }
}

@media (max-width: 700px) {
  .faq-reboot-intro {
    padding: 0;
  }

  .faq-reboot-intro > p {
    font-size: 1rem;
  }

  .faq-reboot-item summary {
    grid-template-columns: 58px 1fr 18px;
    gap: 10px;
    padding: 16px 14px 14px;
  }

  .faq-reboot-id {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    border-radius: 10px;
  }

  .faq-reboot-title {
    font-size: 1rem;
  }

  .faq-reboot-item p {
    padding: 0 14px 18px 82px;
    font-size: 0.95rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-visual {
    display: grid;
    min-height: 180px;
  }

  .cta-visual img {
    width: min(100%, 220px);
  }

  .cta-visual span:first-of-type {
    width: 170px;
    height: 170px;
  }

  .cta-visual span:last-of-type {
    width: 214px;
    height: 214px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-reboot-item {
    transition: none;
  }

  .cta-wrap::after,
  .cta-visual img,
  .cta-visual span {
    animation: none !important;
  }
}

@media (min-width: 1041px) {
  body {
    padding-left: 228px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 228px;
    z-index: 60;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    backdrop-filter: none;
    background: linear-gradient(180deg, #070707, #0a0a0a 60%, #080808);
    display: flex;
    flex-direction: column;
  }

  .site-header.scrolled {
    background: linear-gradient(180deg, #070707, #0a0a0a 60%, #080808);
  }

  .site-header .container {
    width: 100%;
    margin: 0;
  }

  .header-top {
    display: none;
  }

  .nav-wrap {
    min-height: 100%;
    width: 100%;
    padding: 22px 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
  }

  .brand {
    margin-left: 0;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 1.2rem;
  }

  .brand-logo {
    width: 124px;
    height: 124px;
    margin: 0 auto;
  }

  .menu-btn {
    display: none !important;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav a {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .main-nav a:hover,
  .main-nav a.active {
    color: #fff;
    background: rgba(225, 6, 31, 0.2);
  }

  .header-cta {
    margin-top: 0;
    width: 100%;
    min-height: 44px;
    font-size: 0.86rem;
    text-align: center;
    justify-content: center;
  }

  .header-cta-group {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
  }

  .site-footer .footer-brand {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    font-size: 1.04rem;
  }

  .site-footer .footer-brand .brand-logo {
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .site-footer .container {
    padding-inline: clamp(20px, 2.2vw, 34px);
  }
}

@media (max-width: 1040px) {
  body {
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
  }

  .hero-stats div {
    padding: 0 12px 0 0;
    justify-items: center;
  }

  .hero-stats div::after {
    right: 1px;
  }

  .hero-stats strong {
    font-size: 1.02rem;
  }

  .hero-stats span {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .hero::before {
    opacity: 0.72;
  }

  .hero::after {
    opacity: 0.4;
    width: 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-overlay,
  .hero::before,
  .hero::after {
    animation: none !important;
  }

  .hero-image {
    transform: scale(1.08);
    filter: saturate(0.36) brightness(0.33) contrast(1.1);
  }

  .service-activity-card {
    transform: none !important;
    opacity: 1 !important;
  }
}

.services-page-hero--neo {
  padding: 88px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(880px 360px at 4% 4%, rgba(225, 6, 31, 0.22), transparent 62%),
    radial-gradient(760px 320px at 98% 14%, rgba(255, 255, 255, 0.1), transparent 64%),
    linear-gradient(130deg, rgba(10, 10, 10, 0.98), rgba(24, 6, 10, 0.92) 45%, rgba(8, 8, 8, 0.98));
}

.services-page-hero--neo::before {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.1), transparent 38%);
}

.services-page-hero--neo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -32deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 12px
    );
  mix-blend-mode: soft-light;
  opacity: 0.75;
}

.services-hero-neo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 30px;
}

.services-hero-neo-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.services-hero-neo-copy p {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(1rem, 1.12vw, 1.2rem);
}

.services-hero-neo-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero-neo-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 700px);
  min-height: clamp(370px, 46vw, 560px);
}

.services-hero-neo-main,
.services-hero-neo-float {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.services-hero-neo-main {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: clamp(300px, 36vw, 500px);
  aspect-ratio: 5 / 4;
  border-radius: 24px;
}

.services-hero-neo-float {
  position: absolute;
  width: clamp(155px, 18vw, 230px);
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  animation: servicesFloatA 8.4s ease-in-out infinite;
}

.services-hero-neo-float-a {
  left: 4%;
  top: 0;
}

.services-hero-neo-float-b {
  right: 4%;
  top: 12%;
  animation-name: servicesFloatB;
  animation-duration: 7.6s;
}

.services-hero-neo-float-c {
  right: 11%;
  bottom: 0;
  animation-duration: 9.2s;
}

.services-hero-neo-main img,
.services-hero-neo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.06) contrast(1.05);
}

.services-hero-neo-main:hover img,
.services-hero-neo-float:hover img {
  transform: scale(1.09);
  filter: saturate(1.12) contrast(1.08);
}

.services-hero-neo-marquee {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.services-hero-neo-marquee span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 14px;
  font-family: "Teko", sans-serif;
  font-size: 1.16rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-hero-neo-marquee span:nth-child(odd) {
  border-color: rgba(225, 6, 31, 0.48);
  background: rgba(225, 6, 31, 0.16);
}

@media (max-width: 1040px) {
  .services-hero-neo {
    grid-template-columns: 1fr;
  }

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

  .services-hero-neo-stage {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .services-page-hero--neo {
    padding: 76px 0 20px;
  }

  .services-hero-neo-stage {
    min-height: 330px;
  }

  .services-hero-neo-main {
    left: 7%;
    top: 11%;
    width: 84%;
    border-radius: 18px;
  }

  .services-hero-neo-float {
    width: clamp(120px, 34vw, 170px);
    border-radius: 14px;
  }

  .services-hero-neo-float-a {
    left: 0;
    top: -1%;
  }

  .services-hero-neo-float-b {
    right: 0;
    top: 10%;
  }

  .services-hero-neo-float-c {
    right: 3%;
    bottom: 1%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-neo-stage,
  .services-hero-neo-main,
  .services-hero-neo-float,
  .services-hero-neo-marquee {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Services hero refresh inspired by reference */
.services-page-hero--neo {
  padding: 84px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 420px at 0% 8%, rgba(150, 9, 29, 0.28), transparent 68%),
    radial-gradient(740px 340px at 96% 20%, rgba(188, 16, 40, 0.14), transparent 66%),
    linear-gradient(180deg, #050507 0%, #06070b 60%, #050507 100%);
}

.services-hero-neo {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.services-hero-neo-copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-hero-neo-copy .kicker::after {
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 20, 49, 0.95), rgba(230, 20, 49, 0.05));
}

.services-hero-neo-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.services-hero-accent {
  color: #e10b2a;
}

.services-hero-neo-copy p {
  max-width: 40ch;
  color: rgba(237, 239, 244, 0.84);
}

.services-hero-neo-actions .btn-primary {
  background: linear-gradient(135deg, #aa0a22, #d70d2d);
}

.services-hero-neo-trust {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.services-hero-neo-trust li {
  position: relative;
  padding-left: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: rgba(240, 238, 241, 0.9);
  font-weight: 700;
}

.services-hero-neo-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(226, 20, 47, 0.72);
  background: radial-gradient(circle at 50% 50%, rgba(226, 20, 47, 0.95) 0 3px, rgba(0, 0, 0, 0) 4px);
}

.services-hero-neo-stage {
  width: min(100%, 620px);
  min-height: clamp(310px, 38vw, 460px);
}

.services-hero-neo-main,
.services-hero-neo-float {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.44),
    0 18px 34px rgba(225, 16, 42, 0.28);
}

.services-hero-neo-main {
  top: 10%;
  width: clamp(200px, 27vw, 360px);
  aspect-ratio: 10 / 12;
  border-radius: 18px;
  border-color: rgba(232, 22, 48, 0.6);
  box-shadow:
    0 0 26px rgba(228, 16, 42, 0.35),
    0 30px 58px rgba(0, 0, 0, 0.42),
    0 24px 42px rgba(225, 6, 31, 0.34);
}

.services-hero-neo-main img {
  transform: scale(1.02);
}

.services-hero-neo-float {
  border-radius: 16px;
  overflow: hidden;
  width: clamp(110px, 12vw, 170px);
}

.services-hero-neo-float figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(130deg, rgba(11, 11, 12, 0.86), rgba(30, 10, 14, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero-neo-float-a {
  left: 2%;
  top: 0;
}

.services-hero-neo-float-b {
  right: 2%;
  top: 10%;
}

.services-hero-neo-float-c {
  right: 8%;
  bottom: 6%;
}

.services-hero-neo-call {
  position: absolute;
  right: -76px;
  top: 46%;
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #9d0b21, #d50f2f);
  border: 1px solid rgba(255, 150, 164, 0.4);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 20px rgba(230, 20, 48, 0.4);
}

.services-hero-neo-call span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-hero-neo-call strong {
  font-size: 0.95rem;
}

.services-hero-neo-marquee {
  margin-top: 24px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(13, 13, 14, 0.9), rgba(8, 8, 9, 0.95));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.services-hero-neo-marquee article {
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-neo-marquee article:last-child {
  border-right: 0;
}

.services-hero-neo-marquee strong {
  display: block;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.services-hero-neo-marquee span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: rgba(226, 229, 236, 0.76);
}

@media (max-width: 1180px) {
  .services-hero-neo-call {
    right: -36px;
  }
}

@media (max-width: 1040px) {
  .services-hero-neo {
    grid-template-columns: 1fr;
  }

  .services-hero-neo-call {
    right: 14px;
    top: auto;
    bottom: -10px;
  }

  .services-hero-neo-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .services-hero-neo-marquee article {
    border-right: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
}

@media (max-width: 700px) {
  .services-page-hero--neo {
    padding: 72px 0 14px;
  }

  .services-hero-neo-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .services-hero-neo-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-hero-neo-stage {
    min-height: 290px;
  }

  .services-hero-neo-main {
    width: min(70vw, 290px);
    top: 16%;
  }

  .services-hero-neo-float {
    width: min(32vw, 130px);
  }

  .services-hero-neo-float-a {
    left: 0;
  }

  .services-hero-neo-float-b {
    right: 0;
  }

  .services-hero-neo-call {
    position: static;
    margin: 12px auto 0;
    width: fit-content;
  }

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

.services-signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
}

.services-signature-card {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transform: none !important;
}

.services-signature-grid .services-signature-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.services-signature-card::after {
  display: none;
}

.services-signature-link {
  position: relative;
  min-height: 166px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(520px 160px at -18% -24%, rgba(225, 6, 31, 0.1), rgba(0, 0, 0, 0)),
    linear-gradient(165deg, rgba(18, 18, 18, 0.96), rgba(7, 7, 7, 0.98));
  padding: 16px 16px 14px 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.services-signature-link::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -36%;
  width: 40%;
  height: 140%;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.36), rgba(225, 6, 31, 0));
  transform: translateX(0) skewX(-18deg);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.28s ease;
  pointer-events: none;
}

.services-signature-link span {
  position: static;
  width: 40px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: inline-grid;
  place-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Teko", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.services-signature-link h3,
.services-signature-link p {
  margin: 0;
}

.services-signature-link h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.26rem, 1.36vw, 1.9rem);
  line-height: 0.94;
  font-family: "Teko", sans-serif;
  margin-top: 2px;
}

.services-signature-link p {
  color: rgba(240, 240, 240, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
  max-width: 33ch;
}

.services-signature-link strong {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.86;
}

.services-signature-link strong::after {
  content: "\203A";
  color: #ff8a00;
  font-size: 1.24rem;
  line-height: 0.8;
}

.services-signature-link:hover,
.services-signature-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 31, 0.82);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34), 0 12px 20px rgba(120, 8, 22, 0.26);
}

.services-signature-link:hover::after,
.services-signature-link:focus-visible::after {
  opacity: 1;
  transform: translateX(360%) skewX(-18deg);
}

.services-signature .section-heading {
  text-align: left;
  max-width: 1200px;
  margin-inline: auto;
}

.services-signature .section-heading .kicker {
  color: #e1061f;
  letter-spacing: 0.16em;
}

.services-signature .section-heading h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  max-width: 18ch;
}

/* Services interventions - premium cards layout */
.services-signature-pro {
  background:
    radial-gradient(860px 320px at 0% 0%, rgba(176, 10, 31, 0.25), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #050506, #06070a);
}

.services-signature-pro-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.services-signature-pro-copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-signature-pro-copy .kicker::after {
  content: "";
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 14, 40, 0.95), rgba(226, 14, 40, 0.08));
}

.services-signature-pro-copy h2 {
  margin-bottom: 12px;
  max-width: 16ch;
  line-height: 0.93;
  font-size: clamp(2.2rem, 4.8vw, 3.9rem);
}

.services-signature-pro-copy h2 span {
  color: #e10924;
}

.services-signature-pro-copy > p {
  max-width: 56ch;
  color: rgba(236, 238, 243, 0.84);
}

.services-signature-pro-call {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 137, 153, 0.44);
  color: #fff;
  background: linear-gradient(135deg, #9c091f, #d80f2e);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.36), 0 0 18px rgba(225, 6, 31, 0.38);
}

.services-signature-pro-call span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-signature-pro-call strong {
  font-size: 0.92rem;
}

.services-signature-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-auto-rows: 194px;
}

.services-signature-pro-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(11, 11, 12, 0.95), rgba(6, 6, 7, 0.98));
  overflow: hidden;
  height: 100%;
}

.services-signature-pro-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.68fr;
  min-height: 194px;
  height: 100%;
}

.services-signature-pro-index {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  min-width: 26px;
  height: 20px;
  border-radius: 6px;
  padding: 0 6px;
  background: linear-gradient(135deg, rgba(225, 6, 31, 0.95), rgba(130, 10, 24, 0.88));
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: grid;
  place-content: center;
}

.services-signature-pro-media {
  margin: 0;
  height: 100%;
}

.services-signature-pro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.services-signature-pro-text {
  padding: 16px 14px 14px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  height: 100%;
  min-height: 0;
}

.services-signature-pro-text h3 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 1.42rem;
  line-height: 0.95;
  max-height: 2.05em;
  overflow: hidden;
}

.services-signature-pro-text p {
  margin: 0;
  color: rgba(233, 236, 241, 0.82);
  font-size: 0.84rem;
  line-height: 1.35;
  overflow: hidden;
  max-height: 2.8em;
}

.services-signature-pro-link:hover .services-signature-pro-media img,
.services-signature-pro-link:focus-visible .services-signature-pro-media img {
  transform: scale(1.06);
}

.services-signature-pro-grid .services-signature-pro-card:nth-child(7) {
  grid-column: 2;
}

.services-signature-pro-grid .services-signature-pro-card:nth-child(4) .services-signature-pro-text h3 {
  font-size: 1.2rem;
  line-height: 1.02;
  max-height: none;
  overflow: visible;
}

@media (max-width: 1120px) {
  .services-signature-pro-head {
    grid-template-columns: 1fr;
  }

  .services-signature-pro-call {
    width: fit-content;
  }

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

  .services-signature-pro-grid .services-signature-pro-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .services-signature-pro-grid {
    grid-template-columns: 1fr;
  }

  .services-signature-pro-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .services-signature-pro-media {
    height: 182px;
  }
}

.service-detail-page {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 320px at 10% -5%, rgba(225, 6, 31, 0.16), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(11, 11, 11, 0.86), rgba(7, 7, 7, 0.96));
}

.service-detail-page .section-pad {
  padding: 56px 0;
}

.service-detail-hero h1 {
  margin-bottom: 10px;
}

.service-detail-hero p {
  max-width: 64ch;
}

.service-back-link {
  margin-bottom: 12px;
  padding: 9px 16px;
}

.service-detail-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.service-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

.service-detail-card h2,
.service-detail-card h3,
.service-detail-card p {
  margin: 0;
}

.service-detail-card h2,
.service-detail-card h3 {
  margin-bottom: 8px;
  color: #fff;
}

.service-detail-card p + p {
  margin-top: 10px;
}

.service-check-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-check-list li {
  position: relative;
  padding-left: 22px;
}

.service-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e1061f;
  box-shadow: 0 0 0 3px rgba(225, 6, 31, 0.2);
}

.service-formulas {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-formula {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.service-formula h3,
.service-formula p {
  margin: 0;
}

.service-formula .service-price {
  margin: 8px 0;
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.service-mini-steps {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-mini-steps article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
}

.service-mini-steps span {
  display: inline-grid;
  place-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(225, 6, 31, 0.76);
  background: rgba(225, 6, 31, 0.2);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.12rem;
}

.service-mini-steps h4,
.service-mini-steps p {
  margin: 6px 0 0;
}

.service-mini-steps h4 {
  color: #fff;
}

.service-detail-cta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-detail-gallery-section {
  padding-top: 8px;
}

.service-detail-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-detail-gallery-card {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(225, 6, 31, 0.12) inset;
}

.service-detail-gallery-card img {
  display: block;
  width: 100%;
  height: 198px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-gallery-meta {
  padding: 12px 12px 13px;
}

.service-detail-gallery-meta h3,
.service-detail-gallery-meta p {
  margin: 0;
}

.service-detail-gallery-meta h3 {
  margin-bottom: 6px;
  color: #fff;
}

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

  .services-signature-grid .services-signature-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .services-flow-step::before {
    display: none;
  }

  .service-formulas,
  .service-mini-steps {
    grid-template-columns: 1fr;
  }

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

  .service-detail-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .service-detail-page .section-pad {
    padding: 42px 0;
  }

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

  .services-signature .section-heading {
    text-align: center;
  }

  .services-signature .section-heading h2 {
    max-width: none;
  }
}

.services-flow.services-flow-reboot {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(840px 280px at 8% 0%, rgba(225, 6, 31, 0.15), rgba(0, 0, 0, 0)),
    radial-gradient(760px 280px at 100% 100%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.78), rgba(7, 7, 7, 0.92));
}

.services-flow-reboot .services-flow-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.services-flow-reboot .services-flow-head {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 20px;
}

.services-flow-reboot .services-flow-head h2,
.services-flow-reboot .services-flow-head p {
  margin: 0;
}

.services-flow-reboot .services-flow-head h2 {
  margin-bottom: 10px;
  line-height: 0.95;
}

.services-flow-reboot .services-flow-head p {
  color: rgba(239, 239, 239, 0.9);
}

.services-flow-reboot .services-flow-rail {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.services-flow-reboot .services-flow-rail::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(225, 6, 31, 0.2), rgba(225, 6, 31, 0.82), rgba(225, 6, 31, 0.2));
}

.services-flow-reboot .services-flow-node {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 14px 14px 14px 56px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.services-flow-reboot .services-flow-node::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 27px;
  width: 24px;
  height: 2px;
  background: rgba(225, 6, 31, 0.78);
}

.services-flow-reboot .services-flow-num {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.86);
  background: rgba(225, 6, 31, 0.22);
  color: #fff;
  display: inline-grid;
  place-content: center;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.services-flow-reboot .services-flow-node h3,
.services-flow-reboot .services-flow-node p {
  margin: 0;
}

.services-flow-reboot .services-flow-node h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.services-flow-reboot .services-flow-node p {
  margin-top: 5px;
  color: rgba(240, 240, 240, 0.9);
  line-height: 1.4;
}

.services-flow-reboot .services-flow-node:hover {
  transform: translateX(4px);
  border-color: rgba(225, 6, 31, 0.82);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34), 0 10px 18px rgba(120, 8, 20, 0.2);
}

@media (max-width: 1040px) {
  .services-flow-reboot .services-flow-shell {
    grid-template-columns: 1fr;
  }

  .services-flow-reboot .services-flow-head {
    position: static;
  }
}

.services-flow.services-flow-round {
  padding-top: 44px;
  padding-bottom: 44px;
  background:
    radial-gradient(860px 300px at 0% 0%, rgba(225, 6, 31, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.78), rgba(8, 8, 8, 0.92));
}

.services-flow-round-track {
  position: relative;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.services-flow-round-track::before {
  display: none;
}

.services-flow-round-step {
  position: relative;
  z-index: 1;
  width: min(100%, 206px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(120% 120% at 30% 18%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 5px;
  padding: 12px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-flow-round-step::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.34);
  opacity: 0.75;
  pointer-events: none;
}

.services-flow-round-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.84);
  background: rgba(225, 6, 31, 0.24);
  display: inline-grid;
  place-content: center;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.services-flow-round-step h3,
.services-flow-round-step p {
  margin: 0;
}

.services-flow-round-step h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

.services-flow-round-step p {
  color: rgba(240, 240, 240, 0.9);
  font-size: 0.8rem;
  line-height: 1.3;
  max-width: 18ch;
}

.services-flow-round-step:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(225, 6, 31, 0.82);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32), 0 10px 16px rgba(110, 8, 20, 0.22);
}

.services-flow-round-step:hover::before {
  border-color: rgba(225, 6, 31, 0.62);
}

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

  .services-flow-round-track::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .services-flow-round-track {
    grid-template-columns: 1fr;
  }
}

/* Services method section - reference style */
.services-flow.services-flow-round {
  position: relative;
  padding-top: 54px;
  padding-bottom: 52px;
  background:
    radial-gradient(760px 300px at 0% 0%, rgba(186, 10, 33, 0.22), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #070809, #050506);
}

.services-flow-pro-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.1rem);
  line-height: 0.92;
}

.services-flow-pro-head h2 span {
  color: #e10823;
}

.services-flow-pro-head .services-flow-intro {
  max-width: 56ch;
  margin-inline: auto;
}

.services-flow-callchip {
  position: absolute;
  right: clamp(10px, 2vw, 22px);
  top: 192px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 156, 0.5);
  background: linear-gradient(135deg, #9c0a20, #d20f2d);
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.34), 0 0 18px rgba(225, 6, 31, 0.32);
}

.services-flow-callchip span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-flow-callchip strong {
  font-size: 0.92rem;
}

.services-flow-pro-timeline {
  position: relative;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.services-flow-pro-timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0.1), rgba(225, 6, 31, 0.95), rgba(225, 6, 31, 0.1));
}

.services-flow-pro-timeline span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.78);
  background: #08090a;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  display: grid;
  place-content: center;
}

.services-flow-pro-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services-flow-pro-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(165deg, rgba(10, 10, 11, 0.96), rgba(6, 6, 7, 0.98));
  padding: 18px 14px 14px;
  text-align: center;
}

.services-flow-pro-icon {
  margin: 0 auto 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.7);
  color: #df0d27;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: grid;
  place-content: center;
}

.services-flow-pro-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}

.services-flow-pro-card p {
  margin: 0 auto;
  max-width: 24ch;
  color: rgba(236, 238, 242, 0.84);
  font-size: 0.9rem;
  line-height: 1.35;
}

.services-flow-pro-card::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.9), rgba(225, 6, 31, 0));
}

.services-flow-pro-strip {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(12, 12, 13, 0.92), rgba(6, 6, 7, 0.98));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-flow-pro-strip article {
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.services-flow-pro-strip article:last-child {
  border-right: 0;
}

.services-flow-pro-strip strong {
  display: block;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.services-flow-pro-strip span {
  display: block;
  margin-top: 2px;
  color: rgba(233, 236, 241, 0.75);
  font-size: 0.78rem;
  line-height: 1.3;
}

@media (max-width: 1120px) {
  .services-flow-callchip {
    display: none;
  }

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

  .services-flow-pro-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .services-flow-pro-strip article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(12, 12, 13, 0.92), rgba(6, 6, 7, 0.98));
  }
}

@media (max-width: 700px) {
  .services-flow-pro-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .services-flow-pro-timeline::before {
    display: none;
  }

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

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

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

.before-after-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 320px at 8% 4%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.78), rgba(8, 8, 8, 0.92));
}

.before-after-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.before-after-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 12px;
}

.before-after-card h3 {
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.before-after-section--services .before-after-grid--single {
  grid-template-columns: 1fr;
}

.before-after-section--services .before-after-card--cleaning {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 16px;
}

.before-after-section--services .before-after-card--cleaning h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  margin-bottom: 10px;
}

.before-after-section--services .before-after-card--cleaning .before-after-stage {
  aspect-ratio: 18 / 9;
  border-radius: 14px;
}

.before-after-stage {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
  touch-action: none;
  cursor: ew-resize;
}

.ba-layer {
  margin: 0;
  position: absolute;
  inset: 0;
}

.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before img {
  filter: saturate(0.84) contrast(0.92);
}

.ba-after {
  width: 100%;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-layer figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-after figcaption {
  left: auto;
  right: 10px;
  border-color: rgba(225, 6, 31, 0.55);
  background: rgba(225, 6, 31, 0.28);
}

/* Cadrage dedie pour la carte "Nettoyage et traitement" */
.before-after-card--cleaning .ba-before img,
.before-after-card--cleaning .ba-after img {
  transform: scale(1.24);
  transform-origin: center center;
}

.before-after-card--cleaning .ba-before img {
  object-position: 72% 52%;
  transform: scale(1.26) translate(20%, -1%);
}

.before-after-card--cleaning .ba-after img {
  object-position: 49% 52%;
  transform: scale(1.22) translate(0, -1%);
}

/* Cadrage dedie pour la carte "Renovation toiture" */
.before-after-card--renovation .ba-before img {
  object-position: 50% 50%;
  transform: scale(1.2) translate(6%, -1%);
}

.before-after-card--renovation .ba-after img {
  object-position: 50% 50%;
  transform: scale(1.2) translate(6%, -1%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.8);
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  display: inline-grid;
  place-content: center;
  cursor: ew-resize;
  padding: 0;
}

.ba-handle::before {
  content: "< >";
}

.ba-handle:focus-visible {
  outline: 2px solid rgba(225, 6, 31, 0.8);
  outline-offset: 2px;
}

.ba-range-label {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: none;
}

@media (max-width: 1040px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

.rea-page-cinematic {
  overflow: clip;
}

.rea-cine-hero {
  position: relative;
  min-height: min(88vh, 840px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  align-items: end;
}

.rea-hero-divider {
  height: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background:
    linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.55), rgba(225, 6, 31, 0)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(5, 5, 5, 0.98));
}

.rea-cine-ribbon--plain {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  height: 14px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background:
    linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.55), rgba(225, 6, 31, 0)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(5, 5, 5, 0.98));
}

.rea-cine-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.34) brightness(0.42) contrast(1.08);
  transform: scale(1.08);
  animation: heroAuraDrift 13s ease-in-out infinite;
}

.rea-cine-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(780px 280px at 12% 10%, rgba(225, 6, 31, 0.3), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(7, 7, 7, 0.34), rgba(7, 7, 7, 0.86));
}

.rea-cine-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 40%);
  mix-blend-mode: soft-light;
}

.rea-cine-content {
  position: relative;
  z-index: 1;
  padding-bottom: 88px;
  text-align: center;
}

.rea-cine-content h1 {
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 7.2vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.rea-cine-content p {
  max-width: 60ch;
  margin-inline: auto;
}

.rea-cine-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.rea-cine-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
  background: rgba(6, 6, 6, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: visible;
}

.rea-cine-ribbon span {
  flex: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.14rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: reviewsMarquee 22s linear infinite;
}

.rea-page-reboot {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(225, 6, 31, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #040404, #020202);
}

.rea-reboot-hero {
  padding-top: 36px;
}

.rea-reboot-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 24px;
}

.rea-reboot-copy h1 {
  margin: 8px 0 0;
  max-width: 10ch;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.rea-reboot-copy h1 span {
  color: #e1061f;
}

.rea-reboot-copy > p {
  margin: 14px 0 0;
  max-width: 30ch;
  color: rgba(240, 240, 240, 0.9);
}

.rea-reboot-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.05em;
}

.rea-reboot-btn span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-grid;
  place-content: center;
}

.rea-reboot-phone-wrap {
  display: grid;
  justify-items: center;
}

.rea-reboot-hero-scene {
  position: relative;
  width: min(100%, 620px);
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(500px 240px at 20% 95%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0)),
    radial-gradient(620px 300px at 94% 10%, rgba(225, 6, 31, 0.14), rgba(0, 0, 0, 0)),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.05) 0 2px, rgba(0, 0, 0, 0) 2px 16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rea-hand-shape {
  position: absolute;
  right: 26px;
  bottom: -8px;
  width: 240px;
  height: 340px;
  border-radius: 44% 56% 50% 50% / 40% 50% 50% 60%;
  background:
    radial-gradient(120px 90px at 66% 18%, rgba(255, 214, 181, 0.35), rgba(70, 38, 24, 0) 70%),
    linear-gradient(170deg, rgba(120, 73, 45, 0.85), rgba(63, 32, 18, 0.96));
  filter: blur(0.2px);
  transform: rotate(12deg);
  box-shadow: -24px 10px 34px rgba(0, 0, 0, 0.4);
}

.rea-reboot-phone {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.96), rgba(7, 7, 7, 0.98));
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.5);
}

.rea-reboot-phone--main {
  width: min(100%, 370px);
  aspect-ratio: 10 / 18;
  padding: 14px;
  transform: rotate(-16deg);
  position: absolute;
  right: 120px;
  top: 26px;
  z-index: 2;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.62);
}

.rea-reboot-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(235, 235, 235, 0.94);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.rea-reboot-phone-head .kicker {
  margin: 0;
}

.rea-reboot-phone-head p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(232, 232, 232, 0.88);
}

.rea-reboot-phone-filters {
  margin-top: 9px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.rea-reboot-phone-filters span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 3px 8px;
  color: rgba(242, 242, 242, 0.9);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.rea-reboot-phone-filters .is-active {
  border-color: rgba(225, 6, 31, 0.9);
  background: rgba(225, 6, 31, 0.95);
  color: #fff;
}

.rea-reboot-phone figure {
  margin: 10px 0 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.rea-reboot-phone figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.9);
}

.rea-reboot-phone figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.rea-reboot-phone figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}

.rea-reboot-phone figcaption strong {
  display: block;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.rea-reboot-phone figcaption span {
  color: rgba(234, 234, 234, 0.92);
  font-size: 0.82rem;
}

.rea-reboot-showcase {
  padding-top: 26px;
}

.rea-reboot-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rea-reboot-mini-phone {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.96), rgba(7, 7, 7, 0.98));
}

.rea-reboot-mini-top {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.rea-reboot-mini-top span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 2px 6px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.9);
}

.rea-reboot-mini-top .is-active {
  border-color: rgba(225, 6, 31, 0.9);
  background: rgba(225, 6, 31, 0.94);
  color: #fff;
}

.rea-reboot-mini-phone img {
  margin-top: 8px;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.rea-reboot-mini-phone div p {
  margin: 8px 0 0;
  color: #e1061f;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rea-reboot-mini-phone div h3 {
  margin: 4px 0 0;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.rea-reboot-mini-phone div span {
  color: rgba(236, 236, 236, 0.9);
  font-size: 0.78rem;
}

.rea-reboot-proof {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rea-reboot-proof strong {
  display: block;
  color: #e1061f;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.rea-reboot-proof span {
  color: rgba(236, 236, 236, 0.9);
}

.rea-reboot-cta {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.rea-reboot-cta p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.rea-reboot-cta strong {
  color: #fff;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 0.92;
}

.rea-reboot-cta p span {
  color: #e1061f;
  font-weight: 700;
}

.rea-reboot-cta a {
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(225, 6, 31, 0.98), rgba(199, 10, 30, 0.96));
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.rea-steps-cine {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(760px 300px at 100% 0%, rgba(225, 6, 31, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.76), rgba(7, 7, 7, 0.94));
}

.rea-steps-intro {
  margin: 10px auto 0;
  max-width: 62ch;
  color: rgba(240, 240, 240, 0.9);
}

.rea-steps-track {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rea-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 14px;
  overflow: hidden;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.rea-step::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.74), rgba(225, 6, 31, 0));
  opacity: 0.74;
}

.rea-step span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.82);
  background: rgba(225, 6, 31, 0.24);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
}

.rea-step h3,
.rea-step p {
  margin: 6px 0 0;
}

.rea-step h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.96rem;
}

.rea-step p {
  color: rgba(241, 241, 241, 0.9);
  line-height: 1.4;
}

.rea-step:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 31, 0.76);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34), 0 12px 20px rgba(110, 8, 20, 0.24);
}

.rea-steps-badges {
  margin-top: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.rea-steps-badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.04);
}

.rea-steps-cine .cta-wrap {
  margin-top: 28px;
}

.rea-steps-cine .cta-wrap {
  align-items: center;
}

.rea-cta-main,
.rea-cta-side {
  position: relative;
  z-index: 1;
}

.rea-cta-main h2 {
  margin-bottom: 14px;
}

.rea-cta-side {
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 12px;
  justify-self: end;
}

.rea-cta-side p {
  margin: 0;
  max-width: 36ch;
  justify-self: end;
}

.rea-cta-logo {
  width: min(100%, 170px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
  justify-self: end;
}

@media (max-width: 1040px) {
  .rea-cta-side {
    justify-items: center;
  }
}

@media (max-width: 1040px) {
  .rea-reboot-hero-grid {
    grid-template-columns: 1fr;
  }

  .rea-reboot-hero-scene {
    width: min(100%, 560px);
    min-height: 520px;
  }

  .rea-reboot-phone--main {
    right: 90px;
    top: 24px;
  }

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

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

  .rea-reboot-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .rea-reboot-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .rea-reboot-hero-scene {
    min-height: 430px;
  }

  .rea-hand-shape {
    right: 4px;
    width: 180px;
    height: 250px;
  }

  .rea-reboot-phone--main {
    width: min(100%, 270px);
    right: 44px;
    top: 18px;
  }

  .rea-reboot-cards {
    grid-template-columns: 1fr;
  }

  .rea-reboot-proof {
    grid-template-columns: 1fr;
  }

  .rea-reboot-cta strong {
    font-size: 1.6rem;
  }

  .rea-steps-track {
    grid-template-columns: 1fr;
  }
}

.rea-proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.84), rgba(8, 8, 8, 0.92));
}

.rea-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rea-proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  text-align: center;
}

.rea-proof-grid strong {
  display: block;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.04em;
}

.rea-proof-grid span {
  color: rgba(240, 240, 240, 0.92);
}

.rea-sector {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(760px 220px at 100% 0%, rgba(225, 6, 31, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(11, 11, 11, 0.78), rgba(8, 8, 8, 0.92));
}

.rea-sector-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rea-sector-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  padding: 14px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.rea-sector-card::before {
  content: "";
  position: absolute;
  top: -24%;
  left: -28%;
  width: 36%;
  height: 150%;
  background: linear-gradient(90deg, rgba(225, 6, 31, 0), rgba(225, 6, 31, 0.26), rgba(225, 6, 31, 0));
  transform: translateX(0) skewX(-14deg);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.28s ease;
}

.rea-sector-card h3,
.rea-sector-card p {
  margin: 0;
}

.rea-sector-id {
  display: inline-grid;
  place-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(225, 6, 31, 0.82);
  background: rgba(225, 6, 31, 0.2);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.rea-sector-card h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.rea-sector-card p {
  color: rgba(240, 240, 240, 0.9);
}

.rea-sector-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rea-sector-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.03);
}

.rea-sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 31, 0.78);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.32), 0 10px 18px rgba(100, 8, 20, 0.2);
}

.rea-sector-card:hover::before {
  opacity: 1;
  transform: translateX(360%) skewX(-14deg);
}

.rea-faq-mini {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(7, 7, 7, 0.94));
}

.rea-faq-mini-grid {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.rea-faq-mini-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.rea-faq-mini-item summary {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
}

.rea-faq-mini-item p {
  margin: 8px 0 0;
}

@media (max-width: 1040px) {
  .rea-proof-grid,
  .rea-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .rea-proof-grid,
  .rea-sector-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   A PROPOS PAGE
========================= */
.about-page {
  position: relative;
  overflow: clip;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 460px at 80% 0%, rgba(225, 6, 31, 0.14), transparent 65%),
    radial-gradient(700px 380px at 0% 40%, rgba(225, 6, 31, 0.08), transparent 62%);
}

.about-hero {
  position: relative;
  padding: 86px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 18ch;
}

.about-hero-copy > p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.about-photo {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-main {
  inset: auto 0 0 62px;
  width: min(100%, 390px);
  aspect-ratio: 1 / 1.03;
  z-index: 1;
}

.about-photo-top {
  top: 12px;
  right: 10px;
  width: 230px;
  aspect-ratio: 1 / 0.82;
  z-index: 2;
  animation: aboutFloatA 6.8s ease-in-out infinite;
}

.about-photo-bottom {
  bottom: 16px;
  right: -8px;
  width: 230px;
  aspect-ratio: 1 / 0.82;
  z-index: 2;
  animation: aboutFloatB 6.8s ease-in-out infinite;
}

.about-logo-float {
  position: absolute;
  left: 0;
  top: 8px;
  width: 170px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
  opacity: 0.96;
  animation: aboutLogoPulse 4.8s ease-in-out infinite;
}

.about-story {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 20px;
}

.about-story-card,
.about-story-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(140deg, rgba(30, 30, 30, 0.74), rgba(14, 14, 14, 0.85));
}

.about-story-list h3 {
  margin: 0 0 14px;
}

.about-story-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-story-list li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.about-values {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 31, 0.54);
  box-shadow: 0 18px 28px rgba(225, 6, 31, 0.18);
}

.about-value-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 31, 0.58);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-value-card h3 {
  margin: 0 0 8px;
}

.about-value-card p {
  margin: 0;
}

.about-method {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-method-line {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-method-step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.about-method-step span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(225, 6, 31, 0.7);
  background: radial-gradient(circle at 35% 20%, rgba(225, 6, 31, 0.45), rgba(225, 6, 31, 0.12));
  font-weight: 700;
}

.about-method-step h3 {
  margin: 0 0 8px;
}

.about-method-step p {
  margin: 0;
}

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

.about-proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.about-proof-grid strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: #fff;
  line-height: 0.95;
}

.about-proof-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.73rem;
}

.about-final-cta {
  padding-top: 8px;
}

.about-final-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(225, 6, 31, 0.5);
  border-radius: 20px;
  padding: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(130deg, rgba(164, 9, 25, 0.5), rgba(17, 17, 17, 0.86));
}

.about-final-wrap h2 {
  margin-bottom: 10px;
}

.about-final-wrap p {
  max-width: 60ch;
  margin-bottom: 16px;
}

.about-final-wrap img {
  width: clamp(120px, 18vw, 190px);
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

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

@keyframes aboutFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

@keyframes aboutLogoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 1180px) {
  .about-values-grid,
  .about-method-line,
  .about-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-hero-visual {
    min-height: 430px;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-final-wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .about-hero {
    padding-top: 74px;
  }

  .about-values-grid,
  .about-method-line,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 390px;
  }

  .about-photo-main {
    inset: auto 0 0 20px;
    width: min(100%, 310px);
  }

  .about-photo-top {
    width: 170px;
    right: 0;
  }

  .about-photo-bottom {
    width: 170px;
    right: 0;
    bottom: 8px;
  }

  .about-logo-float {
    width: 130px;
  }

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

@keyframes contactHeroZoom {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.2%, -0.8%, 0); }
}

@media (max-width: 1180px) {
  .contact-hero-cine-grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 72px;
  }

  .contact-hero-glass {
    max-width: 520px;
  }

  .contact-section-main {
    margin-top: -46px;
  }
}

@media (max-width: 860px) {
  .contact-hero-cine {
    min-height: auto;
  }

  .contact-hero-cine-grid {
    padding-top: 92px;
    padding-bottom: 62px;
  }

  .contact-hero-copy h1,
  .contact-hero-copy p {
    max-width: none;
  }

  .contact-section-main {
    margin-top: 0;
  }

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

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

  .contact-mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
  }

  .contact-mobile-sticky a {
    min-height: 40px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
  }

  .contact-mobile-sticky a:first-child {
    border-color: rgba(177, 11, 31, 0.8);
    background: linear-gradient(140deg, #b10b1f, #8a0718);
  }

  .contact-mobile-sticky a:last-child {
    border-color: rgba(37, 184, 97, 0.7);
    background: rgba(20, 96, 58, 0.35);
  }

  .contact-page {
    padding-bottom: 86px;
  }

  .quick-call-tag {
    right: 0;
    top: auto;
    bottom: calc(72px + env(safe-area-inset-bottom));
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px 12px 10px 10px;
  }

  .quick-call-tag:hover {
    transform: translateX(-3px);
  }
}

@media (max-width: 540px) {
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Realisations page (mockup match) */
.rea-shot-page {
  background:
    radial-gradient(900px 420px at 8% 8%, rgba(225, 6, 31, 0.13), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #030304, #010102);
}

.rea-shot-page ~ .site-footer {
  background: #030304;
}

.rea-shot-page .kicker {
  color: #e1061f;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.rea-shot-page .section-pad {
  padding-top: 40px;
}

body.page-realisations-shot .site-header {
  background: rgba(3, 3, 4, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.page-realisations-shot .header-cta {
  background: transparent;
  border: 1px solid rgba(225, 6, 31, 0.85);
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

body.page-realisations-shot .header-cta:hover {
  box-shadow: 0 12px 26px rgba(225, 6, 31, 0.2);
}

.rea-shot-hero {
  position: relative;
  padding: 44px 0 24px;
  overflow: clip;
}

.rea-shot-lines {
  position: absolute;
  right: -240px;
  top: 80px;
  width: 840px;
  height: 840px;
  pointer-events: none;
  opacity: 0.2;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0 2px, rgba(0, 0, 0, 0) 2px 24px);
}

.rea-shot-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 20px;
}

.rea-shot-copy h1 {
  margin: 8px 0 0;
  max-width: 8.5ch;
  font-family: "Teko", sans-serif;
  font-size: clamp(3.2rem, 8.5vw, 6.1rem);
  text-transform: uppercase;
  line-height: 0.88;
}

.rea-shot-copy h1 span {
  color: #e1061f;
}

.rea-shot-copy > p {
  margin-top: 18px;
  max-width: 25ch;
  color: rgba(242, 242, 242, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 2rem);
  line-height: 1.3;
}

.rea-shot-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 14px 26px;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.54rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rea-shot-btn span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.rea-shot-hero-visual {
  display: flex;
  justify-content: center;
}

.rea-shot-hero-visual img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

.rea-shot-showcase {
  padding-top: 6px;
}

.rea-shot-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rea-shot-card {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.98), rgba(7, 7, 7, 0.98));
  padding: 12px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.36);
}

.rea-shot-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.rea-shot-card-top span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 3px 7px;
  font-size: 0.62rem;
  color: rgba(241, 241, 241, 0.92);
  text-transform: uppercase;
}

.rea-shot-card-top .is-active {
  border-color: rgba(225, 6, 31, 0.95);
  background: rgba(225, 6, 31, 0.95);
}

.rea-shot-card img {
  margin-top: 10px;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.rea-shot-card-copy p {
  margin: 9px 0 0;
  color: rgba(225, 6, 31, 0.95);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rea-shot-card-copy h3 {
  margin: 6px 0 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.42rem, 1.8vw, 2.12rem);
  line-height: 1.05;
}

.rea-shot-card-copy span {
  color: rgba(243, 243, 243, 0.88);
  font-size: 0.88rem;
}

.rea-shot-stats {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.9), rgba(7, 7, 7, 0.95));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rea-shot-stats article {
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.rea-shot-stats article:last-child {
  border-right: 0;
}

.rea-shot-stats p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.rea-shot-stats strong {
  display: block;
  color: #e1061f;
  font-family: "Teko", sans-serif;
  font-size: 2.1rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.rea-shot-stats span {
  color: rgba(240, 240, 240, 0.95);
}

.rea-shot-stats svg {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  stroke: #e1061f;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rea-shot-cta {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.96));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px;
}

.rea-shot-cta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.rea-shot-cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-content: center;
}

.rea-shot-cta-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rea-shot-cta p span {
  display: grid;
  gap: 4px;
}

.rea-shot-cta strong {
  color: #f7f7f7;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.15rem);
  text-transform: uppercase;
  line-height: 0.9;
}

.rea-shot-cta em {
  font-style: normal;
  color: #e1061f;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.rea-shot-cta a {
  border-radius: 12px;
  background: linear-gradient(160deg, #dd061f, #b5061a);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1100px) {
  .rea-shot-hero-grid {
    grid-template-columns: 1fr;
  }

  .rea-shot-copy h1,
  .rea-shot-copy > p {
    max-width: none;
  }

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

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

  .rea-shot-stats article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .rea-shot-hero {
    padding-top: 26px;
  }

  .rea-shot-lines {
    right: -360px;
    top: 200px;
    opacity: 0.12;
  }

  .rea-shot-btn {
    font-size: 1.28rem;
    padding: 11px 18px;
  }

  .rea-shot-cards {
    grid-template-columns: 1fr;
  }

  .rea-shot-stats {
    grid-template-columns: 1fr;
  }

  .rea-shot-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rea-shot-stats article:last-child {
    border-bottom: 0;
  }

  .rea-shot-cta {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .rea-shot-cta p {
    align-items: flex-start;
  }

  .rea-shot-cta a {
    width: 100%;
    justify-content: center;
  }
}

/* Realisations hero premium */
.real-premium-page {
  background:
    radial-gradient(900px 420px at 9% 9%, rgba(227, 6, 19, 0.18), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #030304, #020203 58%, #050506);
}

body.page-realisations-shot .site-header {
  background: rgba(4, 4, 5, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

body.page-realisations-shot .header-cta {
  background: transparent;
  border: 1px solid rgba(227, 6, 19, 0.9);
  box-shadow: none;
  text-transform: uppercase;
}

body.page-realisations-shot .header-cta:hover {
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.28);
}

.real-premium-hero {
  position: relative;
  overflow: clip;
  padding-top: 34px;
}

.real-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
}

.real-premium-copy {
  max-width: 560px;
}

.real-premium-kicker {
  margin: 0;
  color: #e30613;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

.real-premium-copy h1 {
  margin: 14px 0 0;
  display: grid;
  line-height: 0.9;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: clamp(4rem, 9.5vw, 8.3rem);
  color: #f8f8f8;
  text-wrap: balance;
}

.real-premium-copy h1 span {
  color: #f8f8f8;
}

.real-premium-copy h1 em {
  color: #e30613;
  font-style: normal;
  text-shadow: 0 0 22px rgba(227, 6, 19, 0.35);
}

.real-premium-copy > p {
  margin-top: 18px;
  max-width: 31ch;
  font-size: clamp(1.15rem, 2vw, 2rem);
  color: rgba(242, 242, 242, 0.92);
  line-height: 1.36;
}

.real-premium-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.real-premium-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.9);
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.22);
}

.real-premium-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.real-premium-ring {
  position: absolute;
  width: 820px;
  height: 820px;
  right: -250px;
  top: -70px;
  opacity: 0.18;
  pointer-events: none;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.13) 0 2px, rgba(0, 0, 0, 0) 2px 26px);
}

.real-premium-phone {
  width: min(100%, 690px);
  height: auto;
  transform: rotate(-11deg);
  transform-origin: 58% 50%;
  filter: drop-shadow(0 38px 46px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.real-premium-visual:hover .real-premium-phone {
  transform: rotate(-8deg) translateY(-6px);
  filter: drop-shadow(0 44px 56px rgba(0, 0, 0, 0.58));
}

.real-premium-stats-wrap {
  padding-bottom: 80px;
}

.real-premium-stats {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.94), rgba(7, 7, 8, 0.98));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.real-premium-stats article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.real-premium-stats article:last-child {
  border-right: 0;
}

.real-premium-stats article:hover {
  background: rgba(227, 6, 19, 0.05);
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.22);
}

.real-premium-stats svg {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  stroke: #e30613;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(227, 6, 19, 0.24));
}

.real-premium-stats p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.real-premium-stats strong {
  color: #e30613;
  font-family: "Teko", sans-serif;
  font-size: 2.2rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.real-premium-stats span {
  color: rgba(241, 241, 241, 0.95);
  font-size: 1.08rem;
}

@media (max-width: 1120px) {
  .real-premium-grid {
    grid-template-columns: 1fr;
  }

  .real-premium-copy,
  .real-premium-copy > p {
    max-width: none;
  }

  .real-premium-visual {
    margin-top: 10px;
  }

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

  .real-premium-stats article:nth-child(2) {
    border-right: 0;
  }

  .real-premium-stats article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .real-premium-copy h1 {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
  }

  .real-premium-kicker {
    font-size: 1.2rem;
  }

  .real-premium-btn {
    width: 100%;
    font-size: 1.32rem;
  }

  .real-premium-ring {
    width: 620px;
    height: 620px;
    right: -270px;
    top: -20px;
  }

  .real-premium-phone {
    width: min(100%, 510px);
    transform: rotate(-8deg);
  }

  .real-premium-stats {
    grid-template-columns: 1fr;
  }

  .real-premium-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .real-premium-stats article:last-child {
    border-bottom: 0;
  }
}

/* Realisations rebuilt (no full mockup image) */
.page-real-built .site-header {
  background: rgba(4, 4, 5, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.page-real-built .header-cta {
  background: transparent;
  border: 1px solid rgba(227, 6, 19, 0.9);
  text-transform: uppercase;
  box-shadow: none;
}

.page-real-built .header-cta:hover {
  box-shadow: 0 14px 24px rgba(227, 6, 19, 0.28);
}

.real-built-page {
  background:
    radial-gradient(1000px 420px at 10% 8%, rgba(227, 6, 19, 0.18), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #030304, #020203 60%, #040405);
}

.real-built-hero {
  position: relative;
  overflow: clip;
}

.real-built-bg-lines {
  position: absolute;
  right: -280px;
  top: 56px;
  width: 960px;
  height: 960px;
  opacity: 0.18;
  pointer-events: none;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0 2px, rgba(0, 0, 0, 0) 2px 26px);
}

.real-built-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}

.real-built-copy {
  max-width: 520px;
  padding-top: 34px;
}

.real-built-kicker {
  margin: 0;
  color: #e30613;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
}

.real-built-copy h1 {
  margin: 12px 0 0;
  display: grid;
  gap: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(3.4rem, 9vw, 7.1rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: #f7f7f7;
}

.real-built-copy h1 em {
  color: #e30613;
  font-style: normal;
  text-shadow: 0 0 20px rgba(227, 6, 19, 0.35);
}

.real-built-copy > p {
  margin-top: 16px;
  max-width: 30ch;
  color: rgba(241, 241, 241, 0.93);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.real-built-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.46rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.real-built-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.9);
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.2);
}

.real-built-visual {
  display: grid;
  gap: 20px;
}

.real-built-main-stage {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.real-built-hand {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 280px;
  height: 430px;
  border-radius: 50% 44% 50% 42% / 44% 46% 54% 56%;
  background:
    radial-gradient(140px 100px at 66% 22%, rgba(255, 212, 170, 0.34), rgba(50, 24, 14, 0) 74%),
    linear-gradient(162deg, rgba(130, 77, 47, 0.95), rgba(74, 40, 24, 0.96));
  filter: blur(0.3px);
  transform: rotate(12deg);
  box-shadow: -22px 18px 38px rgba(0, 0, 0, 0.5);
}

.real-built-phone {
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(165deg, rgba(22, 22, 23, 0.98), rgba(8, 8, 9, 0.99));
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.52);
}

.real-built-phone-main {
  width: min(100%, 420px);
  aspect-ratio: 10 / 19;
  padding: 12px;
  position: absolute;
  right: 16%;
  top: 2%;
  transform: rotate(-14deg);
  transform-origin: 60% 50%;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
  z-index: 2;
}

.real-built-main-stage:hover .real-built-phone-main {
  transform: rotate(-11deg) translateY(-8px);
  box-shadow: 0 34px 56px rgba(0, 0, 0, 0.6), 0 0 30px rgba(227, 6, 19, 0.1);
}

.real-built-notch {
  width: 94px;
  height: 14px;
  margin: 2px auto 6px;
  border-radius: 999px;
  background: #111;
}

.real-built-screen {
  border-radius: 30px;
  height: calc(100% - 24px);
  padding: 16px;
  background: linear-gradient(180deg, #0d0d0f, #070708);
  overflow: hidden;
}

.real-built-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f0f0f0;
  font-size: 0.96rem;
}

.real-built-screen h2 {
  margin: 14px 0 0;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 2.25rem;
  line-height: 0.9;
}

.real-built-screen h2 em {
  color: #e30613;
  font-style: normal;
}

.real-built-phone-lead {
  margin: 10px 0 0;
  color: rgba(240, 240, 240, 0.92);
  font-size: 1.05rem;
  line-height: 1.35;
}

.real-built-filters {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.real-built-filters span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(242, 242, 242, 0.92);
  text-transform: uppercase;
}

.real-built-filters .is-active {
  border-color: rgba(227, 6, 19, 0.96);
  background: rgba(227, 6, 19, 0.96);
  color: #fff;
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.25);
}

.real-built-project-card {
  margin: 12px 0 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.real-built-project-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.real-built-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
}

.real-built-project-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}

.real-built-project-card small {
  color: rgba(225, 225, 225, 0.94);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.real-built-project-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Teko", sans-serif;
  line-height: 0.94;
  text-transform: uppercase;
}

.real-built-project-card span {
  display: inline-block;
  margin-top: 8px;
  color: rgba(238, 238, 238, 0.92);
  font-size: 0.92rem;
}

.real-built-mini-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.real-built-phone-mini {
  padding: 9px;
  border-radius: 32px;
}

.real-built-phone-mini .real-built-screen {
  border-radius: 23px;
  padding: 10px;
}

.real-built-phone-mini .real-built-filters span {
  font-size: 0.58rem;
  padding: 2px 6px;
}

.real-built-phone-mini .real-built-project-card {
  margin-top: 8px;
}

.real-built-phone-mini .real-built-project-card strong {
  font-size: 1.48rem;
}

.real-built-phone-mini .real-built-project-card span {
  font-size: 0.79rem;
}

.real-built-phone-mini.is-offset-1 { transform: translateY(0); }
.real-built-phone-mini.is-offset-2 { transform: translateY(14px); }
.real-built-phone-mini.is-offset-3 { transform: translateY(8px); }

.real-built-phone-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.45), 0 0 24px rgba(227, 6, 19, 0.1);
}

.real-built-stats-wrap {
  padding: 34px 0 80px;
}

.real-built-stats {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(16, 16, 17, 0.94), rgba(8, 8, 9, 0.98));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.real-built-stats article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease;
}

.real-built-stats article:last-child {
  border-right: 0;
}

.real-built-stats article:hover {
  background: rgba(227, 6, 19, 0.05);
}

.real-built-stats svg {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  stroke: #e30613;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(227, 6, 19, 0.25));
}

.real-built-stats p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.real-built-stats strong {
  color: #e30613;
  font-family: "Teko", sans-serif;
  font-size: 2.1rem;
  line-height: 0.9;
}

.real-built-stats span {
  color: rgba(240, 240, 240, 0.94);
}

@media (max-width: 1180px) {
  .real-built-grid {
    grid-template-columns: 1fr;
  }

  .real-built-copy {
    max-width: none;
  }

  .real-built-main-stage {
    min-height: 620px;
  }

  .real-built-phone-main {
    right: 22%;
    width: min(100%, 360px);
  }

  .real-built-mini-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .real-built-stats article:nth-child(2) {
    border-right: 0;
  }

  .real-built-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .real-built-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .real-built-btn {
    width: 100%;
    font-size: 1.3rem;
  }

  .real-built-main-stage {
    min-height: 520px;
  }

  .real-built-hand {
    right: 0;
    width: 210px;
    height: 320px;
  }

  .real-built-phone-main {
    right: 10%;
    width: min(100%, 300px);
    transform: rotate(-9deg);
  }

  .real-built-phone-main .real-built-screen h2 {
    font-size: 1.7rem;
  }

  .real-built-phone-main .real-built-phone-lead {
    font-size: 0.88rem;
  }

  .real-built-mini-row {
    grid-template-columns: 1fr;
  }

  .real-built-phone-mini.is-offset-1,
  .real-built-phone-mini.is-offset-2,
  .real-built-phone-mini.is-offset-3 {
    transform: translateY(0);
  }

  .real-built-stats {
    grid-template-columns: 1fr;
  }

  .real-built-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .real-built-stats article:last-child {
    border-bottom: 0;
  }
}

/* Realisations V2: hero right image hero.1 + gallery below */
.page-real-v2 .site-header {
  background: rgba(4, 4, 5, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-real-v2 .header-cta {
  background: transparent;
  border: 1px solid rgba(227, 6, 19, 0.9);
  box-shadow: none;
  text-transform: uppercase;
}

.page-real-v2 .header-cta:hover {
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.28);
}

.real-v2-page {
  background:
    radial-gradient(900px 460px at 8% 6%, rgba(227, 6, 19, 0.22), rgba(0, 0, 0, 0)),
    radial-gradient(760px 540px at 88% 2%, rgba(255, 119, 0, 0.13), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #020203, #030304 56%, #050506);
}

.real-v2-hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.real-v2-hero::before {
  content: "";
  position: absolute;
  width: min(72vw, 980px);
  height: min(72vw, 980px);
  right: -16%;
  top: -44%;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.24), rgba(227, 6, 19, 0) 68%);
  filter: blur(8px);
  opacity: 0.9;
  animation: realHeroPulse 8.6s ease-in-out infinite;
}

.real-v2-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0), rgba(227, 6, 19, 0.9), rgba(255, 122, 0, 0.85), rgba(227, 6, 19, 0));
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.35);
}

.real-v2-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.35) 0 0.9px, rgba(0, 0, 0, 0) 1.1px),
    radial-gradient(circle at 72% 70%, rgba(255, 255, 255, 0.24) 0 0.9px, rgba(0, 0, 0, 0) 1.1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: screen;
}

.real-v2-bg-lines {
  position: absolute;
  right: -240px;
  top: 30px;
  width: 980px;
  height: 980px;
  opacity: 0.2;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16) 0 2px, rgba(0, 0, 0, 0) 2px 25px),
    conic-gradient(from 0deg, rgba(227, 6, 19, 0.08), rgba(227, 6, 19, 0), rgba(255, 122, 0, 0.08), rgba(227, 6, 19, 0.08));
  animation: realHeroSpin 34s linear infinite;
}

.real-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.real-v2-copy {
  max-width: 560px;
}

.real-v2-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6a4a;
  font-family: "Teko", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.real-v2-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e30613, #ff8b34);
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.5);
}

.real-v2-copy h1 {
  margin: 14px 0 0;
  display: grid;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.9rem, 6.4vw, 5.45rem);
  line-height: 0.87;
  color: #f8f8f8;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.real-v2-copy h1 span {
  color: #ffffff;
}

.real-v2-copy h1 em {
  color: #ffb26f;
  font-style: normal;
  text-shadow: 0 0 18px rgba(227, 6, 19, 0.36), 0 0 30px rgba(255, 122, 0, 0.2);
}

.real-v2-copy > p {
  margin-top: 18px;
  max-width: 34ch;
  color: rgba(243, 243, 243, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.45;
}

.real-v2-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.real-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.96), rgba(180, 0, 10, 0.95));
  box-shadow: 0 16px 32px rgba(227, 6, 19, 0.26);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.real-v2-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 34px rgba(227, 6, 19, 0.38);
}

.real-v2-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.real-v2-btn-ghost:hover {
  background: rgba(227, 6, 19, 0.16);
  border-color: rgba(227, 6, 19, 0.75);
}

.real-v2-trust {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.real-v2-trust li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  color: rgba(245, 245, 245, 0.95);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.real-v2-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.real-v2-stage {
  position: relative;
  width: min(100%, 760px);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.real-v2-stage-glow {
  position: absolute;
  inset: 16% 8% 10%;
  border-radius: 42px;
  background:
    radial-gradient(80% 78% at 58% 46%, rgba(227, 6, 19, 0.34), rgba(227, 6, 19, 0) 66%),
    radial-gradient(70% 70% at 68% 58%, rgba(255, 122, 0, 0.2), rgba(255, 122, 0, 0) 64%);
  filter: blur(12px);
  animation: realHeroGlow 6.6s ease-in-out infinite;
}

.real-v2-stage > img {
  position: relative;
  z-index: 2;
  width: min(310%, 2380px);
  height: auto;
  object-fit: contain;
  transform-origin: 84% 100%;
  transform: translateY(46px);
  filter: drop-shadow(0 40px 58px rgba(0, 0, 0, 0.58));
  transition: transform 0.42s ease, filter 0.42s ease;
  animation: realHeroFloat 5.7s ease-in-out infinite;
}

.real-v2-visual:hover .real-v2-stage > img {
  transform: translateY(34px) scale(1.01);
  filter: drop-shadow(0 42px 64px rgba(0, 0, 0, 0.62));
}

.real-v2-float {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(148deg, rgba(9, 9, 10, 0.9), rgba(20, 20, 22, 0.74));
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
}

.real-v2-float strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.real-v2-float span {
  display: block;
  margin-top: 5px;
  color: rgba(238, 238, 238, 0.9);
  line-height: 1.35;
  font-size: 0.84rem;
}

.real-v2-float-a {
  top: 20%;
  left: -2%;
  animation: realHeroCardA 5.8s ease-in-out infinite;
}

.real-v2-float-b {
  right: 2%;
  bottom: 18%;
  animation: realHeroCardB 6.4s ease-in-out infinite;
}

.real-v2-gallery {
  position: relative;
  padding-top: 52px;
}

.real-v2-gallery::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: min(86vw, 1120px);
  height: 340px;
  transform: translateX(-50%);
  border-radius: 34px;
  background:
    radial-gradient(95% 120% at 50% 0%, rgba(227, 6, 19, 0.22), rgba(227, 6, 19, 0) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.real-v2-gallery-intro {
  position: relative;
  z-index: 1;
  margin: 0 auto 32px;
  max-width: 980px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 36px) clamp(14px, 3vw, 30px);
}

.real-v2-gallery-intro .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffd2b2;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.real-v2-gallery-intro .kicker::before,
.real-v2-gallery-intro .kicker::after {
  content: "";
  width: 14px;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.real-v2-gallery-intro h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 8.2vw, 6.4rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
}

.real-v2-gallery-intro h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  text-shadow: none;
}

.real-v2-gallery-intro > p {
  margin: 0;
  max-width: 62ch;
  color: rgba(240, 240, 240, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.real-v2-gallery-metrics {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.real-v2-gallery-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  color: rgba(248, 248, 248, 0.96);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-v2-gallery-metrics span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff9a56;
  box-shadow: 0 0 12px rgba(255, 154, 86, 0.7);
}

.real-v2-gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.real-v2-card {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0b;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.33);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.real-v2-card:hover {
  transform: translateY(-10px) rotate(-0.6deg);
  border-color: rgba(255, 170, 108, 0.76);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 170, 108, 0.3);
}

.real-v2-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.real-v2-card:hover img {
  transform: scale(1.12);
}

.real-v2-card div {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(145deg, rgba(8, 8, 9, 0.92), rgba(22, 22, 23, 0.8));
  backdrop-filter: blur(6px);
}

.real-v2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.real-v2-card small {
  color: #ffab72;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.72rem;
}

.real-v2-card h3 {
  margin: 6px 0 0;
  color: #fff;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 0.95;
}

.real-v2-card span {
  display: inline-block;
  margin-top: 8px;
  color: rgba(240, 240, 240, 0.94);
  font-size: 0.86rem;
}

@keyframes realHeroPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes realHeroSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes realHeroGlow {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes realHeroFloat {
  0%,
  100% {
    transform: translateY(46px);
  }
  50% {
    transform: translateY(34px);
  }
}

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

@keyframes realHeroCardB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 1120px) {
  .real-v2-grid {
    grid-template-columns: 1fr;
  }

  .real-v2-copy,
  .real-v2-copy > p {
    max-width: none;
  }

  .real-v2-stage {
    min-height: 480px;
    width: min(100%, 840px);
  }

  .real-v2-stage > img {
    width: min(250%, 1800px);
    transform: translateY(32px);
  }

  .real-v2-float-a {
    top: 18%;
    left: 2%;
  }

  .real-v2-float-b {
    right: 5%;
    bottom: 16%;
  }

  .real-v2-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .real-v2-card {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .real-v2-hero::after {
    bottom: 20px;
  }

  .real-v2-copy h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.95rem);
  }

  .real-v2-actions {
    flex-direction: column;
  }

  .real-v2-btn {
    width: 100%;
    font-size: 1.1rem;
  }

  .real-v2-stage {
    min-height: 360px;
  }

  .real-v2-stage > img {
    width: min(210%, 1120px);
    transform: translateY(22px);
  }

  .real-v2-float {
    max-width: 200px;
    padding: 10px 12px;
  }

  .real-v2-float-a {
    top: 8%;
    left: 0;
  }

  .real-v2-float-b {
    right: 0;
    bottom: 7%;
  }

  .real-v2-gallery-grid {
    grid-template-columns: 1fr;
  }

  .real-v2-gallery::before {
    width: calc(100% - 24px);
    height: 290px;
    border-radius: 24px;
  }

  .real-v2-gallery-intro {
    margin-bottom: 24px;
    padding: 14px 8px 8px;
  }

  .real-v2-gallery-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .real-v2-gallery-intro > p {
    font-size: 1rem;
  }

  .real-v2-gallery-metrics {
    justify-content: center;
  }

  .real-v2-card {
    min-height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .real-v2-hero::before,
  .real-v2-bg-lines,
  .real-v2-stage-glow,
  .real-v2-stage > img,
  .real-v2-float-a,
  .real-v2-float-b {
    animation: none;
  }
}

/* Realisations gallery professional refresh */
.real-v2-gallery {
  padding-top: 40px;
}

.real-v2-gallery::before {
  display: none;
}

.real-v2-gallery-head-pro {
  margin: 0 0 26px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.real-v2-gallery-head-pro .kicker {
  margin: 0;
  color: #ff8450;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-v2-gallery-head-pro h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.real-v2-gallery-head-pro > p {
  margin: 10px 0 0;
  color: rgba(239, 239, 239, 0.9);
  max-width: 72ch;
}

.real-v2-gallery-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.real-v2-gallery-points li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.95);
}

.real-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 24px;
  gap: 14px;
}

.real-v2-card {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(140px, 1fr) auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  transform: none;
}

.real-v2-card::after {
  display: none;
}

.real-v2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  transform: none;
}

.real-v2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 132, 80, 0.5);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
}

.real-v2-card:hover img {
  transform: none;
}

.real-v2-card div {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 12px 14px 14px;
}

.real-v2-card small {
  color: #ff8450;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

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

.real-v2-card span {
  margin-top: 6px;
  color: rgba(235, 235, 235, 0.9);
}

.real-v2-gallery-grid .real-v2-card:nth-child(1) {
  grid-column: span 6;
  grid-row: span 12;
}

.real-v2-gallery-grid .real-v2-card:nth-child(2),
.real-v2-gallery-grid .real-v2-card:nth-child(3) {
  grid-column: span 3;
  grid-row: span 8;
}

.real-v2-gallery-grid .real-v2-card:nth-child(4),
.real-v2-gallery-grid .real-v2-card:nth-child(5),
.real-v2-gallery-grid .real-v2-card:nth-child(6) {
  grid-column: span 4;
  grid-row: span 9;
}

.real-v2-gallery-grid .real-v2-card:nth-child(7),
.real-v2-gallery-grid .real-v2-card:nth-child(8),
.real-v2-gallery-grid .real-v2-card:nth-child(9),
.real-v2-gallery-grid .real-v2-card:nth-child(10) {
  grid-column: span 3;
  grid-row: span 8;
}

@media (max-width: 1120px) {
  .real-v2-gallery-grid {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-v2-gallery-grid .real-v2-card {
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: auto auto;
  }

  .real-v2-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (max-width: 760px) {
  .real-v2-gallery-head-pro {
    padding: 16px;
  }

  .real-v2-gallery-head-pro h2 {
    font-size: clamp(1.7rem, 8.8vw, 2.35rem);
  }

  .real-v2-gallery-points {
    gap: 8px;
  }

  .real-v2-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.real-v2-before-after.before-after-section {
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  padding-top: 8px;
}

.real-v2-before-after .before-after-grid--single {
  grid-template-columns: 1fr;
}

.real-v2-before-after .before-after-card {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.real-v2-before-after .before-after-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.real-v2-before-after .before-after-stage {
  aspect-ratio: 18 / 9;
  border-radius: 12px;
}

@media (max-width: 760px) {
  .real-v2-before-after .before-after-card {
    padding: 10px;
  }

  .real-v2-before-after .before-after-stage {
    aspect-ratio: 4 / 3;
  }
}

/* Realisations page extra sections */
.real-v2-process {
  padding-top: 10px;
}

.real-v2-process-head {
  margin-bottom: 4px;
}

.real-v2-process-head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.9vw, 2.9rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.real-v2-process-head > p {
  margin-top: 10px;
  max-width: 72ch;
  color: rgba(238, 238, 238, 0.9);
}

.real-v2-process-grid {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.real-v2-process-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 132, 80, 0), rgba(255, 132, 80, 0.5), rgba(255, 132, 80, 0));
  pointer-events: none;
}

.real-v2-process-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.real-v2-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 132, 80, 0.42);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
}

.real-v2-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 132, 80, 0.18);
  border: 1px solid rgba(255, 132, 80, 0.4);
  color: #ff9f75;
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
}

.real-v2-process-card h3 {
  margin: 12px 0 0;
  font-family: "Teko", sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
  line-height: 0.95;
}

.real-v2-process-card p {
  margin: 8px 0 0;
  color: rgba(237, 237, 237, 0.9);
  line-height: 1.45;
}

.real-v2-results {
  padding-top: 6px;
}

.real-v2-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.real-v2-results-copy,
.real-v2-results-stats {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.real-v2-results-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.real-v2-results-copy > p {
  margin: 10px 0 0;
  color: rgba(239, 239, 239, 0.9);
}

.real-v2-results-stats {
  display: grid;
  grid-template-columns: 1fr;
}

.real-v2-results-stats article {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.real-v2-results-stats article:last-child {
  border-bottom: 0;
}

.real-v2-results-stats strong {
  font-family: "Teko", sans-serif;
  font-size: 2.6rem;
  line-height: 0.85;
  color: #fff;
}

.real-v2-results-stats span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(236, 236, 236, 0.9);
  font-size: 0.8rem;
}

.real-v2-final-cta {
  padding-top: 8px;
}

.real-v2-final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(150deg, rgba(227, 6, 19, 0.14), rgba(255, 255, 255, 0.03));
}

.real-v2-final-cta-box h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.real-v2-final-cta-box p {
  margin: 10px 0 0;
  color: rgba(242, 242, 242, 0.92);
}

.real-v2-final-cta-box .btn-primary {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .real-v2-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-v2-process-grid::before {
    display: none;
  }

  .real-v2-results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .real-v2-process-grid {
    grid-template-columns: 1fr;
  }

  .real-v2-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
}

/* Gallery layout comparator */
.real-v2-gallery-layout-switch {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.real-v2-layout-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.real-v2-layout-btn:hover {
  transform: translateY(-2px);
}

.real-v2-layout-btn.is-active {
  border-color: rgba(255, 132, 80, 0.62);
  background: rgba(255, 132, 80, 0.16);
}

.real-v2-gallery-shell {
  position: relative;
}

.real-v2-gallery-viewport {
  overflow: visible;
}

.real-v2-gallery-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 7, 8, 0.86);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
}

.real-v2-gallery-prev {
  left: -10px;
}

.real-v2-gallery-next {
  right: -10px;
}

.real-v2-gallery-nav[disabled] {
  opacity: 0.45;
  cursor: default;
}

.real-v2-gallery .real-v2-gallery-grid {
  margin-top: 16px;
}

/* 1) Structured table */
.real-v2-gallery[data-gallery-layout="structured"] .real-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.real-v2-gallery[data-gallery-layout="structured"] .real-v2-card {
  grid-column: auto;
  grid-row: auto;
}

/* 2) Mosaic */
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 22px;
  gap: 14px;
}

.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(1) {
  grid-column: span 6;
  grid-row: span 13;
}

.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(2),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(3) {
  grid-column: span 3;
  grid-row: span 8;
}

.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(4),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(5),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(6) {
  grid-column: span 4;
  grid-row: span 9;
}

.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(7),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(8),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(9),
.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card:nth-child(10) {
  grid-column: span 3;
  grid-row: span 8;
}

.real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card img {
  height: 100%;
  aspect-ratio: auto;
}

/* 3) Carousel */
.real-v2-gallery[data-gallery-layout="carousel"] .real-v2-gallery-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.real-v2-gallery[data-gallery-layout="carousel"] .real-v2-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.real-v2-gallery[data-gallery-layout="carousel"] .real-v2-gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32vw);
  gap: 14px;
  width: max-content;
}

.real-v2-gallery[data-gallery-layout="carousel"] .real-v2-card {
  width: min(380px, 82vw);
  scroll-snap-align: start;
}

.real-v2-gallery[data-gallery-layout="carousel"] .real-v2-gallery-nav {
  display: inline-grid;
  place-content: center;
}

/* 4) Editorial */
.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(3),
.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(4),
.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(5) {
  grid-column: span 4;
}

.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card:nth-child(n+6) {
  grid-column: span 3;
}

.real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1120px) {
  .real-v2-gallery[data-gallery-layout="structured"] .real-v2-gallery-grid,
  .real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-gallery-grid,
  .real-v2-gallery[data-gallery-layout="editorial"] .real-v2-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card,
  .real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card {
    grid-column: auto;
    grid-row: auto;
  }

  .real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-card img,
  .real-v2-gallery[data-gallery-layout="editorial"] .real-v2-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .real-v2-gallery-layout-switch {
    gap: 6px;
  }

  .real-v2-layout-btn {
    font-size: 0.7rem;
    padding: 7px 11px;
  }

  .real-v2-gallery[data-gallery-layout="structured"] .real-v2-gallery-grid,
  .real-v2-gallery[data-gallery-layout="mosaic"] .real-v2-gallery-grid,
  .real-v2-gallery[data-gallery-layout="editorial"] .real-v2-gallery-grid {
    grid-template-columns: 1fr;
  }

  .real-v2-gallery[data-gallery-layout="carousel"] .real-v2-gallery-grid {
    grid-auto-columns: minmax(240px, 86vw);
  }

  .real-v2-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .real-v2-gallery-prev {
    left: -2px;
  }

  .real-v2-gallery-next {
    right: -2px;
  }
}

/* Realisations page neo redesign */
.page-real-neo .real-neo-page {
  background:
    radial-gradient(860px 340px at 92% -10%, rgba(201, 20, 44, 0.22), transparent 70%),
    radial-gradient(820px 340px at 4% 8%, rgba(127, 7, 27, 0.2), transparent 72%),
    linear-gradient(180deg, #030304 0%, #070709 54%, #030304 100%);
  color: #f3f3f6;
}

.page-real-neo .section-pad {
  padding: 56px 0;
}

.page-real-neo .real-v2-hero::after {
  background:
    radial-gradient(circle at center, rgba(204, 23, 47, 0.28) 0%, rgba(204, 23, 47, 0) 72%);
}

.page-real-neo .real-v2-stage-glow {
  background:
    radial-gradient(circle at center, rgba(219, 28, 54, 0.34) 0%, rgba(219, 28, 54, 0.08) 44%, rgba(219, 28, 54, 0) 78%);
}

.page-real-neo .real-v2-bg-lines {
  top: 52px;
}

.page-real-neo .real-v2-btn {
  border-color: rgba(255, 67, 93, 0.48);
  background: linear-gradient(132deg, rgba(114, 9, 26, 0.9), rgba(167, 13, 35, 0.88));
  color: #fff2f3;
}

.page-real-neo .real-v2-btn:hover {
  border-color: rgba(255, 114, 132, 0.72);
}

.page-real-neo .real-v2-btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 73, 97, 0.42);
}

.real-neo-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(116px, 14vw, 160px);
}

.real-neo-hero-shape {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.04) 0%, transparent 38%),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 20px);
  pointer-events: none;
}

.real-neo-hero-grid {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.real-neo-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: "Teko", "Barlow", sans-serif;
}

.real-neo-copy > p {
  max-width: 62ch;
  color: rgba(245, 239, 241, 0.84);
}

.real-neo-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.real-neo-pills {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.real-neo-pills li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 103, 0.34);
  background: rgba(101, 8, 23, 0.3);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.real-neo-highlight {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 75, 101, 0.22);
  background: #09090b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.real-neo-highlight img {
  width: 100%;
  height: clamp(290px, 40vw, 520px);
  object-fit: cover;
  display: block;
}

.real-neo-highlight-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(9, 7, 8, 0.9), rgba(30, 8, 12, 0.54));
  border: 1px solid rgba(255, 77, 103, 0.36);
  backdrop-filter: blur(8px);
}

.real-neo-highlight-note strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.real-neo-highlight-note span {
  display: block;
  margin-top: 5px;
  color: rgba(241, 246, 255, 0.9);
  font-size: 0.95rem;
}

.real-neo-metrics {
  padding-top: 16px;
}

.real-neo-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.real-neo-metric {
  padding: 22px 16px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 75, 101, 0.28);
  background: linear-gradient(150deg, rgba(82, 9, 22, 0.45), rgba(15, 9, 11, 0.88));
}

.real-neo-metric strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
  font-family: "Teko", "Barlow", sans-serif;
  color: #ff4f65;
}

.real-neo-metric span {
  display: block;
  margin-top: 7px;
  color: rgba(244, 233, 236, 0.82);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.real-neo-featured-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.real-neo-project-card {
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0d;
  border: 1px solid rgba(255, 70, 96, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.real-neo-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(2, 8, 20, 0.42);
}

.real-neo-project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.real-neo-project-card div {
  padding: 16px 16px 18px;
}

.real-neo-project-card small {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(211, 22, 48, 0.2);
  color: #ffd0d7;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.real-neo-project-card h3 {
  margin: 10px 0 8px;
  font-size: 1.14rem;
}

.real-neo-project-card p {
  margin: 0;
  color: rgba(243, 233, 236, 0.84);
}

.real-neo-project-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 168, 182, 0.92);
  font-size: 0.84rem;
}

.real-neo-gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.real-neo-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 64, 92, 0.2);
  background: #08080b;
  aspect-ratio: 16 / 9;
}

.real-neo-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}

.real-neo-shot.is-landscape {
  grid-column: auto;
}

.real-neo-shot:hover img {
  transform: scale(1.04);
}

.page-real-neo .real-neo-before-after {
  border-top: 1px solid rgba(255, 76, 102, 0.2);
  border-bottom: 1px solid rgba(255, 76, 102, 0.2);
  background:
    radial-gradient(880px 300px at 10% 0%, rgba(212, 24, 50, 0.16), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(9, 9, 10, 0.92), rgba(6, 6, 7, 0.96));
}

.page-real-neo .real-neo-before-after .section-heading h2 {
  letter-spacing: 0.02em;
}

.page-real-neo .real-neo-before-after .section-heading > p {
  color: rgba(247, 232, 236, 0.82);
}

.page-real-neo .real-neo-before-after .before-after-card--cleaning {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 84, 110, 0.28);
  background:
    linear-gradient(165deg, rgba(22, 9, 12, 0.86), rgba(9, 8, 9, 0.9)),
    rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.page-real-neo .real-neo-before-after .before-after-card--cleaning::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 128, 148, 0.38), rgba(255, 72, 101, 0.16), rgba(255, 128, 148, 0.32));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.page-real-neo .real-neo-before-after .before-after-card--cleaning h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 2vw, 1.66rem);
  letter-spacing: 0.03em;
  color: #fff6f7;
  text-shadow: 0 1px 10px rgba(255, 64, 93, 0.18);
}

.page-real-neo .real-neo-before-after .before-after-stage {
  aspect-ratio: 16 / 8.3;
  border-radius: 16px;
  border: 1px solid rgba(255, 88, 114, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.page-real-neo .real-neo-before-after .before-after-card--cleaning .ba-before img {
  object-position: 62% 52%;
  transform: scale(1.26) translate(8%, -4%);
}

.page-real-neo .real-neo-before-after .ba-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.46));
}

.page-real-neo .real-neo-before-after .ba-layer figcaption {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(130deg, rgba(13, 13, 14, 0.86), rgba(26, 10, 13, 0.62));
  backdrop-filter: blur(4px);
  color: #fff7f8;
  letter-spacing: 0.05em;
}

.page-real-neo .real-neo-before-after .ba-divider {
  background: linear-gradient(180deg, rgba(255, 88, 114, 0.15), rgba(255, 88, 114, 0.95), rgba(255, 88, 114, 0.15));
  box-shadow: 0 0 20px rgba(255, 62, 92, 0.42);
}

.page-real-neo .real-neo-before-after .ba-handle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 103, 127, 0.55);
  background: linear-gradient(145deg, rgba(165, 13, 35, 0.95), rgba(120, 10, 26, 0.95));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(240, 42, 73, 0.22);
}

.page-real-neo .real-neo-before-after .ba-handle::before {
  font-size: 1.08rem;
}

.page-real-neo .real-neo-before-after .ba-handle:focus-visible {
  outline: 2px solid rgba(255, 120, 142, 0.9);
  outline-offset: 3px;
}

.real-neo-method-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.real-neo-step {
  position: relative;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 75, 101, 0.24);
  background: linear-gradient(160deg, rgba(26, 9, 13, 0.92), rgba(10, 8, 9, 0.82));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.real-neo-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #a60f29, #ea2a4c);
}

.real-neo-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 96, 123, 0.48);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.real-neo-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 23, 49, 0.2);
  color: #ffd2d9;
  font-weight: 700;
  font-size: 0.82rem;
}

.real-neo-step-meta {
  display: block;
  margin-top: 12px;
  color: rgba(255, 182, 194, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-neo-step h3 {
  margin: 8px 0 8px;
  font-size: 1.06rem;
}

.real-neo-step p {
  margin: 0;
  line-height: 1.55;
  color: rgba(242, 233, 236, 0.84);
}

.real-neo-cta-box {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 18px;
  border: 1px solid rgba(255, 88, 112, 0.3);
  background:
    linear-gradient(115deg, rgba(185, 18, 42, 0.22), rgba(84, 6, 21, 0.26)),
    rgba(8, 8, 10, 0.9);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.real-neo-cta-box h2 {
  margin: 8px 0 10px;
}

.real-neo-cta-box p {
  margin: 0;
  color: rgba(247, 236, 239, 0.88);
}

.real-neo-cta-copy {
  max-width: 72ch;
}

.real-neo-cta-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 88, 112, 0.35);
  background: rgba(28, 8, 12, 0.46);
}

.real-neo-cta-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.real-neo-cta-brand span {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.real-neo-cta-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.real-neo-cta-points li {
  color: rgba(247, 233, 237, 0.92);
  position: relative;
  padding-left: 18px;
}

.real-neo-cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e72a4c;
}

.real-neo-cta-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.real-neo-cta-actions .btn-primary,
.real-neo-cta-actions .btn-ghost {
  min-width: 230px;
  text-align: center;
}

@media (max-width: 1120px) {
  .real-neo-hero-grid,
  .real-neo-featured-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .page-real-neo .section-pad {
    padding: 38px 0;
  }

  .real-neo-actions {
    gap: 10px;
  }

  .real-neo-actions .btn-primary,
  .real-neo-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .real-neo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .real-neo-gallery-grid .real-neo-shot {
    grid-column: auto;
  }

  .real-neo-method-grid,
  .real-neo-metrics-grid {
    grid-template-columns: 1fr;
  }

  .real-neo-cta-box {
    grid-template-columns: 1fr;
  }

  .real-neo-cta-actions {
    justify-items: stretch;
  }

  .real-neo-cta-actions .btn-primary,
  .real-neo-cta-actions .btn-ghost {
    min-width: 0;
  }
}
/* ========================================================================== 
   HOME V2 — editorial conversion-first homepage
   ========================================================================== */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: #111;
  background: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.home-v2 {
  --home-red: #d50c25;
  --home-cream: #f4f0e9;
  --home-ink: #0a0a0a;
  background: #0a0a0a;
}

/* Home content stays readable even when JavaScript or observers are unavailable. */
.home-v2 .reveal,
.home-v2 .reveal.in {
  opacity: 1;
  transform: none;
}

.home-hero-copy .reveal { animation: homeCopyIn .7s ease both; }
.home-hero-copy .reveal:nth-child(2) { animation-delay: .08s; }
.home-hero-copy .reveal:nth-child(3) { animation-delay: .16s; }
.home-hero-copy .reveal:nth-child(4) { animation-delay: .24s; }
.home-hero-copy .reveal:nth-child(5) { animation-delay: .32s; }

.home-v2 .site-header {
  background: rgba(10, 10, 10, .94);
  backdrop-filter: blur(18px);
}

.home-v2 .header-top { background: #7e0615; }

.home-v2 .header-top-inner p,
.home-v2 .header-top-inner a { margin: 0; }

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.12);
}

.home-v2 .header-phone {
  display: grid;
  justify-items: end;
  margin-right: 3px;
  line-height: 1.05;
}

.home-v2 .header-phone span {
  color: #aaa;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.home-v2 .header-phone strong { font-size: .95rem; }

.home-v2 .header-cta { padding-inline: 18px; }

.home-hero {
  position: relative;
  min-height: min(780px, calc(100svh - 104px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.88) contrast(1.04);
  animation: homeHeroScale 16s ease-out both;
}

.home-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,5,.97) 0%, rgba(5,5,5,.86) 34%, rgba(5,5,5,.2) 68%, rgba(5,5,5,.08) 100%),
    linear-gradient(0deg, rgba(7,7,7,.76) 0%, transparent 42%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(213,12,37,.12), transparent 32%);
  pointer-events: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 74px;
  padding-bottom: 90px;
}

.home-hero-copy { max-width: 720px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.eyebrow span { width: 38px; height: 2px; background: var(--home-red); }

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 21px;
  font-size: clamp(4.3rem, 7.5vw, 7.4rem);
  line-height: .82;
  letter-spacing: -.02em;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.home-hero h1 em { color: #e4112c; font-style: normal; }

.home-hero-lead {
  max-width: 600px;
  margin: 0 0 29px;
  color: #e3e3e3;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.home-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }

.home-v2 .btn {
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 2px;
  font-size: .83rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.home-v2 .btn-primary { background: var(--home-red); box-shadow: 0 12px 28px rgba(213,12,37,.28); }
.home-v2 .btn-primary:hover { background: #f0122f; transform: translateY(-2px); }
.home-v2 .btn-ghost { background: rgba(10,10,10,.35); backdrop-filter: blur(8px); }

.home-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  list-style: none;
  color: #eee;
  font-size: .84rem;
  font-weight: 600;
}

.home-hero-proof span { color: #ff263f; margin-right: 6px; }

.hero-review-card {
  justify-self: end;
  display: grid;
  width: 178px;
  padding: 21px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7,7,7,.66);
  backdrop-filter: blur(13px);
  transition: transform .25s ease, border-color .25s ease;
}

.hero-review-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.55); }
.hero-review-card .review-source { margin-bottom: 8px; color: #ddd; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-review-card strong { font-family: "Teko", sans-serif; font-size: 3rem; line-height: 1; }
.hero-review-card strong small { color: #aaa; font: 500 .8rem "Barlow", sans-serif; }
.stars { color: #ffb800; letter-spacing: .08em; }
.hero-review-card > span:last-child { margin-top: 7px; color: #aaa; font-size: .72rem; }

.hero-scroll-v2 {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(255,255,255,.65);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-v2 span { width: 1px; height: 28px; background: linear-gradient(#fff, transparent); animation: scrollCue 1.7s ease-in-out infinite; }

.quick-trust { position: relative; z-index: 2; border-block: 1px solid rgba(255,255,255,.09); background: #111; }
.quick-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-trust-grid div { position: relative; display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 112px; padding: 20px; }
.quick-trust-grid div + div::before { content: ""; position: absolute; left: 0; top: 28%; bottom: 28%; width: 1px; background: rgba(255,255,255,.12); }
.quick-trust-grid strong { min-width: max-content; color: #fff; font: 600 2.55rem/1 "Teko", sans-serif; }
.quick-trust-grid span { max-width: 90px; color: #999; font-size: .72rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .07em; }

.home-v2 .section-pad { padding-block: clamp(58px, 6.2vw, 88px); }
.home-section-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: end; margin-bottom: 42px; }
.home-section-head h2,
.home-about h2,
.reviews-head h2,
.zone-v2-copy h2,
.home-final-cta h2 { font-size: clamp(2.8rem, 5vw, 4.7rem); line-height: .95; }
.home-section-head p:last-child { margin: 0 0 7px; color: #aaa; }
.home-v2 .kicker { color: #e3142e; font-size: .74rem; letter-spacing: .2em; }

.home-services {
  position: relative;
  overflow: hidden;
  background: #0a0a0b;
}
.home-services::before {
  content: "EXPERTISE";
  position: absolute;
  top: 32px;
  right: -18px;
  color: rgba(255,255,255,.018);
  font: 700 clamp(8rem, 18vw, 18rem)/1 "Teko", sans-serif;
  letter-spacing: -.035em;
  pointer-events: none;
}
.home-services-head { position: relative; z-index: 1; grid-template-columns: 1.08fr .62fr; gap: clamp(45px, 7vw, 92px); margin-bottom: 36px; }
.home-services-title .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; }
.home-services-title .kicker span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(227,20,46,.55); color: #fff; font: 600 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.home-services-title h2 { max-width: 760px; margin: 0; }
.home-services-title h2 em { color: #e3142e; font-style: normal; }
.home-services-intro { padding: 4px 0 4px 25px; border-left: 1px solid rgba(255,255,255,.15); }
.home-services-intro > p { margin: 0; color: #b8b8bc; font-size: .98rem; line-height: 1.7; }
.home-services-intro ul { display: flex; flex-wrap: wrap; gap: 9px 15px; margin: 22px 0 0; padding: 0; list-style: none; }
.home-services-intro li { color: #f1f1f2; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-services-intro li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 8px 1px 0; background: #e3142e; }
.home-service-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 238px); gap: 12px; }
.home-service-card { position: relative; grid-column: span 3; overflow: hidden; min-height: 280px; border: 1px solid rgba(255,255,255,.11); background: #151516; isolation: isolate; }
.home-service-card--large { grid-column: span 6; grid-row: 1 / 3; min-height: 488px; }
.home-service-card:nth-child(4) { grid-column: 7 / 13; }
.home-service-card::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid transparent; transition: border-color .35s ease, inset .35s ease; pointer-events: none; }
.home-service-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(5,5,6,.15) 15%, transparent 45%), linear-gradient(0deg, rgba(4,4,5,.97) 0%, rgba(4,4,5,.72) 34%, transparent 72%); transition: background .4s ease; }
.home-service-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.home-service-card > div { position: absolute; z-index: 3; left: clamp(20px, 2.4vw, 34px); right: clamp(20px, 2.4vw, 34px); bottom: clamp(20px, 2.4vw, 31px); }
.home-service-card p { margin: 0 0 7px; color: #ef1834; font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-service-card h3 { max-width: 95%; margin: 0; color: #fff; font: 600 clamp(1.75rem, 2.8vw, 2.7rem)/.96 "Teko", sans-serif; letter-spacing: .01em; text-transform: uppercase; }
.home-service-card--large h3 { font-size: clamp(2.55rem, 4.3vw, 4.3rem); }
.service-number { position: absolute; z-index: 3; top: 20px; right: 21px; color: #fff; font: 600 1.15rem "Teko", sans-serif; letter-spacing: .04em; }
.service-number small { color: rgba(255,255,255,.43); font-size: .65rem; }
.service-summary { display: block; max-width: 48ch; max-height: 0; margin-top: 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: .8rem; line-height: 1.5; opacity: 0; transform: translateY(8px); transition: max-height .4s ease, margin .4s ease, opacity .35s ease, transform .4s ease; }
.card-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; color: #f2f2f2; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.card-link b { display: inline-grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: .9rem; font-weight: 400; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.home-service-card:hover::before, .home-service-card:focus-visible::before { inset: 8px; border-color: rgba(255,255,255,.35); }
.home-service-card:hover img, .home-service-card:focus-visible img { transform: scale(1.05); filter: saturate(.95) contrast(1.02); }
.home-service-card:hover .service-summary, .home-service-card:focus-visible .service-summary { max-height: 70px; margin-top: 10px; opacity: 1; transform: translateY(0); }
.home-service-card:hover .card-link b, .home-service-card:focus-visible .card-link b { border-color: #e3142e; background: #e3142e; transform: translateX(3px); }
.home-services-footer { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 23px; padding: 19px 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.home-services-footer p { display: grid; gap: 3px; margin: 0; }
.home-services-footer strong { color: #fff; font-size: .86rem; }
.home-services-footer p span { color: #85858a; font-size: .78rem; }
.home-services-all { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 20px; min-height: 48px; padding: 11px 16px 11px 19px; border: 1px solid rgba(255,255,255,.24); color: #fff; font-size: .69rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.home-services-all span { color: #e3142e; font-size: 1rem; transition: transform .25s ease; }
.home-services-all:hover { border-color: #e3142e; background: #e3142e; transform: translateY(-2px); }
.home-services-all:hover span { color: #fff; transform: translateX(3px); }
.home-center { margin-top: 34px; text-align: center; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 7px; border-bottom: 1px solid #e1122d; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: #e1122d; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.home-about { position: relative; overflow: hidden; color: #1b1b1d; background: radial-gradient(900px 600px at 92% 45%, rgba(153,8,29,.055), transparent 68%), #d5d4d1; }
.home-about.section-pad { padding-block: clamp(56px, 5.7vw, 78px); }
.home-about::before { content: "ENGAGEMENT"; position: absolute; right: -22px; bottom: -34px; color: rgba(35,31,31,.078); font: 700 clamp(10rem, 20vw, 20rem)/1 "Teko", sans-serif; letter-spacing: -.045em; pointer-events: none; }
.home-about::after { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(42,39,38,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(42,39,38,.05) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; mask-image: linear-gradient(90deg, #000, transparent 48%); }
.home-about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr); gap: clamp(48px, 6.5vw, 86px); align-items: center; }
.home-about-visual { position: relative; min-height: 475px; padding: 13px 0 17px 13px; }
.home-about-visual::before { content: ""; position: absolute; inset: 0 30px 0 0; border: 1px solid rgba(225,20,47,.38); }
.home-about-visual::after { content: ""; position: absolute; z-index: -1; left: -40vw; right: 54%; top: 46px; bottom: -42px; background: #151416; }
.home-about-frame { position: relative; height: 445px; overflow: hidden; background: #181719; box-shadow: 0 24px 52px rgba(45,35,31,.17); }
.home-about-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,.82)); pointer-events: none; }
.home-about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: saturate(.78) contrast(1.05); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.home-about-visual:hover .home-about-frame img { transform: scale(1.025); filter: saturate(.92) contrast(1.04); }
.home-about-caption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 19px; display: grid; gap: 3px; color: #fff; }
.home-about-caption span { color: #f12a42; font-size: .61rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.home-about-caption strong { font: 500 1.38rem/1 "Teko", sans-serif; text-transform: uppercase; }
.experience-stamp { position: absolute; z-index: 3; right: -22px; top: 49px; display: flex; align-items: center; gap: 10px; min-width: 172px; padding: 14px 17px; color: #fff; background: #92071a; box-shadow: 0 16px 32px rgba(72,4,12,.22); }
.experience-stamp::after { content: ""; position: absolute; right: 0; bottom: -10px; border-style: solid; border-width: 10px 0 0 12px; border-color: transparent transparent transparent #55030d; }
.experience-stamp strong { font: 600 3.25rem/.8 "Teko", sans-serif; }
.experience-stamp span { font-size: .59rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; letter-spacing: .09em; }
.experience-stamp span b { color: #ffc5cc; font-weight: 700; }
.home-about-copy .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; }
.home-about-copy .kicker > span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(164,8,29,.42); color: #252326; font: 700 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.home-about-copy h2 { margin: 0 0 18px; color: #181719; font-size: clamp(2.6rem, 4.1vw, 3.8rem); line-height: .92; }
.home-about-copy h2 em { color: #a4081d; font-style: normal; }
.home-about-copy .lead { max-width: 650px; margin: 0; color: #545150; font-size: .95rem; line-height: 1.65; }
.commitment-list { display: grid; gap: 6px; margin: 21px 0 17px; padding: 0; list-style: none; counter-reset: none; }
.commitment-list li { position: relative; display: grid; grid-template-columns: 38px 1fr 25px; gap: 13px; align-items: center; min-height: 74px; padding: 11px 13px 11px 15px; border: 1px solid #bbb9b5; background: rgba(255,255,255,.19); transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.commitment-list li::before { content: ""; position: absolute; left: -1px; top: 17px; bottom: 17px; width: 2px; background: #e3142e; transform: scaleY(.25); transition: transform .3s ease; }
.commitment-list li:hover { border-color: #aaa7a2; background: rgba(255,255,255,.43); box-shadow: 0 12px 28px rgba(50,45,43,.09); transform: translateX(5px); }
.commitment-list li:hover::before { transform: scaleY(1); }
.commitment-list li > span { color: #e3142e; font: 600 1.3rem "Teko", sans-serif; }
.commitment-list strong { display: block; margin-bottom: 2px; color: #1b1a1b; font-size: .88rem; }
.commitment-list p { margin: 0; color: #65615f; font-size: .75rem; line-height: 1.4; }
.commitment-list li > i { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #aaa7a3; border-radius: 50%; color: #a4081d; font-size: .66rem; font-style: normal; }
.home-about-proof { display: flex; flex-wrap: wrap; gap: 7px 16px; padding: 0 0 17px; color: #4b4847; font-size: .62rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.home-about-proof b { margin-right: 5px; color: #a4081d; }
.home-about-actions { display: flex; align-items: stretch; gap: 10px; }
.home-about-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 50px; padding: 11px 15px 11px 17px; color: #fff; background: #a4081d; font-size: .64rem; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; transition: background .25s ease, transform .25s ease; }
.home-about-cta span { font-size: 1rem; transition: transform .25s ease; }
.home-about-cta:hover { background: #c10a23; transform: translateY(-2px); }
.home-about-cta:hover span { transform: translateX(3px); }
.home-about-phone { display: grid; align-content: center; padding: 9px 15px; border: 1px solid #aaa7a3; color: #1b1a1b; }
.home-about-phone small { color: #716d6a; font-size: .54rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-about-phone strong { margin-top: 2px; font: 600 1.25rem/1 "Teko", sans-serif; }
.home-about-phone:hover { border-color: #a4081d; color: #a4081d; }
.home-v2 .btn-outline { border: 1px solid currentColor; color: inherit; background: transparent; }
.home-v2 .btn-outline:hover { color: #fff; border-color: #850717; background: #850717; }

.home-projects { position: relative; overflow: hidden; background: radial-gradient(850px 500px at 8% 74%, rgba(140,6,24,.13), transparent 70%), #101011; }
.home-projects::before { content: "RÉALISATIONS"; position: absolute; right: -24px; top: 47px; color: rgba(255,255,255,.018); font: 700 clamp(9rem, 17vw, 17rem)/1 "Teko", sans-serif; letter-spacing: -.04em; pointer-events: none; }
.home-projects-head { position: relative; z-index: 1; grid-template-columns: 1.08fr .62fr; gap: clamp(45px, 7vw, 92px); margin-bottom: 35px; }
.home-projects-title .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; }
.home-projects-title .kicker span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(227,20,46,.55); color: #fff; font: 700 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.home-projects-title h2 { max-width: 760px; margin: 0; }
.home-projects-title h2 em { color: #e3142e; font-style: normal; }
.home-projects-intro { padding: 4px 0 4px 25px; border-left: 1px solid rgba(255,255,255,.15); }
.home-projects-intro > span { display: block; margin-bottom: 9px; color: #e3142e; font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-projects-intro p { margin: 0; color: #aaa9ad; font-size: .95rem; line-height: 1.7; }
.project-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, 235px); gap: 12px; }
.home-projects .project-card { position: relative; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 0; background: #1a191b; isolation: isolate; transition: transform .3s ease, border-color .3s ease; }
.project-card--main { grid-row: 1 / 3; min-height: 482px; }
.project-card::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid transparent; transition: inset .35s ease, border-color .35s ease; pointer-events: none; }
.project-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(4,4,5,.34), transparent 34%), linear-gradient(0deg, rgba(4,4,5,.98) 0%, rgba(4,4,5,.68) 34%, transparent 72%); transition: background .4s ease; }
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.04); transition: transform .85s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.project-card--main img { object-position: center; }
.project-card-top { position: absolute; z-index: 3; top: 20px; left: clamp(20px, 2.4vw, 31px); right: clamp(20px, 2.4vw, 31px); display: flex; align-items: center; justify-content: space-between; }
.home-projects .project-index { display: inline-block; margin: 0; color: #fff; font: 600 1.14rem "Teko", sans-serif; letter-spacing: .04em; text-transform: none; }
.home-projects .project-index small { color: rgba(255,255,255,.45); font-size: .64rem; }
.home-projects .project-status { display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); color: #e7e7e8; background: rgba(9,9,10,.45); font-size: .57rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(7px); }
.project-status i { width: 6px; height: 6px; border-radius: 50%; background: #e3142e; box-shadow: 0 0 0 4px rgba(227,20,46,.14); }
.project-card-copy { position: absolute; z-index: 3; left: clamp(20px, 2.5vw, 34px); right: clamp(20px, 2.5vw, 34px); bottom: clamp(20px, 2.5vw, 31px); }
.project-card-copy > p { margin: 0 0 7px; color: #ef1733; font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-card h3 { max-width: 630px; margin: 0; color: #fff; font: 600 clamp(1.65rem, 2.5vw, 2.55rem)/.98 "Teko", sans-serif; text-transform: uppercase; }
.project-card--main h3 { font-size: clamp(2.7rem, 4.6vw, 4.35rem); }
.home-projects .project-detail { display: block; max-height: 0; margin-top: 0; overflow: hidden; color: rgba(255,255,255,.63); font-size: .7rem; letter-spacing: .035em; text-transform: none; opacity: 0; transform: translateY(7px); transition: max-height .35s ease, margin .35s ease, opacity .3s ease, transform .35s ease; }
.home-projects .project-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 13px; color: #f3f3f3; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-link b { display: inline-grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.32); font-size: .9rem; font-weight: 400; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.project-card:hover::before, .project-card:focus-visible::before { inset: 8px; border-color: rgba(255,255,255,.36); }
.home-projects .project-card:hover, .home-projects .project-card:focus-visible { border-color: rgba(255,255,255,.26); transform: translateY(-3px); }
.project-card:hover img, .project-card:focus-visible img { transform: scale(1.045); filter: saturate(.95) contrast(1.02); }
.project-card:hover .project-detail, .project-card:focus-visible .project-detail { max-height: 30px; margin-top: 9px; opacity: 1; transform: translateY(0); }
.project-card:hover .project-link b, .project-card:focus-visible .project-link b { border-color: #e3142e; background: #e3142e; transform: translateX(3px); }
.home-projects-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.home-projects-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.home-projects-proof span { color: #aaa9ad; font-size: .65rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
.home-projects-proof b { margin-right: 7px; color: #e3142e; font: 600 .85rem "Teko", sans-serif; }
.home-projects-all { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 25px; min-height: 50px; padding: 12px 17px 12px 20px; border: 1px solid rgba(255,255,255,.24); color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.home-projects-all span { color: #e3142e; font-size: 1rem; transition: color .25s ease, transform .25s ease; }
.home-projects-all:hover { border-color: #e3142e; background: #e3142e; transform: translateY(-2px); }
.home-projects-all:hover span { color: #fff; transform: translateX(3px); }

.home-process { position: relative; overflow: hidden; color: #1b1a1b; background: #d5d4d1; }
.home-process::before { content: "MÉTHODE"; position: absolute; left: -20px; bottom: -55px; color: rgba(29,27,27,.038); font: 700 clamp(10rem, 20vw, 20rem)/1 "Teko", sans-serif; letter-spacing: -.045em; pointer-events: none; }
.home-process::after { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(45,41,40,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(45,41,40,.045) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, #000, transparent 55%); pointer-events: none; }
.home-process-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(330px,.72fr) minmax(0,1.28fr); min-height: 500px; border: 1px solid #b7b4b0; background: rgba(255,255,255,.13); box-shadow: 0 25px 55px rgba(45,39,37,.09); }
.home-process-intro { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4vw, 52px); overflow: hidden; color: #fff; background: linear-gradient(145deg, #98081f, #720513); }
.home-process-intro::before { content: "04"; position: absolute; right: -8px; bottom: -48px; color: rgba(255,255,255,.06); font: 700 13rem/1 "Teko", sans-serif; pointer-events: none; }
.home-process-intro::after { content: ""; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(transparent, rgba(255,255,255,.38), transparent); }
.home-process-intro .kicker { position: relative; display: flex; align-items: center; gap: 11px; margin: 0 0 19px; color: #ffd4da; }
.home-process-intro .kicker span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.38); color: #fff; font: 700 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.home-process-intro h2 { position: relative; margin: 0; color: #fff; font-size: clamp(3rem, 4.7vw, 4.7rem); line-height: .89; }
.home-process-intro h2 em { color: #ff8998; font-style: normal; }
.home-process-lead { position: relative; max-width: 42ch; margin: 23px 0 0; color: rgba(255,255,255,.76); font-size: .92rem; line-height: 1.65; }
.home-process-promise { position: relative; display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; margin-top: 28px; padding: 15px 0; border-block: 1px solid rgba(255,255,255,.18); }
.home-process-promise > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #8a0618; background: #fff; font-weight: 800; }
.home-process-promise p { display: grid; gap: 2px; margin: 0; }
.home-process-promise small { color: #ffb9c2; font-size: .54rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-process-promise strong { color: #fff; font-size: .74rem; line-height: 1.35; }
.home-process-cta { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 25px; width: fit-content; min-width: 225px; min-height: 51px; margin-top: 25px; padding: 12px 15px 12px 18px; color: #191719; background: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: color .25s ease, background .25s ease, transform .25s ease; }
.home-process-cta span { color: #a4081d; font-size: 1rem; transition: transform .25s ease; }
.home-process-cta:hover { color: #fff; background: #171517; transform: translateY(-2px); }
.home-process-cta:hover span { color: #fff; transform: translateX(3px); }
.home-process-steps { display: grid; align-content: center; margin: 0; padding: clamp(20px, 2.8vw, 34px); list-style: none; counter-reset: none; }
.home-process-steps li { position: relative; display: grid; grid-template-columns: 54px 1fr 27px; gap: 15px; align-items: center; min-height: 103px; padding: 12px 12px 12px 0; border-bottom: 1px solid #bbb8b4; transition: padding .28s ease, background .28s ease; }
.home-process-steps li:first-child { border-top: 1px solid #bbb8b4; }
.home-process-steps li:hover { padding-left: 12px; background: rgba(255,255,255,.27); }
.process-marker { position: relative; align-self: stretch; display: grid; place-items: center; }
.process-marker::before { content: ""; position: absolute; left: 50%; top: -18px; bottom: -18px; width: 1px; background: #b4b0ac; transform: translateX(-50%); }
.home-process-steps li:first-child .process-marker::before { top: 50%; }
.home-process-steps li:last-child .process-marker::before { bottom: 50%; }
.process-marker span { position: relative; z-index: 1; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid #aaa6a2; border-radius: 50%; color: #8e0719; background: #d5d4d1; font: 600 1.05rem "Teko", sans-serif; transition: color .25s ease, border-color .25s ease, background .25s ease; }
.process-marker i { position: absolute; z-index: 2; right: 1px; top: 50%; width: 7px; height: 7px; border: 2px solid #d5d4d1; border-radius: 50%; background: #b20a21; transform: translateY(-50%); }
.home-process-steps li:hover .process-marker span { border-color: #a4081d; color: #fff; background: #a4081d; }
.process-step-copy small { color: #a4081d; font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.process-step-copy h3 { margin: 3px 0 4px; color: #1b191a; font: 600 1.55rem/1 "Teko", sans-serif; text-transform: uppercase; }
.process-step-copy p { max-width: 68ch; margin: 0; color: #5f5b59; font-size: .78rem; line-height: 1.48; }
.process-step-copy b { display: inline-block; margin-top: 6px; color: #76716e; font-size: .57rem; letter-spacing: .07em; text-transform: uppercase; }
.process-step-check { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid #aaa6a2; border-radius: 50%; color: #a4081d; font-size: .65rem; transition: color .25s ease, border-color .25s ease, background .25s ease; }
.home-process-steps li:hover .process-step-check { border-color: #a4081d; color: #fff; background: #a4081d; }

.home-section-divider { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; min-height: 54px; padding-inline: 4vw; color: #8e8e92; background: #0d0d0e; box-shadow: 0 -1px 0 rgba(255,255,255,.04), 0 1px 0 rgba(0,0,0,.35); }
.home-section-divider > span { height: 1px; background: linear-gradient(90deg, transparent, rgba(220,16,43,.58)); }
.home-section-divider > span:last-child { background: linear-gradient(90deg, rgba(220,16,43,.58), transparent); }
.home-section-divider p { margin: 0; color: #a6a6aa; font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.home-section-divider b { margin-inline: 8px; color: #df102c; }

.home-reviews { position: relative; overflow: hidden; color: #191819; background: radial-gradient(760px 400px at 100% 0%, rgba(148,7,27,.07), transparent 70%), #c9c7c3; }
.home-reviews::before { content: "CONFIANCE"; position: absolute; left: -14px; bottom: -54px; color: rgba(27,25,25,.035); font: 700 clamp(10rem, 20vw, 20rem)/1 "Teko", sans-serif; letter-spacing: -.045em; pointer-events: none; }
.reviews-head { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-bottom: 30px; }
.reviews-title .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviews-title .kicker > span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(164,8,29,.43); color: #242123; font: 700 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.reviews-title h2 { margin: 0; color: #191719; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: .92; }
.reviews-title h2 em { color: #a4081d; font-style: normal; }
.reviews-summary { display: flex; align-items: center; gap: 14px; min-width: 245px; padding: 13px 17px; border: 1px solid #aaa7a3; background: rgba(255,255,255,.2); }
.reviews-google { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: #a4081d; font: 700 1.25rem Arial, sans-serif; }
.reviews-summary > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 10px; }
.reviews-summary strong { font: 600 2.2rem/.8 "Teko", sans-serif; }
.reviews-summary strong small { color: #77716e; font-size: .75rem; }
.reviews-summary .stars { color: #e49b00; font-size: .72rem; }
.reviews-summary p { grid-column: 1 / -1; margin: 5px 0 0; color: #6c6764; font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-reviews-carousel { position: relative; z-index: 1; }
.home-reviews-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 52px; padding: 8px 0 11px; border-bottom: 1px solid #aaa7a3; }
.home-reviews-toolbar > p { display: flex; align-items: center; gap: 10px; margin: 0; color: #5e5957; font-size: .7rem; font-weight: 700; }
.review-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #a4081d; box-shadow: 0 0 0 5px rgba(164,8,29,.1); }
.home-reviews-nav { display: flex; align-items: center; gap: 7px; }
.home-reviews-count { min-width: 66px; color: #77716e; font: 500 .82rem "Teko", sans-serif; letter-spacing: .05em; }
.home-reviews-count b { color: #a4081d; font-size: 1.08rem; }
.home-reviews-nav button { display: grid; place-items: center; width: 37px; height: 37px; padding: 0; border: 1px solid #aaa7a3; color: #201e1f; background: transparent; font-size: 1rem; cursor: pointer; transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease; }
.home-reviews-nav button:hover { border-color: #a4081d; color: #fff; background: #a4081d; transform: translateY(-2px); }
.home-reviews-viewport { overflow-x: auto; padding: 16px 0 6px; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.home-reviews-viewport.is-continuous { scroll-behavior: auto; scroll-snap-type: none; }
.home-reviews-viewport::-webkit-scrollbar { display: none; }
.home-reviews-track { display: flex; gap: 12px; }
.home-review-slide { position: relative; display: flex; flex: 0 0 calc((100% - 24px) / 3); flex-direction: column; min-width: 0; min-height: 248px; margin: 0; padding: 20px; border: 1px solid #b0ada8; background: rgba(241,239,235,.48); cursor: pointer; scroll-snap-align: start; transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.home-review-slide::before { content: "“"; position: absolute; right: 14px; bottom: 35px; color: rgba(164,8,29,.075); font: 700 7rem/.8 Georgia, serif; pointer-events: none; }
.home-review-slide:hover { border-color: #99948f; background: rgba(246,244,240,.7); box-shadow: 0 14px 30px rgba(45,39,37,.09); transform: translateY(-3px); }
.review-slide-head { display: grid; grid-template-columns: 38px 1fr 23px; gap: 10px; align-items: center; }
.review-slide-head > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: #202022; font-size: .66rem; font-weight: 800; }
.review-slide-head cite { display: grid; min-width: 0; font-style: normal; }
.review-slide-head cite strong { overflow: hidden; color: #1d1b1c; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.review-slide-head cite small { margin-top: 2px; color: #77716e; font-size: .58rem; }
.review-slide-head > b { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #fff; background: #a4081d; font: 700 .7rem Arial, sans-serif; }
.review-slide-rating { display: flex; align-items: center; gap: 9px; margin: 14px 0 11px; }
.review-slide-rating span { color: #e49b00; font-size: .76rem; letter-spacing: .08em; }
.review-slide-rating small { color: #5f5957; font-size: .62rem; font-weight: 800; }
.home-review-slide > p { position: relative; z-index: 1; flex: 1; margin: 0; color: #45413f; font-size: .78rem; line-height: 1.58; }
.home-review-slide footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 15px; padding-top: 12px; border-top: 1px solid #bbb8b4; }
.home-review-slide footer > span { color: #77716e; font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-review-slide footer a { display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 27px; border: 1px solid #aaa7a3; color: #a4081d; transition: color .22s ease, border-color .22s ease, background .22s ease; }
.home-review-slide footer a:hover { border-color: #a4081d; color: #fff; background: #a4081d; }
.home-reviews-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 15px; padding-top: 15px; border-top: 1px solid #aaa7a3; }
.home-reviews-footer p { margin: 0; color: #65605d; font-size: .65rem; }
.home-reviews-footer p b { margin-right: 7px; color: #a4081d; }
.home-reviews-footer > a { display: inline-flex; align-items: center; gap: 13px; color: #282526; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-reviews-footer > a span { color: #a4081d; font-size: .95rem; transition: transform .2s ease; }
.home-reviews-footer > a:hover span { transform: translate(2px,-2px); }

.home-zone { overflow: hidden; background: #111; }
.zone-v2-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 8vw, 100px); align-items: center; }
.zone-v2-grid::before { content: "TOULOUSE"; position: absolute; z-index: 0; right: -4vw; top: 50%; color: rgba(255,255,255,.024); font: 700 clamp(7rem, 18vw, 14rem)/1 "Teko", sans-serif; transform: translateY(-50%); }
.zone-v2-copy, .zone-v2-card { position: relative; z-index: 1; }
.zone-v2-copy > p:not(.kicker) { max-width: 650px; color: #aaa; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.city-tags span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.15); color: #bbb; font-size: .72rem; }
.zone-v2-card { padding: 39px; border: 1px solid rgba(255,255,255,.15); background: rgba(6,6,6,.7); }
.pulse-ring { display: block; width: 18px; height: 18px; margin-bottom: 26px; border: 5px solid #5c0713; border-radius: 50%; background: #ee1632; box-shadow: 0 0 0 9px rgba(213,12,37,.12); animation: zonePulse 2.3s ease-in-out infinite; }
.zone-v2-card strong { display: block; font: 600 2rem "Teko", sans-serif; text-transform: uppercase; }
.zone-v2-card p { color: #999; }
.zone-v2-card a { color: #f01935; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.home-final-cta { padding-block: clamp(75px, 9vw, 115px); background: linear-gradient(120deg, #760513, #b10920); }
.final-cta-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: center; }
.home-final-cta .kicker { color: #ffb6c0; }
.home-final-cta h2 { margin-bottom: 12px; }
.home-final-cta p:last-child { margin: 0; color: #efcbd0; }
.final-cta-actions { display: grid; justify-items: start; gap: 21px; }
.home-v2 .btn-light { color: #790615; background: #fff; }
.home-v2 .btn-light:hover { color: #111; transform: translateY(-2px); }
.final-phone { display: grid; }
.final-phone small { color: #eabdc3; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }
.final-phone strong { font: 600 2rem "Teko", sans-serif; }

.mobile-action-bar { display: none; }

/* Premium footer for the new homepage */
.home-v2 .site-footer {
  margin-top: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(760px 300px at 8% 0%, rgba(177,9,31,.2), transparent 65%),
    linear-gradient(180deg, #0d0d0e, #070708);
}

.home-v2 .site-footer::before {
  content: "";
  display: block;
  width: min(1140px, 92vw);
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, #d30c26 0 12%, rgba(255,255,255,.1) 12% 100%);
}

.home-v2 .site-footer .container {
  width: min(1140px, 92vw);
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 0;
}

.home-v2 .footer-grid {
  grid-template-columns: 1.35fr .75fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 58px);
  padding: 62px 0 48px;
}

.home-v2 .footer-brand { margin-bottom: 15px; font-size: 1.22rem; }
.home-v2 .footer-brand .brand-logo { width: 66px; height: 66px; }
.home-v2 .footer-about > p { max-width: 34ch; margin: 0 0 22px; color: #aaa; font-size: .92rem; line-height: 1.65; }
.home-v2 .footer-pill-row { display: flex; }
.home-v2 .footer-pill { padding: 6px 9px; border-radius: 2px; color: #c8c8c8; font-size: .62rem; }

.home-v2 .footer-title {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 11px;
  font-size: 1.27rem;
}

.home-v2 .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #d30c26;
}

.home-v2 .footer-links { gap: 9px; }
.home-v2 .footer-links > a:not(.footer-phone) { width: fit-content; color: #aaa; font-size: .84rem; transition: color .2s ease, transform .2s ease; }
.home-v2 .footer-links > a:not(.footer-phone):hover { color: #fff; transform: translateX(3px); }
.home-v2 .footer-phone { color: #fff; font: 600 1.8rem/1 "Teko", sans-serif; }
.home-v2 .footer-contact > span { color: #777; font-size: .8rem; }
.home-v2 .footer-contact-actions { margin-top: 12px; }
.home-v2 .footer-contact-actions a { border-radius: 2px; font-size: .65rem; }

.home-v2 .footer-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto 38px;
  gap: 22px;
  min-height: 76px;
  padding: 17px 0;
  border-color: rgba(255,255,255,.1);
}

.home-v2 .footer-bottom > p { color: #777; font-size: .74rem; }
.home-v2 .footer-legal-links { justify-content: center; gap: 16px; }
.home-v2 .footer-legal-links a { padding: 0; border: 0; border-radius: 0; color: #777; font-size: .65rem; }
.home-v2 .footer-legal-links a:hover { color: #fff; background: transparent; }

.home-v2 .studio-credit { white-space: nowrap; }
.home-v2 .studio-credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  color: #fff;
  font-weight: 700;
  transition: color .2s ease;
}

.home-v2 .studio-credit a span { color: #e5132e; transition: transform .2s ease; }
.home-v2 .studio-credit a:hover { color: #f0253d; }
.home-v2 .studio-credit a:hover span { transform: translate(2px, -2px); }
.home-v2 .footer-toplink { display: grid; place-items: center; width: 38px; height: 38px; margin: 0; padding: 0; border-radius: 50%; font-size: 1rem; }

@media (min-width: 1041px) {
  body.home-v2 { padding-left: 0; }

  .home-v2 .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    width: auto;
    display: block;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .home-v2 .site-header.scrolled { background: rgba(7,7,7,.97); }
  .home-v2 .site-header .container { width: min(1140px, 92vw); margin-inline: auto; }
  .home-v2 .header-top { display: block; }

  .home-v2 .nav-wrap {
    min-height: 78px;
    width: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .home-v2 .brand {
    margin-left: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    text-align: left;
    font-size: 1.18rem;
  }

  .home-v2 .brand-logo { width: 67px; height: 67px; margin: 0; }
  .home-v2 .main-nav { flex-direction: row; gap: 18px; border: 0; }

  .home-v2 .main-nav a {
    padding: 8px 0;
    border: 0;
    font-size: .88rem;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
  }

  .home-v2 .main-nav a::after { display: block; }
  .home-v2 .main-nav a:hover,
  .home-v2 .main-nav a.active { background: transparent; }

  .home-v2 .header-cta-group {
    width: auto;
    margin-top: 0;
    padding-top: 0;
    flex-direction: row;
    align-items: center;
    gap: 9px;
  }

  .home-v2 .header-cta { width: auto; min-height: 0; margin-top: 0; }
}

@keyframes homeHeroScale { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes homeCopyIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollCue { 0%,100% { opacity: .35; transform: scaleY(.65); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes zonePulse { 50% { box-shadow: 0 0 0 15px rgba(213,12,37,0); } }

@media (max-width: 1000px) {
  .home-v2 .header-phone { display: none; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-review-card { position: absolute; right: 4vw; bottom: 68px; }
  .home-service-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 300px 220px; }
  .home-service-card { grid-column: auto; }
  .home-service-card--large { grid-column: auto; grid-row: auto; min-height: 0; }
  .home-service-card:nth-child(4) { grid-column: auto; }
  .home-service-card--large h3 { font-size: clamp(2rem, 4vw, 3rem); }
  .service-summary { max-height: 70px; margin-top: 8px; opacity: 1; transform: none; }
  .home-services-footer p span { max-width: 56ch; }
  .home-about-grid { gap: 55px; }
  .project-grid { grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, 225px); }
  .project-card--main { min-height: 462px; }
  .home-projects .project-detail { max-height: 30px; margin-top: 8px; opacity: 1; transform: none; }
  .home-projects-proof { gap: 10px 15px; }
  .home-process-layout { grid-template-columns: minmax(290px,.68fr) minmax(0,1.32fr); }
  .home-process-intro { padding: 38px 32px; }
  .home-process-steps { padding: 22px; }
  .home-review-slide { flex-basis: calc((100% - 12px) / 2); }
  .home-v2 .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .home-v2 .footer-about { grid-column: 1 / -1; }
  .home-v2 .footer-about > p { max-width: 60ch; }
  .home-v2 .footer-bottom { grid-template-columns: 1fr auto; }
  .home-v2 .footer-legal-links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-about-visual { width: min(650px, calc(100% - 18px)); min-height: 445px; }
  .home-about-frame { height: 415px; }
  .home-about-copy { max-width: 720px; }
  .home-process-layout { grid-template-columns: 1fr; }
  .home-process-intro { min-height: 360px; }
  .home-process-intro::after { top: auto; bottom: 0; width: 100%; height: 1px; }
  .home-process-lead { max-width: 58ch; }
  .home-process-steps { padding: 22px 32px 27px; }
}

@media (max-width: 760px) {
  .home-v2 { padding-bottom: 67px; }
  .home-v2 .nav-wrap { flex-direction: row; align-items: center; padding: 0; }
  .home-v2 .brand { margin-left: 0; font-size: 1.12rem; }
  .home-v2 .brand-logo { width: 58px; height: 58px; }
  .home-v2 .menu-btn { display: inline-block; flex: 0 0 48px; margin-left: auto; }
  .home-v2 .header-top-inner p { font-size: .68rem; }
  .home-v2 .header-top-inner a { font-size: .73rem; }
  .home-v2 .header-cta-group { display: none; }
  .home-hero { min-height: calc(100svh - 90px); }
  .home-hero-image { object-position: 72% center; }
  .home-hero-shade { background: linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.56)), linear-gradient(0deg, #090909 0%, transparent 54%); }
  .home-hero-grid { align-items: center; padding-top: 40px; padding-bottom: 100px; }
  .home-hero-copy { width: 100%; min-width: 0; max-width: 100%; }
  .home-hero h1 { max-width: 100%; font-size: clamp(3.35rem, 15vw, 4.6rem); }
  .home-hero-lead { font-size: .96rem; line-height: 1.55; }
  .home-hero-actions { display: grid; grid-template-columns: 1fr; max-width: 330px; }
  .home-hero-proof { gap: 10px 17px; font-size: .72rem; }
  .hero-review-card { display: none; }
  .hero-scroll-v2 { display: none; }
  .quick-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-trust-grid div { min-height: 90px; justify-content: flex-start; padding: 16px 6vw; }
  .quick-trust-grid div:nth-child(3)::before { display: none; }
  .quick-trust-grid div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .quick-trust-grid strong { font-size: 2rem; }
  .home-section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 29px; }
  .home-section-head h2, .home-about h2, .reviews-head h2, .zone-v2-copy h2, .home-final-cta h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .home-services::before { top: 90px; font-size: 8rem; }
  .home-services-head { gap: 26px; margin-bottom: 35px; }
  .home-services-title h2 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .home-services-intro { padding: 0; border-left: 0; }
  .home-services-intro > p { font-size: .92rem; }
  .home-services-intro ul { gap: 9px 12px; margin-top: 17px; }
  .home-service-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .home-service-card, .home-service-card--large { min-height: 285px; }
  .home-service-card h3, .home-service-card--large h3 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .service-summary { max-height: 70px; margin-top: 8px; opacity: 1; transform: none; }
  .card-link { margin-top: 11px; }
  .home-services-footer { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 24px; }
  .home-services-all { justify-content: space-between; width: 100%; }
  .home-about::before { right: -10px; bottom: 18px; color: rgba(35,31,31,.07); font-size: 8.7rem; }
  .home-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-about-visual { width: calc(100% - 4px); min-height: 350px; height: auto; padding: 10px 0 10px 8px; }
  .home-about-visual::before { inset: 0 6px 0 0; }
  .home-about-visual::after { left: -8vw; right: 62%; top: 28px; bottom: -16px; }
  .home-about-frame { height: 330px; }
  .home-about-frame img { min-height: 0; height: 100%; object-position: 50% 34%; }
  .home-about-caption { left: 18px; right: 18px; bottom: 17px; }
  .experience-stamp { top: 29px; right: -4px; min-width: 154px; padding: 12px 14px; }
  .experience-stamp strong { font-size: 2.85rem; }
  .home-about-copy h2 { margin-bottom: 15px; font-size: clamp(2.35rem, 10vw, 3rem); }
  .home-about-copy .lead { font-size: .9rem; }
  .commitment-list { margin-top: 19px; }
  .commitment-list li { grid-template-columns: 32px 1fr 24px; gap: 10px; min-height: 82px; padding: 11px 10px 11px 13px; }
  .commitment-list p { font-size: .76rem; }
  .home-about-proof { gap: 8px 13px; }
  .home-projects::before { top: 105px; right: -10px; font-size: 7.5rem; }
  .home-projects-head { gap: 25px; margin-bottom: 34px; }
  .home-projects-title h2 { font-size: clamp(2.65rem, 12vw, 3.45rem); }
  .home-projects-intro { padding: 0; border-left: 0; }
  .home-projects-intro p { font-size: .9rem; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .project-card { min-height: 300px; }
  .project-card--main { grid-row: auto; min-height: 360px; }
  .project-card h3 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .project-card--main h3 { font-size: clamp(2.4rem, 10vw, 3.25rem); }
  .home-projects-footer { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 24px; }
  .home-projects-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .home-projects-all { justify-content: space-between; width: 100%; }
  .home-process::before { left: -8px; bottom: -2px; font-size: 8.5rem; }
  .home-process-layout { width: min(94vw, 1180px); }
  .home-process-intro { min-height: 350px; padding: 30px 25px; }
  .home-process-intro h2 { font-size: clamp(2.8rem, 13vw, 3.7rem); }
  .home-process-lead { margin-top: 18px; font-size: .87rem; }
  .home-process-promise { margin-top: 22px; }
  .home-process-cta { width: 100%; margin-top: 21px; }
  .home-process-steps { padding: 21px 18px 27px; }
  .home-process-steps li { grid-template-columns: 47px 1fr 25px; gap: 11px; min-height: 122px; padding: 13px 4px 13px 0; }
  .home-process-steps li:hover { padding-left: 5px; }
  .process-marker span { width: 38px; height: 38px; }
  .process-marker i { right: -1px; }
  .process-step-copy h3 { font-size: 1.38rem; }
  .process-step-copy p { font-size: .73rem; }
  .process-step-check { width: 24px; height: 24px; }
  .home-section-divider { gap: 11px; min-height: 46px; padding-inline: 3vw; }
  .home-section-divider p { font-size: .49rem; letter-spacing: .1em; }
  .home-section-divider b { margin-inline: 4px; }
  .home-reviews::before { bottom: -4px; font-size: 8.4rem; }
  .reviews-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
  .reviews-title h2 { font-size: clamp(2.35rem, 10vw, 3rem); }
  .reviews-summary { min-width: 0; width: min(285px, 100%); }
  .home-reviews-toolbar { align-items: flex-end; }
  .home-reviews-toolbar > p { max-width: 190px; font-size: .63rem; }
  .home-review-slide { flex-basis: 88%; min-height: 245px; }
  .home-reviews-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .zone-v2-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 35px; }
  .zone-v2-card { padding: 28px; }
  .mobile-action-bar { position: fixed; z-index: 999; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1.18fr; min-height: 67px; box-shadow: 0 -8px 28px rgba(0,0,0,.4); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; min-width: 0; padding-inline: 8px; color: #fff; background: #191919; font-size: .7rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
  .mobile-action-bar a:last-child { background: #a3081c; }
  .mobile-action-bar span { font-size: 1rem; }
  .home-v2 .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; padding: 46px 0 35px; }
  .home-v2 .footer-about, .home-v2 .footer-contact { grid-column: 1 / -1; }
  .home-v2 .footer-about > p { max-width: 100%; }
  .home-v2 .footer-bottom { grid-template-columns: 1fr 40px; gap: 14px; padding: 24px 0; }
  .home-v2 .footer-bottom > p:first-child,
  .home-v2 .footer-legal-links,
  .home-v2 .studio-credit { grid-column: 1; }
  .home-v2 .footer-toplink { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .home-v2 .footer-legal-links { justify-content: flex-start; gap: 10px 14px; }
  .home-v2 .studio-credit { white-space: normal; }
}

@media (max-width: 480px) {
  .home-about-actions { display: grid; grid-template-columns: 1fr; }
  .home-about-cta { width: 100%; }
  .home-about-phone { min-height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-image, .hero-scroll-v2 span, .pulse-ring { animation: none; }
}

/* ========================================================================== 
   FOOTER V3 — signature, restrained and conversion-focused
   ========================================================================== */
.home-v2 .site-footer {
  --footer-red: #d80d28;
  --footer-muted: #96969b;
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #f7f7f7;
  border-top: 0;
  background:
    radial-gradient(900px 440px at 90% 36%, rgba(142,6,24,.16), transparent 62%),
    #08080a;
}

.home-v2 .site-footer::before {
  content: "CHRIS & TOIT";
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: auto;
  height: auto;
  margin: 0;
  color: rgba(255,255,255,.018);
  background: none;
  font: 700 clamp(8rem, 21vw, 19rem)/.7 "Teko", sans-serif;
  letter-spacing: -.035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-v2 .site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}

.home-v2 .site-footer .container {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}

.footer-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.footer-signature-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-signature-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 14px 25px rgba(0,0,0,.35));
}

.footer-signature-brand > span { display: grid; gap: 3px; }
.footer-signature-brand small { color: var(--footer-muted); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-signature-brand strong { font: 600 clamp(1.85rem, 2.7vw, 2.4rem)/.85 "Teko", sans-serif; letter-spacing: .015em; text-transform: uppercase; }
.footer-signature-brand em { color: var(--footer-red); font-style: normal; }

.footer-signature-contact {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.footer-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c5c5c8;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31c76a;
  box-shadow: 0 0 0 6px rgba(49,199,106,.1);
  animation: footerStatus 2.4s ease-in-out infinite;
}

.footer-signature-contact > a { display: grid; padding-left: 27px; border-left: 1px solid rgba(255,255,255,.15); }
.footer-signature-contact small { color: var(--footer-muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-signature-contact strong { font: 600 2rem/1.05 "Teko", sans-serif; letter-spacing: .03em; transition: color .2s ease; }
.footer-signature-contact > a:hover strong { color: #f21a36; }

.footer-main-v3 {
  display: grid;
  grid-template-columns: 1.15fr .95fr .72fr;
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(30px, 3.6vw, 42px) 0;
}

.footer-main-v3 > *,
.footer-directory > * { min-width: 0; }

.footer-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #c7c7ca;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.footer-overline::before { content: ""; width: 28px; height: 2px; background: var(--footer-red); }
.footer-manifesto h2 { margin: 0 0 11px; font-size: clamp(2.25rem, 3.2vw, 3.05rem); line-height: .88; letter-spacing: -.01em; }
.footer-manifesto h2 span { color: #dc102b; }
.footer-manifesto > p:not(.footer-overline) { max-width: 510px; margin: 0; color: var(--footer-muted); font-size: .84rem; line-height: 1.55; }

.footer-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-reassurance span { color: #c2c2c5; font-size: .65rem; font-weight: 600; }
.footer-reassurance b { margin-right: 6px; color: #ed1733; }

.footer-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 8px;
}

.footer-directory nav,
.footer-address { display: grid; align-content: start; }
.footer-directory p { margin: 0 0 15px; color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-directory nav a { display: flex; justify-content: space-between; gap: 15px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: #a9a9ae; font-size: .78rem; transition: color .2s ease, padding .2s ease; }
.footer-directory nav a span { color: #d80d28; }
.footer-directory nav a:hover { padding-left: 4px; color: #fff; }
.footer-address strong { margin-bottom: 7px; font: 500 1.45rem/1.05 "Teko", sans-serif; text-transform: uppercase; }
.footer-address > span { color: #77777d; font-size: .76rem; line-height: 1.55; }
.footer-address a { margin-top: 14px; color: #c1c1c5; font-size: .74rem; text-decoration: underline; text-decoration-color: rgba(216,13,40,.65); text-underline-offset: 5px; }
.footer-address a:hover { color: #fff; }

.footer-action-card {
  position: relative;
  align-self: start;
  min-height: 202px;
  padding: 22px 21px 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #b0081f, #700410);
  box-shadow: 0 25px 55px rgba(0,0,0,.3);
}

.footer-action-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -92px;
  top: -85px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(255,255,255,.025), 0 0 0 50px rgba(255,255,255,.018);
}

.footer-action-icon { position: absolute; right: 24px; top: 19px; color: rgba(255,255,255,.7); font-size: 1.3rem; }
.footer-action-card > p { margin: 0 0 11px; color: #efb9c1; font-size: .57rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-action-card h3 { margin: 0 0 14px; font: 600 1.5rem/.96 "Teko", sans-serif; text-transform: uppercase; }
.footer-devis-btn { display: flex; align-items: center; justify-content: space-between; min-height: 38px; padding: 8px 11px; color: #161616; background: #fff; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease; }
.footer-devis-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.footer-devis-btn span { color: #b0081f; font-size: 1rem; }
.footer-action-card > div { display: flex; gap: 15px; margin-top: 9px; }
.footer-action-card > div a { color: #f0cbd0; font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-action-card > div a:hover { color: #fff; }

.footer-bottom-v3 {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 54px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-v3 p { margin: 0; color: #6f6f75; font-size: .68rem; }
.footer-bottom-v3 nav { display: flex; gap: 18px; }
.footer-bottom-v3 nav a { color: #77777d; font-size: .66rem; transition: color .2s ease; }
.footer-bottom-v3 nav a:hover { color: #fff; }
.footer-bottom-v3 .studio-credit-v3 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(216,13,40,.52);
  color: #a7a7ac;
  background: rgba(216,13,40,.09);
  white-space: nowrap;
  font-size: .66rem;
}
.studio-credit-v3 a { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.studio-credit-v3 a b { color: #f11835; font-size: .82rem; transition: transform .2s ease; }
.studio-credit-v3 a:hover { color: #ff334d; }
.studio-credit-v3 a:hover b { transform: translate(2px,-2px); }
.footer-back-top { display: inline-flex; align-items: center; gap: 7px; color: #8c8c91; font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-back-top span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; transition: background .2s ease, border-color .2s ease; }
.footer-back-top:hover span { border-color: #d80d28; background: #d80d28; }

@keyframes footerStatus { 50% { box-shadow: 0 0 0 10px rgba(49,199,106,0); } }

@media (max-width: 1000px) {
  .footer-main-v3 { grid-template-columns: 1fr 1fr; }
  .footer-manifesto { grid-column: 1 / -1; }
  .footer-action-card { min-height: 202px; }
  .footer-bottom-v3 { grid-template-columns: 1fr auto; padding-block: 12px; }
  .footer-bottom-v3 nav { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .footer-signature { align-items: flex-start; min-height: 0; padding: 21px 0 17px; }
  .footer-signature-brand { gap: 12px; }
  .footer-signature-brand img { width: 58px; height: 58px; }
  .footer-signature-brand small { font-size: .54rem; letter-spacing: .12em; }
  .footer-signature-brand strong { font-size: 2rem; }
  .footer-signature-contact { display: none; }
  .footer-main-v3 { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 27px 0 23px; }
  .footer-manifesto h2 { max-width: 100%; font-size: clamp(2.05rem, 9.3vw, 2.45rem); overflow-wrap: anywhere; }
  .footer-manifesto > p:not(.footer-overline) { font-size: .8rem; }
  .footer-reassurance { gap: 10px 14px; }
  .footer-reassurance span { font-size: .66rem; }
  .footer-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .footer-address strong { font-size: 1.35rem; }
  .footer-address a { overflow-wrap: anywhere; }
  .footer-action-card { width: 100%; min-width: 0; min-height: 0; padding: 20px 19px 17px; }
  .footer-action-card h3 { font-size: 1.45rem; }
  .footer-devis-btn { width: 100%; }
  .footer-bottom-v3 { grid-template-columns: 1fr auto; gap: 9px; padding: 13px 0 16px; }
  .footer-bottom-v3 nav { grid-column: 1 / -1; flex-wrap: wrap; gap: 8px 15px; }
  .footer-bottom-v3 .studio-credit-v3 { grid-column: 1; width: fit-content; white-space: normal; }
  .footer-back-top { grid-column: 2; grid-row: 1 / 3; }
  .footer-back-top { font-size: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-availability i { animation: none; }
}

/* ========================================================================== 
   FINAL CTA V4 — premium contact gateway
   ========================================================================== */
.home-v2 .home-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 9vw, 124px) 0;
  color: #fff;
  background:
    radial-gradient(700px 420px at 4% 20%, rgba(255,70,91,.19), transparent 64%),
    linear-gradient(118deg, #8b0618 0%, #a7081e 53%, #790412 100%);
}

.home-v2 .home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background:
    linear-gradient(110deg, transparent 0 58%, rgba(255,255,255,.055) 58% 58.12%, transparent 58.12%),
    linear-gradient(110deg, transparent 0 69%, rgba(255,255,255,.035) 69% 69.12%, transparent 69.12%);
  pointer-events: none;
}

.home-v2 .home-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  left: -205px;
  bottom: -240px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.018), 0 0 0 84px rgba(255,255,255,.012);
}

.final-cta-watermark {
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  z-index: -1;
  color: rgba(255,255,255,.026);
  font: 700 clamp(9rem, 21vw, 19rem)/.68 "Teko", sans-serif;
  letter-spacing: -.035em;
  pointer-events: none;
}

.final-cta-v4 {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(55px, 8vw, 104px);
  align-items: center;
}

.final-cta-copy { min-width: 0; }

.final-cta-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #ffd5db;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.final-cta-kicker span { width: 34px; height: 2px; background: #fff; }

.home-v2 .final-cta-copy h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(4rem, 6.8vw, 6.6rem);
  line-height: .8;
  letter-spacing: -.018em;
}

.final-cta-copy h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
  text-stroke: 1.5px rgba(255,255,255,.9);
}

.final-cta-lead {
  max-width: 535px;
  margin: 0;
  color: #f2c9cf;
  font-size: .99rem;
  line-height: 1.7;
}

.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin: 29px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
}

.final-cta-trust li { color: #f5dce0; font-size: .72rem; font-weight: 600; }
.final-cta-trust b { margin-right: 5px; color: #fff; }

.final-contact-panel {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.5vw, 43px);
  color: #171719;
  background: #f3efe9;
  box-shadow: 0 30px 75px rgba(52,0,8,.32);
}

.final-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}

.final-contact-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 27px;
}

.final-contact-head > div > span {
  display: block;
  margin-bottom: 5px;
  color: #9d0a1d;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.final-contact-head h3 {
  max-width: 430px;
  margin: 0;
  color: #111;
  font: 600 clamp(1.75rem, 3vw, 2.45rem)/1 "Teko", sans-serif;
  text-transform: uppercase;
}

.final-online {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid #dad4cc;
  color: #6b6965;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.final-online i { width: 7px; height: 7px; border-radius: 50%; background: #29b963; box-shadow: 0 0 0 4px rgba(41,185,99,.11); }

.final-choice-grid { display: grid; gap: 9px; }

.final-choice {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 13px 18px;
  border: 1px solid #d4cec6;
  background: rgba(255,255,255,.42);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.final-choice:hover { color: #fff; border-color: #1a1a1c; background: #151517; transform: translateX(4px); }
.final-choice--urgent:hover { border-color: #a8071d; background: #a8071d; }
.final-choice-number { color: #a3091d; font: 600 1rem "Teko", sans-serif; }
.final-choice:hover .final-choice-number { color: #ff8c9b; }
.final-choice > span:nth-child(2) { display: grid; }
.final-choice small { color: #817c76; font-size: .61rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.final-choice:hover small { color: #c7c3c0; }
.final-choice strong { font-size: .9rem; }
.final-choice > b { color: #ad0a20; font-size: 1.1rem; transition: transform .2s ease; }
.final-choice:hover > b { color: #fff; transform: translateX(3px); }

.final-contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #d5cfc7;
}

.final-direct-btn {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 67px;
  padding: 11px 13px;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.final-direct-btn > span:nth-child(2) { display: grid; min-width: 0; }
.final-direct-btn small { font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.final-direct-btn strong { font: 600 1.22rem/1.05 "Teko", sans-serif; white-space: nowrap; }
.final-direct-btn > b { font-size: .95rem; transition: transform .2s ease; }
.final-direct-btn:hover { transform: translateY(-3px); }
.final-direct-btn:hover > b { transform: translateX(3px); }

.final-direct-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}

.final-direct-btn--phone {
  color: #fff;
  border-color: #19191b;
  background: #19191b;
  box-shadow: 0 10px 23px rgba(0,0,0,.12);
}

.final-direct-btn--phone small { color: #aeadb0; }
.final-direct-btn--phone .final-direct-icon { color: #fff; background: #a6091e; }
.final-direct-btn--phone > b { color: #ee1733; }
.final-direct-btn--phone:hover { background: #080809; box-shadow: 0 14px 27px rgba(0,0,0,.2); }

.final-direct-btn--whatsapp {
  color: #fff;
  border-color: #16864a;
  background: #16864a;
  box-shadow: 0 10px 23px rgba(13,103,55,.15);
}

.final-direct-btn--whatsapp small { color: #c5eed6; }
.final-direct-btn--whatsapp .final-direct-icon { color: #16864a; background: #fff; }
.final-direct-btn--whatsapp > b { color: #fff; }
.final-direct-btn--whatsapp:hover { background: #0e713d; box-shadow: 0 14px 27px rgba(13,103,55,.25); }

.final-contact-note {
  margin: 20px 0 0;
  padding-top: 15px;
  border-top: 1px solid #ded8d0;
  color: #77716b;
  font-size: .66rem;
}

.final-contact-note span { margin-right: 6px; color: #b00920; font-size: .55rem; }

@media (max-width: 900px) {
  .final-cta-v4 { grid-template-columns: 1fr; gap: 45px; }
  .final-cta-copy { max-width: 680px; }
  .home-v2 .final-cta-copy h2 { font-size: clamp(4.3rem, 12vw, 6.2rem); }
}

@media (max-width: 600px) {
  .home-v2 .home-final-cta { padding: 66px 0; }
  .final-cta-v4 { gap: 34px; }
  .home-v2 .final-cta-copy h2 { font-size: clamp(3.65rem, 17vw, 4.75rem); }
  .final-cta-lead { font-size: .9rem; }
  .final-cta-trust { gap: 9px 13px; margin-top: 21px; padding-top: 16px; }
  .final-contact-panel { padding: 25px 20px; }
  .final-contact-head { margin-bottom: 20px; }
  .final-contact-head h3 { font-size: 1.75rem; }
  .final-online { display: none; }
  .final-choice { grid-template-columns: 28px minmax(0, 1fr) auto; gap: 10px; min-height: 70px; padding: 11px 13px; }
  .final-choice strong { font-size: .82rem; }
  .final-contact-direct { gap: 12px; margin-top: 19px; padding-top: 18px; }
  .final-direct-btn { grid-template-columns: 27px minmax(0, 1fr) auto; gap: 7px; min-height: 62px; padding: 9px; }
  .final-direct-icon { width: 27px; height: 27px; }
  .final-direct-btn strong { font-size: 1.05rem; }
  .final-direct-btn small { font-size: .49rem; letter-spacing: .08em; }
  .final-contact-note { line-height: 1.45; }
}

/* ========================================================================== 
   LOCAL ZONE V3 — service radius and local reassurance
   ========================================================================== */
.home-v2 .home-zone {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(780px 430px at 12% 78%, rgba(174,8,30,.17), transparent 65%),
    linear-gradient(180deg, #101012, #0a0a0c);
}

.home-v2 .home-zone.section-pad { padding-block: clamp(58px, 6vw, 82px); }

.home-v2 .home-zone::before {
  content: "31";
  position: absolute;
  right: -1vw;
  top: 5%;
  color: rgba(255,255,255,.018);
  font: 700 clamp(16rem, 38vw, 34rem)/.8 "Teko", sans-serif;
  pointer-events: none;
}

.zone-v3-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 27px;
}

.zone-v3-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  color: #df1731;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.zone-v3-kicker span { width: 32px; height: 2px; background: #df1731; }
.zone-v3-head h2 { margin: 0; font-size: clamp(2.75rem, 4.3vw, 4rem); line-height: .88; }
.zone-v3-head h2 em { color: #dc102b; font-style: normal; }
.zone-v3-head > p { max-width: 470px; margin: 0 0 5px; color: #99999e; font-size: .94rem; line-height: 1.7; }

.zone-v3-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.11);
  background: #0b0b0d;
  box-shadow: 0 30px 75px rgba(0,0,0,.22);
}

.zone-v3-layout--compact { grid-template-columns: 1.05fr .95fr; }

.zone-real-map {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.11);
  background: #171719;
}

.zone-real-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.78) invert(.9) contrast(.9) brightness(.73);
  transition: filter .35s ease;
}

.zone-real-map:hover iframe { filter: grayscale(.15) invert(0) contrast(1) brightness(1); }

.zone-map-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 178px;
  padding: 12px 14px;
  border-left: 3px solid #d7102c;
  color: #fff;
  background: rgba(8,8,10,.91);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.zone-map-badge span { color: #a4a4a9; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.zone-map-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #30c66b; box-shadow: 0 0 0 4px rgba(48,198,107,.1); }
.zone-map-badge strong { font: 500 1.05rem "Teko", sans-serif; letter-spacing: .04em; text-transform: uppercase; }

.zone-map-visual {
  position: relative;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 50% 48%, rgba(174,8,30,.14), transparent 37%),
    #0e0e11;
}

.zone-map-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 22%, transparent 75%);
}

.zone-radius {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(221,16,44,.3);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.zone-radius--outer { width: 390px; height: 390px; box-shadow: 0 0 70px rgba(181,7,29,.08); }
.zone-radius--inner { width: 245px; height: 245px; border-color: rgba(221,16,44,.48); background: rgba(166,7,27,.035); }
.zone-radius--inner::after { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; }

.zone-road {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 620px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), rgba(255,255,255,.02), transparent);
  transform-origin: center;
}

.zone-road--one { transform: translate(-50%,-50%) rotate(16deg); }
.zone-road--two { transform: translate(-50%,-50%) rotate(-32deg); }
.zone-road--three { transform: translate(-50%,-50%) rotate(67deg); }

.zone-center-point {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 3;
  display: grid;
  justify-items: center;
  transform: translate(-50%,-50%);
}

.zone-pin {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50% 50% 50% 7px;
  background: #b20821;
  box-shadow: 0 0 0 12px rgba(178,8,33,.1), 0 15px 28px rgba(0,0,0,.35);
  transform: rotate(-45deg);
}

.zone-pin i { width: 12px; height: 12px; border: 3px solid #fff; border-radius: 50%; transform: rotate(45deg); }
.zone-center-point strong { font: 600 1.65rem/1 "Teko", sans-serif; text-transform: uppercase; }
.zone-center-point small { color: #76767c; font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }

.zone-city {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.12);
  color: #9f9fa4;
  background: rgba(9,9,11,.74);
  font-size: .58rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.zone-city::before { content: ""; display: inline-block; width: 4px; height: 4px; margin-right: 6px; border-radius: 50%; background: #d7102b; vertical-align: 1px; }
.zone-city--blagnac { left: 29%; top: 24%; }
.zone-city--colomiers { left: 15%; top: 43%; }
.zone-city--balma { right: 17%; top: 34%; }
.zone-city--tournefeuille { left: 25%; bottom: 24%; }
.zone-city--muret { right: 25%; bottom: 17%; }

.zone-map-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.zone-map-caption span { color: #77777c; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
.zone-map-caption i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #d9102c; box-shadow: 0 0 0 5px rgba(217,16,44,.1); }
.zone-map-caption strong { font: 500 1rem "Teko", sans-serif; letter-spacing: .05em; text-transform: uppercase; }

.zone-v3-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 3.7vw, 45px);
  background: linear-gradient(145deg, rgba(255,255,255,.045), transparent 58%);
}

.zone-v3-label { margin: 0 0 9px; color: #da112c; font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.zone-v3-content h3 { max-width: 460px; margin: 0 0 11px; font: 600 clamp(1.8rem, 2.8vw, 2.45rem)/.95 "Teko", sans-serif; text-transform: uppercase; }
.zone-v3-content > p:not(.zone-v3-label) { max-width: 500px; margin: 0; color: #929298; font-size: .88rem; line-height: 1.65; }

.zone-v3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 17px;
  border-block: 1px solid rgba(255,255,255,.1);
}

.zone-v3-stats article { padding: 11px 13px 10px 0; }
.zone-v3-stats article + article { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.1); }
.zone-v3-stats strong { display: block; font: 600 1.65rem/1 "Teko", sans-serif; }
.zone-v3-stats strong small { color: #d8122d; font-size: .9rem; }
.zone-v3-stats span { display: block; color: #74747a; font-size: .55rem; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }

.zone-v3-cities { display: flex; flex-wrap: wrap; gap: 6px; }
.zone-v3-cities span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.1); color: #85858b; font-size: .59rem; transition: color .2s ease, border-color .2s ease; }
.zone-v3-cities span:hover { color: #fff; border-color: rgba(218,17,44,.7); }

.zone-v3-actions { display: flex; align-items: center; gap: 20px; margin-top: 19px; }
.zone-v3-primary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 205px; min-height: 46px; padding: 11px 14px; color: #fff; background: #ae081f; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.zone-v3-primary:hover { background: #d1102d; transform: translateY(-2px); }
.zone-v3-primary span { font-size: 1rem; }
.zone-v3-phone { display: grid; }
.zone-v3-phone small { color: #6f6f74; font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
.zone-v3-phone strong { font: 600 1.35rem "Teko", sans-serif; }

@media (max-width: 900px) {
  .zone-v3-head { grid-template-columns: 1fr; gap: 17px; }
  .zone-v3-layout { grid-template-columns: 1fr; }
  .zone-map-visual { min-height: 480px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .zone-real-map { min-height: 350px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .zone-real-map iframe { min-height: 350px; }
}

@media (max-width: 600px) {
  .zone-v3-head { margin-bottom: 27px; }
  .zone-v3-head h2 { font-size: clamp(2.85rem, 13vw, 3.7rem); }
  .zone-map-visual { min-height: 390px; }
  .home-v2 .home-zone.section-pad { padding-block: 48px; }
  .zone-real-map, .zone-real-map iframe { min-height: 295px; }
  .zone-map-badge { left: 12px; bottom: 12px; min-width: 162px; padding: 9px 11px; }
  .zone-radius--outer { width: 300px; height: 300px; }
  .zone-radius--inner { width: 190px; height: 190px; }
  .zone-city--blagnac { left: 18%; top: 20%; }
  .zone-city--colomiers { left: 5%; top: 43%; }
  .zone-city--balma { right: 5%; top: 29%; }
  .zone-city--tournefeuille { left: 10%; bottom: 25%; }
  .zone-city--muret { right: 12%; bottom: 16%; }
  .zone-map-caption { left: 15px; right: 15px; bottom: 14px; }
  .zone-v3-content { padding: 27px 20px; }
  .zone-v3-stats article { padding-right: 7px; }
  .zone-v3-stats article + article { padding-left: 9px; }
  .zone-v3-stats strong { font-size: 1.65rem; }
  .zone-v3-actions { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .zone-v3-primary { width: 100%; }
}

/* ========================================================================== 
   SERVICES V4 — complete service discovery and conversion page
   ========================================================================== */
.services-v4 {
  --sv-red: #d50c29;
  --sv-cream: #f2eee7;
  --sv-ink: #0b0b0d;
  padding-left: 0;
  background: #0b0b0d;
}

.services-v4 .reveal,
.services-v4 .reveal.in { opacity: 1; transform: none; }
.services-v4 .site-header { background: rgba(8,8,9,.96); backdrop-filter: blur(18px); }
.services-v4 .header-top { background: #810617; }
.services-v4 .header-top-inner p,
.services-v4 .header-top-inner a { margin: 0; }
.services-v4 .header-phone { display: grid; justify-items: end; margin-right: 3px; line-height: 1.05; }
.services-v4 .header-phone span { color: #999; font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; }
.services-v4 .header-phone strong { font-size: .92rem; }
.services-v4 .header-cta { padding-inline: 17px; border-radius: 2px; }
.services-v4 .section-pad { padding-block: clamp(72px, 8vw, 108px); }

@media (min-width: 1041px) {
  .services-v4 .site-header { position: sticky; inset: auto; top: 0; width: auto; display: block; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .services-v4 .site-header.scrolled { background: rgba(7,7,8,.98); }
  .services-v4 .site-header .container { width: min(1140px, 92vw); margin-inline: auto; }
  .services-v4 .header-top { display: block; }
  .services-v4 .nav-wrap { min-height: 78px; width: auto; padding: 0; flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
  .services-v4 .brand { margin-left: 0; flex-direction: row; justify-content: flex-start; gap: 9px; text-align: left; font-size: 1.18rem; }
  .services-v4 .brand-logo { width: 67px; height: 67px; margin: 0; }
  .services-v4 .main-nav { flex-direction: row; gap: 18px; border: 0; }
  .services-v4 .main-nav a { padding: 8px 0; border: 0; font-size: .88rem; text-align: left; text-transform: none; letter-spacing: 0; }
  .services-v4 .main-nav a::after { display: block; }
  .services-v4 .main-nav a:hover,
  .services-v4 .main-nav a.active { background: transparent; }
  .services-v4 .header-cta-group { width: auto; margin: 0; padding: 0; flex-direction: row; align-items: center; gap: 9px; }
  .services-v4 .header-cta { display: inline-flex; width: auto; min-height: 0; margin: 0; }
}

.sv4-hero {
  position: relative;
  isolation: isolate;
  min-height: 655px;
  overflow: hidden;
  color: #fff;
  background: #09090a;
}

.sv4-hero-bg,
.sv4-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.sv4-hero-bg { z-index: -3; object-fit: cover; object-position: center 47%; filter: saturate(.72) contrast(1.06); transform: scale(1.015); }
.sv4-hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(5,5,6,.985) 0%, rgba(5,5,6,.92) 39%, rgba(5,5,6,.55) 66%, rgba(5,5,6,.48)), linear-gradient(0deg, rgba(5,5,6,.93) 0%, transparent 46%), linear-gradient(120deg, rgba(151,6,27,.12), transparent 40%); }
.sv4-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 70%); pointer-events: none; }
.sv4-hero::after { content: "SERVICES"; position: absolute; z-index: -1; right: -1vw; bottom: -36px; color: rgba(255,255,255,.032); font: 700 clamp(9rem, 19vw, 18rem)/.75 "Teko", sans-serif; letter-spacing: -.04em; pointer-events: none; }

.sv4-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(350px,.72fr); gap: clamp(45px, 7vw, 92px); align-items: center; min-height: 548px; padding: 48px 0 30px; }
.sv4-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 17px; color: #dddde0; font-size: .66rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.sv4-eyebrow span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(223,16,44,.58); color: #fff; font-size: .62rem; letter-spacing: 0; }
.sv4-hero h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(3.85rem, 6.2vw, 6rem); line-height: .84; letter-spacing: -.018em; }
.sv4-hero h1 em { color: #ea112f; font-style: normal; }
.sv4-hero-lead { max-width: 610px; margin: 0; color: #c4c4c7; font-size: .95rem; line-height: 1.63; }
.sv4-hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.services-v4 .btn { min-height: 50px; padding: 13px 19px; border-radius: 2px; font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; }
.services-v4 .btn-primary { background: var(--sv-red); }
.services-v4 .btn-primary:hover { background: #ef1433; transform: translateY(-2px); }
.services-v4 .btn-ghost { border-color: rgba(255,255,255,.27); background: rgba(8,8,9,.34); backdrop-filter: blur(8px); }
.sv4-hero-mini-proof { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 18px; color: #aaa9ad; font-size: .59rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sv4-hero-mini-proof b { margin-right: 5px; color: #ed1935; }

.sv4-hero-diagnostic { align-self: center; padding: 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(9,9,10,.42); backdrop-filter: blur(11px); box-shadow: 0 22px 48px rgba(0,0,0,.24); }
.sv4-diagnostic-head { display: flex; align-items: end; justify-content: space-between; gap: 15px; padding: 11px 10px 15px; }
.sv4-diagnostic-head p { margin: 0 0 3px; color: #e21833; font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.sv4-diagnostic-head h2 { margin: 0; color: #fff; font-size: 1.62rem; line-height: .95; }
.sv4-diagnostic-head > span { color: #77777c; font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.sv4-hero-diagnostic nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.sv4-hero-diagnostic nav a { position: relative; display: grid; grid-template-columns: 25px 1fr auto; grid-template-rows: auto auto; gap: 1px 8px; align-items: center; min-height: 76px; padding: 12px; border: 1px solid rgba(255,255,255,.11); color: #fff; background: rgba(255,255,255,.035); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.sv4-hero-diagnostic nav a span { grid-row: 1 / 3; align-self: start; color: #e11934; font: 600 .9rem "Teko", sans-serif; }
.sv4-hero-diagnostic nav a small { color: #77777c; font-size: .5rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sv4-hero-diagnostic nav a strong { font-size: .68rem; line-height: 1.25; }
.sv4-hero-diagnostic nav a b { grid-column: 3; grid-row: 1 / 3; color: #e31833; font-weight: 400; transition: transform .22s ease; }
.sv4-hero-diagnostic nav a:hover { border-color: rgba(226,24,51,.55); background: rgba(164,8,29,.18); transform: translateY(-2px); }
.sv4-hero-diagnostic nav a:hover b { transform: translateX(3px); }
.sv4-diagnostic-phone { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 6px; padding: 11px 13px; color: #fff; background: #a3081d; }
.sv4-diagnostic-phone > span { display: grid; }
.sv4-diagnostic-phone small { color: #efb9c1; font-size: .5rem; letter-spacing: .11em; text-transform: uppercase; }
.sv4-diagnostic-phone strong { font: 600 1.32rem/1 "Teko", sans-serif; }
.sv4-diagnostic-phone > b { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

.sv4-hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 72px; border-top: 1px solid rgba(255,255,255,.15); }
.sv4-hero-trust span { display: grid; place-content: center start; padding: 10px 25px; color: #8d8d92; font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }
.sv4-hero-trust span + span { border-left: 1px solid rgba(255,255,255,.13); }
.sv4-hero-trust b { color: #fff; font: 500 1.08rem "Teko", sans-serif; letter-spacing: .03em; }

.sv4-services { position: relative; overflow: hidden; color: #fff; background: radial-gradient(800px 480px at 100% 28%, rgba(146,6,27,.12), transparent 70%), #0c0c0e; }
.sv4-services.section-pad { padding-block: clamp(58px, 6vw, 82px); }
.sv4-services::before { content: "EXPERTISES"; position: absolute; top: 55px; right: -20px; color: rgba(255,255,255,.018); font: 700 clamp(9rem, 17vw, 17rem)/1 "Teko", sans-serif; letter-spacing: -.04em; pointer-events: none; }
.sv4-section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 55px; align-items: end; margin-bottom: 36px; }
.sv4-kicker { margin: 0 0 9px; color: #dc112c; font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.sv4-section-head h2,
.sv4-standard-copy h2,
.sv4-final h2 { margin: 0; font-size: clamp(3rem, 5vw, 4.7rem); line-height: .87; }
.sv4-section-head > p { max-width: 500px; margin: 0 0 4px; color: #97979c; font-size: .92rem; line-height: 1.68; }
.sv4-services-head { position: relative; z-index: 1; grid-template-columns: 1.08fr .72fr; gap: clamp(48px, 7vw, 95px); margin-bottom: 34px; }
.sv4-services-head .sv4-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.sv4-services-head .sv4-kicker span { display: inline-grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(220,17,44,.55); color: #fff; font: 700 .65rem "Barlow", sans-serif; letter-spacing: 0; }
.sv4-services-head h2 { line-height: .9; }
.sv4-services-head h2 em { color: #e41431; font-style: normal; }
.sv4-services-intro { padding: 2px 0 2px 23px; border-left: 1px solid rgba(255,255,255,.15); }
.sv4-services-intro > p { margin: 0; color: #9f9fa4; font-size: .88rem; line-height: 1.65; }
.sv4-services-intro nav { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.sv4-services-intro nav a { padding: 6px 10px; border: 1px solid rgba(255,255,255,.15); color: #d1d1d3; font-size: .55rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.sv4-services-intro nav a:hover { border-color: #c80b27; color: #fff; background: #a4081d; }

.sv4-service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; gap: 10px; }
.sv4-service-card { position: relative; isolation: isolate; display: flex; align-items: end; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #171719; transition: border-color .3s ease, transform .3s ease; }
.sv4-service-card[id] { scroll-margin-top: 125px; }
.sv4-service-card--feature { grid-column: span 2; grid-row: span 2; }
.sv4-service-card:nth-child(6), .sv4-service-card:nth-child(7) { grid-column: span 2; }
.sv4-service-card::before { content: ""; position: absolute; z-index: 1; inset: 0; border: 1px solid transparent; transition: inset .3s ease, border-color .3s ease; pointer-events: none; }
.sv4-service-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(5,5,6,.2), transparent 36%), linear-gradient(0deg, rgba(4,4,5,.97) 0%, rgba(4,4,5,.65) 48%, transparent 82%); }
.sv4-service-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.05); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.sv4-service-card > div { position: relative; z-index: 2; width: 100%; padding: 17px; }
.sv4-service-card--feature > div { padding: 26px; }
.sv4-card-kicker { display: block; margin-bottom: 4px; color: #e51a36; font-size: .52rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sv4-service-card h3 { margin: 0 0 4px; font: 600 clamp(1.35rem, 2vw, 1.85rem)/.95 "Teko", sans-serif; text-transform: uppercase; }
.sv4-service-card--feature h3 { font-size: clamp(2.55rem, 4.2vw, 4rem); }
.sv4-service-card p { max-width: 560px; margin: 0; color: #aaa9ad; font-size: .68rem; line-height: 1.42; }
.sv4-service-card--feature p { max-width: 520px; font-size: .8rem; line-height: 1.5; }
.sv4-card-detail { display: block; margin-top: 10px; color: rgba(255,255,255,.56); font-size: .58rem; letter-spacing: .055em; }
.sv4-card-index { position: absolute; z-index: 2; top: 13px; right: 14px; color: rgba(255,255,255,.78); font: 500 .95rem "Teko", sans-serif; }
.sv4-card-index small { color: rgba(255,255,255,.38); font-size: .58rem; }
.sv4-card-tag { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 4px 7px; color: #fff; background: rgba(151,7,27,.88); font-size: .48rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.sv4-card-link { display: inline-flex; align-items: center; gap: 10px; max-height: 0; margin-top: 0; overflow: hidden; color: #fff; font-size: .57rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; opacity: 0; transition: max-height .25s ease, margin .25s ease, opacity .25s ease; }
.sv4-card-link b { display: inline-grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(255,255,255,.3); color: #fff; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.sv4-service-card:hover, .sv4-service-card:focus-visible { border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
.sv4-service-card:hover::before, .sv4-service-card:focus-visible::before { inset: 6px; border-color: rgba(255,255,255,.3); }
.sv4-service-card:hover img, .sv4-service-card:focus-visible img { transform: scale(1.045); filter: saturate(.92) contrast(1.03); }
.sv4-service-card:hover .sv4-card-link, .sv4-service-card:focus-visible .sv4-card-link { max-height: 25px; margin-top: 9px; opacity: 1; }
.sv4-service-card:hover .sv4-card-link b, .sv4-service-card:focus-visible .sv4-card-link b { border-color: #d8102d; background: #d8102d; transform: translateX(2px); }

.sv4-more-services { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 45px; align-items: center; margin-top: 28px; padding: 22px 0; border-block: 1px solid rgba(255,255,255,.12); }
.sv4-more-services h2 { margin: 0; font-size: 2rem; }
.sv4-more-services > div > span { display: block; margin-top: 5px; color: #77777d; font-size: .65rem; }
.sv4-more-services nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
.sv4-more-services nav a { display: grid; grid-template-columns: 27px 1fr auto; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: #b7b7bb; font-size: .72rem; transition: color .2s ease, padding .2s ease; }
.sv4-more-services nav span { color: #d7102d; font: 500 .9rem "Teko", sans-serif; }
.sv4-more-services nav b { color: #d7102d; }
.sv4-more-services nav a:hover { padding-left: 4px; color: #fff; }
.sv4-services-help { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 20px; }
.sv4-services-help p { display: grid; gap: 2px; margin: 0; }
.sv4-services-help p b { color: #fff; font-size: .76rem; }
.sv4-services-help p span { color: #77777d; font-size: .66rem; }
.sv4-services-help > a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 22px; min-height: 46px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: .61rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.sv4-services-help > a span { color: #e41632; font-size: .9rem; }
.sv4-services-help > a:hover { border-color: #aa081f; background: #aa081f; transform: translateY(-2px); }
.sv4-services-help > a:hover span { color: #fff; }

.sv4-standard { color: #171719; background: var(--sv-cream); }
.sv4-standard-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 110px); align-items: center; }
.sv4-standard-copy > p:not(.sv4-kicker) { max-width: 500px; color: #615d58; line-height: 1.7; }
.sv4-text-link { display: inline-flex; gap: 13px; margin-top: 17px; padding-bottom: 6px; border-bottom: 1px solid #9e081c; color: #171719; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.sv4-text-link span { color: #ae091f; }
.sv4-standard-list { display: grid; }
.sv4-standard-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 23px 0; border-top: 1px solid #d2ccc3; }
.sv4-standard-list article:last-child { border-bottom: 1px solid #d2ccc3; }
.sv4-standard-list article > span { color: #a2091d; font: 600 1.15rem "Teko", sans-serif; }
.sv4-standard-list h3 { margin: 0 0 3px; font: 600 1.35rem "Teko", sans-serif; text-transform: uppercase; }
.sv4-standard-list p { margin: 0; color: #6f6963; font-size: .85rem; }

.sv4-process { color: #fff; background: #101012; }
.sv4-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sv4-process-grid article { min-height: 210px; padding: 26px 23px; border: 1px solid rgba(255,255,255,.12); border-right: 0; transition: background .25s ease, transform .25s ease; }
.sv4-process-grid article:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.sv4-process-grid article:hover { z-index: 1; background: #840617; transform: translateY(-5px); }
.sv4-process-grid article > span { display: block; margin-bottom: 38px; color: #db112c; font: 600 1rem "Teko", sans-serif; }
.sv4-process-grid article:hover > span { color: #fff; }
.sv4-process-grid h3 { margin: 0 0 7px; font: 600 1.35rem "Teko", sans-serif; text-transform: uppercase; }
.sv4-process-grid p { margin: 0; color: #8e8e93; font-size: .78rem; line-height: 1.55; }
.sv4-process-grid article:hover p { color: #e5cdd1; }

.sv4-emergency { color: #fff; background: linear-gradient(105deg, #750512, #aa081e); }
.sv4-emergency-grid { display: grid; grid-template-columns: 68px 1fr auto; gap: 25px; align-items: center; min-height: 190px; padding-block: 30px; }
.sv4-emergency-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.sv4-emergency-icon span { font: 600 2rem "Teko", sans-serif; }
.sv4-emergency-grid p { margin: 0 0 4px; color: #f2bdc4; font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.sv4-emergency-grid h2 { margin: 0 0 3px; font-size: clamp(2rem, 3.5vw, 3rem); }
.sv4-emergency-grid > div:nth-child(2) > span { color: #e9bbc1; font-size: .83rem; }
.sv4-emergency-actions { display: grid; min-width: 220px; }
.sv4-emergency-actions a { display: flex; justify-content: space-between; gap: 25px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.28); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sv4-emergency-actions a:first-child { color: #7e0615; background: #fff; }
.sv4-emergency-actions a + a { margin-top: 7px; }

.sv4-final { color: #fff; background: #0b0b0d; }
.sv4-final-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.sv4-final-grid p:last-child { margin-bottom: 0; color: #96969b; }
.sv4-final-grid > div:last-child { display: grid; gap: 14px; min-width: 255px; }
.sv4-final-primary { display: flex; justify-content: space-between; gap: 25px; padding: 15px 17px; color: #fff; background: #ad081e; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sv4-final-phone { display: grid; padding-left: 2px; }
.sv4-final-phone small { color: #77777c; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; }
.sv4-final-phone strong { font: 600 1.75rem "Teko", sans-serif; }

.sv4-footer { position: relative; color: #fff; border-top: 1px solid rgba(255,255,255,.1); background: #070708; }
.sv4-footer .container { width: min(1140px, 92vw); }
.sv4-footer-main { display: grid; grid-template-columns: 1fr auto auto; gap: 55px; align-items: center; min-height: 112px; }
.sv4-footer-brand { display: flex; align-items: center; gap: 12px; }
.sv4-footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.sv4-footer-brand > span { display: grid; }
.sv4-footer-brand strong { font: 600 1.65rem "Teko", sans-serif; text-transform: uppercase; }
.sv4-footer-brand small { color: #77777c; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.sv4-footer-main nav { display: flex; gap: 20px; }
.sv4-footer-main nav a { color: #909095; font-size: .7rem; }
.sv4-footer-main nav a:hover { color: #fff; }
.sv4-footer-phone { display: grid; padding-left: 25px; border-left: 1px solid rgba(255,255,255,.12); }
.sv4-footer-phone small { color: #25bd61; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.sv4-footer-phone strong { font: 600 1.45rem "Teko", sans-serif; }
.sv4-footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 26px; align-items: center; min-height: 58px; border-top: 1px solid rgba(255,255,255,.08); }
.sv4-footer-bottom p { margin: 0; color: #68686e; font-size: .63rem; }
.sv4-footer-bottom > div { display: flex; gap: 15px; }
.sv4-footer-bottom > div a { color: #77777c; font-size: .61rem; }
.sv4-studio { padding: 7px 10px; border: 1px solid rgba(213,12,41,.42); background: rgba(213,12,41,.08); }
.sv4-studio a { margin-left: 4px; color: #fff; font-weight: 800; text-transform: uppercase; }

@media (max-width: 1000px) {
  .services-v4 .header-phone { display: none; }
  .sv4-hero-grid { grid-template-columns: 1fr minmax(330px,.78fr); gap: 35px; }
  .sv4-hero h1 { font-size: clamp(3.6rem, 7vw, 5.15rem); }
  .sv4-hero-diagnostic nav { grid-template-columns: 1fr; }
  .sv4-hero-diagnostic nav a { min-height: 59px; }
  .sv4-service-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 195px; }
  .sv4-service-card--feature { grid-column: span 2; grid-row: auto; min-height: 315px; }
  .sv4-service-card:nth-child(6), .sv4-service-card:nth-child(7) { grid-column: auto; }
  .sv4-card-link { max-height: 25px; margin-top: 8px; opacity: 1; }
  .sv4-standard-grid { gap: 55px; }
  .sv4-process-grid { grid-template-columns: repeat(2, 1fr); }
  .sv4-process-grid article:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .sv4-process-grid article:nth-child(n+3) { border-top: 0; }
  .sv4-footer-main { grid-template-columns: 1fr auto; }
  .sv4-footer-main nav { grid-column: 1 / -1; grid-row: 2; padding-bottom: 20px; }
}

@media (max-width: 760px) {
  .services-v4 { padding-bottom: 67px; }
  .services-v4 .nav-wrap { flex-direction: row; align-items: center; padding: 0; }
  .services-v4 .brand { margin-left: 0; font-size: 1.12rem; }
  .services-v4 .brand-logo { width: 58px; height: 58px; }
  .services-v4 .menu-btn { display: inline-block; flex: 0 0 48px; margin-left: auto; }
  .services-v4 .header-cta-group { display: none; }
  .sv4-hero { min-height: auto; }
  .sv4-hero-bg { object-position: 61% center; }
  .sv4-hero-overlay { background: linear-gradient(90deg, rgba(5,5,6,.96), rgba(5,5,6,.64)), linear-gradient(0deg, #080809 0%, transparent 54%); }
  .sv4-hero::after { right: -8px; bottom: 0; font-size: 8rem; }
  .sv4-hero-grid { grid-template-columns: 1fr; gap: 27px; min-height: 0; padding: 46px 0 27px; }
  .sv4-hero h1 { max-width: 620px; font-size: clamp(3.2rem, 13.5vw, 4.45rem); }
  .sv4-hero-lead { max-width: 580px; font-size: .89rem; }
  .sv4-hero-actions { margin-top: 20px; }
  .sv4-hero-diagnostic { padding: 9px; }
  .sv4-diagnostic-head { padding: 9px 9px 13px; }
  .sv4-hero-diagnostic nav { grid-template-columns: repeat(2, 1fr); }
  .sv4-hero-diagnostic nav a { min-height: 67px; }
  .sv4-hero-trust { grid-template-columns: repeat(2, 1fr); }
  .sv4-hero-trust span { min-height: 61px; padding: 9px 14px; }
  .sv4-hero-trust span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .sv4-hero-trust span:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .sv4-section-head { grid-template-columns: 1fr; gap: 13px; margin-bottom: 27px; }
  .sv4-section-head h2, .sv4-standard-copy h2, .sv4-final h2 { font-size: clamp(2.75rem, 12vw, 3.7rem); }
  .sv4-services::before { top: 85px; font-size: 7.5rem; }
  .sv4-services-head { gap: 24px; margin-bottom: 28px; }
  .sv4-services-intro { padding: 0; border-left: 0; }
  .sv4-service-grid { grid-template-columns: 1fr; grid-auto-rows: 255px; }
  .sv4-service-card--feature, .sv4-service-card--wide, .sv4-service-card:nth-child(6), .sv4-service-card:nth-child(7) { grid-column: auto; min-height: 325px; }
  .sv4-service-card--feature > div { padding: 21px; }
  .sv4-service-card--feature h3 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .sv4-more-services { grid-template-columns: 1fr; gap: 17px; margin-top: 24px; padding-block: 19px; }
  .sv4-more-services nav { grid-template-columns: 1fr; }
  .sv4-services-help { align-items: stretch; flex-direction: column; gap: 16px; }
  .sv4-services-help > a { justify-content: space-between; width: 100%; }
  .sv4-standard-grid { grid-template-columns: 1fr; gap: 42px; }
  .sv4-process-grid { grid-template-columns: 1fr; }
  .sv4-process-grid article { min-height: 170px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .sv4-process-grid article:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,.12); }
  .sv4-process-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
  .sv4-process-grid article > span { margin-bottom: 18px; }
  .sv4-emergency-grid { grid-template-columns: 48px 1fr; gap: 16px; padding-block: 28px; }
  .sv4-emergency-icon { width: 46px; height: 46px; }
  .sv4-emergency-actions { grid-column: 1 / -1; min-width: 0; }
  .sv4-final-grid { grid-template-columns: 1fr; gap: 31px; }
  .sv4-footer-main { grid-template-columns: 1fr; gap: 18px; padding-block: 26px; }
  .sv4-footer-main nav { grid-column: auto; grid-row: auto; flex-wrap: wrap; padding: 0; }
  .sv4-footer-phone { padding: 0; border: 0; }
  .sv4-footer-bottom { grid-template-columns: 1fr; gap: 11px; padding-block: 17px; }
}

@media (max-width: 480px) {
  .sv4-hero-actions { display: grid; }
  .sv4-hero-actions .btn { width: 100%; }
  .sv4-hero-mini-proof { gap: 8px 12px; }
  .sv4-diagnostic-head > span { display: none; }
  .sv4-hero-diagnostic nav { grid-template-columns: 1fr; }
  .sv4-hero-diagnostic nav a { min-height: 57px; }
  .sv4-diagnostic-phone > b { display: none; }
}

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

/* ========================================================================== 
   REALISATIONS V4 — photo-led project portfolio
   ========================================================================== */
.real-v4 { background: #0b0b0d; }
.real-v4 .section-pad { padding-block: clamp(72px, 8vw, 108px); }

.rv4-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(760px 450px at 75% 34%, rgba(151,7,27,.13), transparent 65%), #09090b; }
.rv4-hero::before { content: "RÉALISATIONS"; position: absolute; left: 50%; bottom: 0; color: rgba(255,255,255,.018); font: 700 clamp(9rem, 20vw, 18rem)/.65 "Teko", sans-serif; white-space: nowrap; transform: translateX(-50%); pointer-events: none; }
.rv4-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(55px, 8vw, 100px); align-items: center; min-height: 690px; padding: 66px 0; }
.rv4-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 19px; color: #d1d1d4; font-size: .69rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.rv4-eyebrow span { width: 35px; height: 2px; background: #d8102c; }
.rv4-hero h1 { margin: 0 0 21px; font-size: clamp(4.5rem, 7.5vw, 7.2rem); line-height: .79; letter-spacing: -.02em; }
.rv4-hero h1 em { color: #e71230; font-style: normal; }
.rv4-hero-lead { max-width: 560px; margin: 0; color: #aaaab0; font-size: .98rem; line-height: 1.7; }
.rv4-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.rv4-primary, .rv4-secondary { display: flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 49px; padding: 12px 17px; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.rv4-primary { min-width: 190px; color: #fff; background: #b00820; }
.rv4-primary:hover { background: #db102d; transform: translateY(-2px); }
.rv4-secondary { border: 1px solid rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.025); }
.rv4-secondary:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.rv4-hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 27px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.11); }
.rv4-hero-proof span { display: grid; color: #737379; font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
.rv4-hero-proof strong { color: #fff; font: 500 1.2rem "Teko", sans-serif; }

.rv4-hero-mosaic { position: relative; min-width: 0; min-height: 555px; }
.rv4-hero-mosaic figure { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: #18181a; }
.rv4-hero-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.rv4-hero-mosaic figure:hover img { transform: scale(1.035); }
.rv4-hero-main { position: absolute; inset: 0 22% 0 0; }
.rv4-hero-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,4,5,.87), transparent 46%); }
.rv4-hero-main figcaption { position: absolute; z-index: 2; left: 24px; bottom: 22px; display: grid; }
.rv4-hero-main figcaption small { color: #e51430; font-size: .59rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rv4-hero-main figcaption strong { font: 600 1.65rem "Teko", sans-serif; text-transform: uppercase; }
.rv4-hero-small { position: absolute; z-index: 3; right: 0; width: 31%; height: 38%; box-shadow: 0 18px 40px rgba(0,0,0,.38); }
.rv4-hero-small--one { top: 7%; }
.rv4-hero-small--two { bottom: 7%; }
.rv4-hero-small figcaption { position: absolute; left: 8px; bottom: 8px; padding: 4px 7px; color: #fff; background: rgba(8,8,9,.82); font-size: .53rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rv4-hero-number { position: absolute; z-index: 4; right: 27%; top: 12px; color: #e01431; font: 600 1.25rem "Teko", sans-serif; }

.rv4-gallery { color: #fff; background: #0d0d0f; }
.rv4-section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 55px; align-items: end; margin-bottom: 30px; }
.rv4-kicker { margin: 0 0 9px; color: #db102c; font-size: .67rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.rv4-section-head h2, .rv4-detail-copy h2, .rv4-final h2 { margin: 0; font-size: clamp(3rem, 5vw, 4.7rem); line-height: .87; }
.rv4-section-head > p { max-width: 500px; margin: 0 0 4px; color: #919197; font-size: .9rem; line-height: 1.7; }

.rv4-filter-bar { display: flex; gap: 7px; margin-bottom: 17px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.rv4-filter-bar button { min-height: 34px; padding: 7px 13px; border: 1px solid rgba(255,255,255,.14); color: #8d8d92; background: transparent; font: 700 .61rem "Barlow", sans-serif; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.rv4-filter-bar button:hover, .rv4-filter-bar button.is-active { color: #fff; border-color: #b50922; background: #a6081e; }

.rv4-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 12px; }
.rv4-project { min-width: 0; border: 1px solid rgba(255,255,255,.1); background: #141416; transition: opacity .25s ease, transform .25s ease; }
.rv4-project.is-filtered-out { display: none; }
.rv4-project--large { grid-row: span 2; }
.rv4-project--wide { grid-column: span 2; display: grid; grid-template-columns: 1.12fr .88fr; }
.rv4-project figure { height: 245px; margin: 0; overflow: hidden; background: #1a1a1d; }
.rv4-project--large figure { height: 500px; }
.rv4-project--wide figure { height: 100%; min-height: 295px; }
.rv4-project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .6s ease, filter .35s ease; }
.rv4-project:hover img { transform: scale(1.04); filter: saturate(1); }
.rv4-project-copy { padding: 18px 19px 20px; }
.rv4-project-copy > span { color: #d9122e; font-size: .55rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rv4-project-copy h3 { margin: 7px 0 7px; font: 600 1.55rem/.95 "Teko", sans-serif; text-transform: uppercase; }
.rv4-project-copy p { margin: 0; color: #85858b; font-size: .77rem; line-height: 1.55; }
.rv4-project-copy a { display: inline-block; margin-top: 14px; color: #d8d8da; font-size: .59rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rv4-project-copy a:hover { color: #ed1734; }

.rv4-before-after { color: #171719; background: #eee9e2; }
.rv4-before-after .rv4-section-head > p { color: #6d6862; }
.rv4-ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.rv4-ba-card { min-width: 0; padding: 18px; border: 1px solid #d0c9c0; background: #f8f5ef; }
.rv4-ba-title { display: grid; grid-template-columns: 36px 1fr; gap: 11px; align-items: center; margin-bottom: 14px; }
.rv4-ba-title > span { color: #a6091e; font: 600 1.15rem "Teko", sans-serif; }
.rv4-ba-title div { display: grid; }
.rv4-ba-title small { color: #9d071a; font-size: .54rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rv4-ba-title h3 { margin: 0; font: 600 1.35rem "Teko", sans-serif; text-transform: uppercase; }
.rv4-ba-card .before-after-stage { min-height: 390px; aspect-ratio: 4 / 3; border-radius: 0; }
.rv4-ba-card .ba-layer img { object-fit: cover; }
.rv4-ba-card:nth-child(2) .ba-layer img { object-position: center; }

.rv4-detail { color: #fff; background: #101012; }
.rv4-detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 95px); align-items: center; }
.rv4-detail-image { position: relative; min-height: 510px; }
.rv4-detail-image::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(218,16,44,.38); }
.rv4-detail-image img { position: relative; z-index: 1; width: 100%; height: 510px; object-fit: cover; }
.rv4-detail-image > span { position: absolute; z-index: 2; left: -18px; bottom: 26px; padding: 10px 14px; color: #fff; background: #aa081e; font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.rv4-detail-copy > p:not(.rv4-kicker) { max-width: 540px; color: #96969b; line-height: 1.7; }
.rv4-detail-copy ul { display: grid; margin: 23px 0 0; padding: 0; list-style: none; }
.rv4-detail-copy li { display: grid; grid-template-columns: 43px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.11); }
.rv4-detail-copy li > span { color: #db112d; font: 600 1rem "Teko", sans-serif; }
.rv4-detail-copy strong { font-size: .86rem; }
.rv4-detail-copy li p { margin: 3px 0 0; color: #77777d; font-size: .77rem; }

.rv4-proof { color: #fff; border-block: 1px solid rgba(255,255,255,.1); background: #0a0a0c; }
.rv4-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.rv4-proof-grid article { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 105px; padding: 18px; }
.rv4-proof-grid article + article { border-left: 1px solid rgba(255,255,255,.1); }
.rv4-proof-grid strong { font: 600 2.15rem "Teko", sans-serif; }
.rv4-proof-grid span { max-width: 85px; color: #75757a; font-size: .57rem; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }

.rv4-final { color: #fff; background: linear-gradient(115deg, #760512, #ac081f); }
.rv4-final-grid { display: grid; grid-template-columns: 1fr auto; gap: 65px; align-items: center; }
.rv4-final .rv4-kicker { color: #f0b9c1; }
.rv4-final-grid > div:first-child > p:last-child { margin-bottom: 0; color: #e3b3ba; }
.rv4-final-grid > div:last-child { display: grid; gap: 13px; min-width: 255px; }
.rv4-final-primary { display: flex; justify-content: space-between; gap: 25px; padding: 14px 16px; color: #860617; background: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rv4-final-phone { display: grid; }
.rv4-final-phone small { color: #edbac1; font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
.rv4-final-phone strong { font: 600 1.65rem "Teko", sans-serif; }

@media (max-width: 1000px) {
  .rv4-hero-grid { grid-template-columns: .85fr 1.15fr; gap: 40px; }
  .rv4-project-grid { grid-template-columns: repeat(2, 1fr); }
  .rv4-project--large { grid-row: span 1; }
  .rv4-project--large figure { height: 245px; }
  .rv4-project--wide { grid-column: span 2; }
  .rv4-ba-card .before-after-stage { min-height: 310px; }
}

@media (max-width: 760px) {
  .real-v4 .section-pad { padding-block: 62px; }
  .rv4-hero-grid { grid-template-columns: 1fr; min-height: 0; padding: 57px 0 62px; }
  .rv4-hero h1 { font-size: clamp(3.9rem, 17vw, 5.2rem); }
  .rv4-hero-mosaic { min-height: 430px; }
  .rv4-hero-main { right: 16%; }
  .rv4-hero-small { width: 30%; height: 34%; }
  .rv4-section-head { grid-template-columns: 1fr; gap: 13px; margin-bottom: 25px; }
  .rv4-section-head h2, .rv4-detail-copy h2, .rv4-final h2 { font-size: clamp(2.75rem, 12vw, 3.65rem); }
  .rv4-filter-bar { overflow-x: auto; scrollbar-width: none; }
  .rv4-filter-bar button { flex: 0 0 auto; }
  .rv4-project-grid { grid-template-columns: 1fr; }
  .rv4-project--wide { grid-column: auto; display: block; }
  .rv4-project--wide figure { min-height: 0; height: 245px; }
  .rv4-ba-grid { grid-template-columns: 1fr; }
  .rv4-ba-card .before-after-stage { min-height: 285px; }
  .rv4-detail-grid { grid-template-columns: 1fr; gap: 49px; }
  .rv4-detail-image, .rv4-detail-image img { min-height: 390px; height: 390px; }
  .rv4-detail-image::before { inset: 12px -8px -12px 12px; }
  .rv4-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .rv4-proof-grid article { min-height: 88px; justify-content: flex-start; padding: 14px 6vw; }
  .rv4-proof-grid article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .rv4-proof-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .rv4-final-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 430px) {
  .rv4-hero-mosaic { min-height: 365px; }
  .rv4-ba-card { padding: 12px; }
  .rv4-ba-card .before-after-stage { min-height: 245px; }
}

/* ========================================================================== 
   ABOUT V4 — trust, craft and local presence
   ========================================================================== */
.about-v4 { background: #0b0b0d; }
.about-v4 .section-pad { padding-block: clamp(68px, 7.5vw, 102px); }

.av4-hero {
  --av4-red: #d7192d;
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100svh - 104px));
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 78% 25%, rgba(164,8,29,.16), transparent 29%), #0b0b0d;
}
.av4-hero::before { content: "CHRIS & TOIT"; position: absolute; z-index: -1; left: -12px; top: 53%; color: rgba(255,255,255,.025); font: 700 clamp(8rem, 15vw, 13rem)/.75 "Teko", sans-serif; letter-spacing: -.035em; white-space: nowrap; transform: translateY(-50%) rotate(-90deg) translateY(-47%); transform-origin: left center; }
.av4-hero::after { content: ""; position: absolute; z-index: -1; right: 0; top: 0; width: 34%; height: 4px; background: var(--av4-red); }
.av4-hero-grid-pattern { position: absolute; z-index: -2; inset: 0; opacity: .26; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, #000, transparent 58%); }
.av4-hero-layout { display: grid; grid-template-columns: minmax(0,.96fr) minmax(430px,1.04fr); gap: clamp(42px, 5vw, 72px); align-items: center; min-height: 625px; padding-block: clamp(50px, 6vh, 70px) 40px; }
.av4-hero-content { position: relative; z-index: 2; min-width: 0; padding-left: clamp(0px, 1.5vw, 22px); }
.av4-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: #c7c7ca; font-size: .68rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.av4-eyebrow span { width: 34px; height: 2px; background: var(--av4-red); }
.av4-hero h1 { max-width: 700px; margin: 0 0 25px; font-size: clamp(3.8rem, 5vw, 5.2rem); line-height: .81; letter-spacing: -.022em; text-transform: uppercase; }
.av4-hero h1 > span, .av4-hero h1 > em { display: block; white-space: nowrap; }
.av4-hero h1 em { color: var(--av4-red); font-style: normal; }
.av4-hero-lead { max-width: 585px; margin: 0; color: #aaa9ae; font-size: clamp(.96rem, 1.25vw, 1.08rem); line-height: 1.68; }
.av4-hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.av4-hero-actions a { display: flex; align-items: center; justify-content: space-between; gap: 26px; min-height: 55px; padding: 13px 17px 13px 19px; color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.av4-hero-actions a b { font-size: 1.05rem; font-weight: 500; transition: transform .22s ease; }
.av4-hero-actions .av4-hero-primary { min-width: 204px; background: var(--av4-red); }
.av4-hero-actions .av4-hero-secondary { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.025); }
.av4-hero-actions a:hover { transform: translateY(-3px); }
.av4-hero-actions .av4-hero-primary:hover { background: #ef1c34; }
.av4-hero-actions .av4-hero-secondary:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.av4-hero-actions a:hover b { transform: translateX(3px); }
.av4-hero-reassurance { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 19px; color: #7f7f84; font-size: .63rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.av4-hero-reassurance span { display: flex; align-items: center; gap: 7px; }
.av4-hero-reassurance i { color: var(--av4-red); font-style: normal; }
.av4-hero-visual { position: relative; align-self: stretch; min-height: 505px; margin: 0; padding: 20px 18px 24px 0; }
.av4-hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 0 0 0 34px; border: 1px solid rgba(215,25,45,.55); }
.av4-hero-visual::after { content: ""; position: absolute; z-index: 3; right: 0; top: 0; width: 92px; height: 92px; border-top: 3px solid var(--av4-red); border-right: 3px solid var(--av4-red); pointer-events: none; }
.av4-hero-photo { position: absolute; inset: 20px 18px 24px 0; overflow: hidden; background: #17171a; box-shadow: 0 34px 80px rgba(0,0,0,.38); }
.av4-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,8,.14), transparent 44%), linear-gradient(0deg, rgba(4,4,5,.78), transparent 33%); }
.av4-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.85) contrast(1.04); transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.av4-hero-visual:hover .av4-hero-photo img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.av4-hero-visual figcaption { position: absolute; z-index: 4; left: 23px; bottom: 45px; display: grid; padding-left: 13px; border-left: 3px solid var(--av4-red); text-transform: uppercase; }
.av4-hero-visual figcaption span { color: #d5d3d3; font-size: .56rem; font-weight: 800; letter-spacing: .16em; }
.av4-hero-visual figcaption strong { margin-top: 2px; font: 600 1.38rem/1 "Teko", sans-serif; letter-spacing: .025em; }
.av4-hero-experience { position: absolute; z-index: 5; right: -1px; bottom: 0; display: flex; align-items: center; gap: 10px; min-width: 157px; padding: 13px 17px; color: #fff; background: var(--av4-red); box-shadow: 0 16px 35px rgba(91,3,17,.35); text-transform: uppercase; }
.av4-hero-experience strong { font: 600 3.3rem/.75 "Teko", sans-serif; }
.av4-hero-experience span { font-size: .56rem; font-weight: 800; line-height: 1.25; letter-spacing: .09em; }
.av4-hero-strip { display: grid; grid-template-columns: repeat(3,1fr) minmax(220px,.9fr); min-height: 112px; padding-inline: 0; border-top: 1px solid rgba(255,255,255,.12); }
.av4-hero-strip > span, .av4-hero-strip > a { display: grid; align-content: center; padding: 19px clamp(18px,2.2vw,31px); color: #77777d; font-size: .57rem; line-height: 1.4; letter-spacing: .085em; text-transform: uppercase; }
.av4-hero-strip > span:first-child { padding-left: clamp(0px,1.5vw,22px); }
.av4-hero-strip > * + * { border-left: 1px solid rgba(255,255,255,.1); }
.av4-hero-strip strong { color: #fff; font: 500 1.72rem/1 "Teko", sans-serif; letter-spacing: 0; }
.av4-hero-strip sup { color: var(--av4-red); font-size: .56em; vertical-align: super; }
.av4-hero-strip > a { color: #fff; background: #151517; transition: background .25s ease; }
.av4-hero-strip > a:hover { background: #a5081d; }
.av4-hero-strip > a small { margin-bottom: 4px; color: #86868b; font-size: .55rem; font-weight: 700; letter-spacing: .1em; }
.av4-hero-strip > a:hover small { color: #f2c6cc; }

.av4-intro { color: #171719; background: #f0ece5; }
.av4-intro-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 9vw, 115px); align-items: start; }
.av4-intro-grid::before { content: "01"; position: absolute; right: 0; top: -50px; color: rgba(23,23,25,.055); font: 600 7.5rem/1 "Teko", sans-serif; }
.av4-kicker { margin: 0 0 10px; color: #aa091e; font-size: .67rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.av4-intro-heading h2, .av4-section-head h2, .av4-method-copy h2, .av4-local-copy h2, .av4-final h2 { margin: 0; font-size: clamp(3rem, 5vw, 4.75rem); line-height: .87; }
.av4-intro-heading h2 em { color: #a8081e; font-style: normal; }
.av4-intro-copy { padding-top: 23px; }
.av4-intro-copy > p { color: #66615b; line-height: 1.72; }
.av4-intro-copy .av4-intro-lead { margin-top: 0; color: #252325; font-size: 1.12rem; font-weight: 600; }
.av4-signature { display: flex; align-items: center; gap: 15px; margin-top: 27px; padding-top: 21px; border-top: 1px solid #d1cac1; }
.av4-signature span { width: 37px; height: 2px; background: #aa091e; }
.av4-signature strong { font-size: .78rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .07em; }

.av4-proof-photo { color: #fff; background: #0d0d0f; }
.av4-proof-photo-grid { display: grid; grid-template-columns: 1.42fr .58fr; min-height: 560px; }
.av4-proof-photo figure { margin: 0; overflow: hidden; }
.av4-proof-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.av4-proof-photo figure:hover img { transform: scale(1.025); filter: saturate(1.07); }
.av4-proof-main { position: relative; min-height: 560px; }
.av4-proof-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,6,.75), transparent 43%); }
.av4-proof-main figcaption { position: absolute; z-index: 2; left: 24px; bottom: 21px; padding-left: 12px; border-left: 3px solid #d7102c; font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.av4-proof-side { display: grid; grid-template-rows: 1fr auto; border-left: 1px solid rgba(255,255,255,.1); }
.av4-proof-side figure { min-height: 295px; }
.av4-proof-side > div { padding: 29px 27px 31px; background: #121214; }
.av4-proof-side > div > span { color: #d9122e; font-size: .57rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.av4-proof-side strong { display: block; margin-top: 6px; font: 600 1.75rem "Teko", sans-serif; text-transform: uppercase; }
.av4-proof-side p { margin: 5px 0 0; color: #85858b; font-size: .78rem; line-height: 1.55; }

.av4-values { position: relative; overflow: hidden; color: #fff; background: radial-gradient(680px 370px at 8% 100%, rgba(169,7,29,.12), transparent 65%), #101012; }
.av4-values::after { content: "EXIGENCE"; position: absolute; right: -12px; bottom: -44px; color: rgba(255,255,255,.018); font: 700 clamp(8rem,18vw,16rem)/1 "Teko",sans-serif; pointer-events: none; }
.av4-section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: end; margin-bottom: 32px; }
.av4-section-head > p { max-width: 470px; margin: 0 0 4px; color: #8c8c92; line-height: 1.65; }
.av4-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.av4-values-grid { position: relative; z-index: 1; }
.av4-values-grid article { position: relative; min-height: 295px; padding: 28px 27px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-right: 0; background: rgba(255,255,255,.015); transition: background .25s ease, transform .25s ease; }
.av4-values-grid article::after { content: attr(data-index); position: absolute; right: -4px; bottom: -26px; color: rgba(255,255,255,.035); font: 600 8rem/1 "Teko",sans-serif; pointer-events: none; }
.av4-values-grid article:last-child { border-right: 1px solid rgba(255,255,255,.11); }
.av4-values-grid article:hover { z-index: 1; background: #810617; transform: translateY(-5px); }
.av4-values-grid article > span { position: absolute; right: 18px; top: 15px; color: #d5112c; font: 500 1rem "Teko", sans-serif; }
.av4-values-grid article:hover > span { color: #fff; }
.av4-value-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 47px; border: 1px solid rgba(216,16,44,.6); border-radius: 50%; color: #e51531; font-size: 1.1rem; }
.av4-values-grid article:hover .av4-value-icon { border-color: #fff; color: #fff; }
.av4-values-grid h3 { margin: 0 0 8px; font: 600 1.55rem "Teko", sans-serif; text-transform: uppercase; }
.av4-values-grid p { margin: 0; color: #838389; font-size: .8rem; line-height: 1.6; }
.av4-values-grid article:hover p { color: #e4cbd0; }

.av4-method { color: #171719; background: #efebe4; }
.av4-method-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.av4-method-copy { position: sticky; top: 130px; }
.av4-method-copy > p:not(.av4-kicker) { max-width: 420px; color: #68625c; line-height: 1.7; }
.av4-method-copy > a { display: inline-flex; gap: 13px; margin-top: 15px; padding-bottom: 6px; border-bottom: 1px solid #9d081c; font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.av4-method-copy > a span { color: #aa091e; }
.av4-method-list { display: grid; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.av4-method-list li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 22px 12px 22px 0; border-top: 1px solid #cec7be; transition: padding-left .25s ease, background .25s ease; }
.av4-method-list li:hover { padding-left: 14px; background: rgba(160,9,29,.045); }
.av4-method-list li:last-child { border-bottom: 1px solid #cec7be; }
.av4-method-list li > span { color: #a6091e; font: 600 1.2rem "Teko", sans-serif; }
.av4-method-list small { color: #a0091d; font-size: .55rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.av4-method-list h3 { margin: 3px 0 5px; font: 600 1.5rem "Teko", sans-serif; text-transform: uppercase; }
.av4-method-list p { margin: 0; color: #716b64; font-size: .82rem; }

.av4-guarantees { color: #fff; border-block: 1px solid rgba(255,255,255,.1); background: #09090b; }
.av4-guarantees-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.av4-guarantees-grid > div { display: flex; align-items: center; gap: 17px; min-height: 115px; padding: 20px 25px; }
.av4-guarantees-grid > div + div { border-left: 1px solid rgba(255,255,255,.1); }
.av4-guarantee-mark { color: #df122e; font: 600 2.7rem "Teko", sans-serif; }
.av4-guarantees-grid p { display: grid; margin: 0; }
.av4-guarantees-grid strong { font-size: .82rem; }
.av4-guarantees-grid small { margin-top: 3px; color: #77777d; font-size: .66rem; }

.av4-local { color: #fff; background: radial-gradient(650px 330px at 82% 55%, rgba(169,7,29,.16), transparent 65%), #101012; }
.av4-local-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(55px, 9vw, 115px); align-items: center; }
.av4-local-copy > p:not(.av4-kicker) { max-width: 610px; color: #929298; line-height: 1.7; }
.av4-local-copy > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.av4-local-copy > div span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.1); color: #838389; font-size: .6rem; }
.av4-local-card { position: relative; padding: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(7,7,8,.63); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.av4-local-card::after { content: "31"; position: absolute; right: -3px; top: -22px; color: rgba(255,255,255,.035); font: 600 8.5rem/1 "Teko",sans-serif; pointer-events: none; }
.av4-local-dot { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 23px; border-radius: 50%; background: rgba(38,190,96,.1); }
.av4-local-dot i { width: 9px; height: 9px; border-radius: 50%; background: #2ac365; box-shadow: 0 0 0 6px rgba(42,195,101,.1); }
.av4-local-card > p { margin: 0 0 18px; font: 600 1.65rem/1 "Teko", sans-serif; text-transform: uppercase; }
.av4-local-card > a { display: grid; }
.av4-local-card > a small { color: #707076; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.av4-local-card > a strong { font: 600 1.65rem "Teko", sans-serif; }
.av4-local-card > a:last-child { display: flex; justify-content: space-between; gap: 20px; margin-top: 19px; padding: 12px 14px; color: #fff; background: #a5081d; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.av4-final { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg, #69040f, #b40921); }
.av4-final::before { content: ""; position: absolute; right: -120px; top: -220px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.av4-final-grid { position: relative; z-index: 1; }
.av4-final-grid { display: grid; grid-template-columns: 1fr auto; gap: 65px; align-items: center; }
.av4-final .av4-kicker { color: #f2bbc3; }
.av4-final-grid > div:first-child > p:last-child { margin-bottom: 0; color: #e4b4ba; }
.av4-final-grid > div:last-child { display: grid; gap: 13px; min-width: 255px; }
.av4-final-primary { display: flex; justify-content: space-between; gap: 25px; padding: 14px 16px; color: #820616; background: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.av4-final-phone { display: grid; }
.av4-final-phone small { color: #efbac2; font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
.av4-final-phone strong { font: 600 1.65rem "Teko", sans-serif; }

@media (max-width: 900px) {
  .av4-hero-layout { grid-template-columns: minmax(0,.95fr) minmax(370px,1.05fr); gap: 36px; }
  .av4-hero h1 { font-size: clamp(3.35rem, 6.2vw, 4.3rem); }
  .av4-proof-photo-grid { grid-template-columns: 1fr .7fr; }
  .av4-method-grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
}

@media (max-width: 760px) {
  .about-v4 .section-pad { padding-block: 59px; }
  .av4-hero { min-height: auto; }
  .av4-hero::before { display: none; }
  .av4-hero::after { width: 54%; }
  .av4-hero-grid-pattern { mask-image: linear-gradient(#000, transparent 70%); }
  .av4-hero-layout { grid-template-columns: 1fr; gap: 42px; min-height: 0; padding-block: 67px 35px; }
  .av4-hero-content { padding-left: 0; }
  .av4-hero h1 { font-size: clamp(3.65rem, 15.7vw, 5rem); }
  .av4-hero h1 > span, .av4-hero h1 > em { white-space: normal; }
  .av4-hero-lead { max-width: 620px; }
  .av4-hero-visual { min-height: 430px; padding-right: 10px; }
  .av4-hero-photo { right: 10px; }
  .av4-hero-strip { grid-template-columns: repeat(2,1fr); }
  .av4-hero-strip > span, .av4-hero-strip > a { min-height: 92px; padding: 15px 17px; }
  .av4-hero-strip > span:first-child { padding-left: 17px; }
  .av4-hero-strip > :nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .av4-hero-strip > :nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .av4-intro-grid, .av4-section-head, .av4-method-grid, .av4-local-grid, .av4-final-grid { grid-template-columns: 1fr; gap: 34px; }
  .av4-intro-heading h2, .av4-section-head h2, .av4-method-copy h2, .av4-local-copy h2, .av4-final h2 { font-size: clamp(2.75rem, 12vw, 3.65rem); }
  .av4-intro-copy { padding-top: 0; }
  .av4-proof-photo-grid { grid-template-columns: 1fr; }
  .av4-proof-main { min-height: 400px; }
  .av4-proof-side { grid-template-columns: 1fr; grid-template-rows: 260px auto; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .av4-values-grid { grid-template-columns: 1fr; }
  .av4-values-grid article { min-height: 220px; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; }
  .av4-values-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.11); }
  .av4-value-icon { margin-bottom: 27px; }
  .av4-method-copy { position: static; }
  .av4-guarantees-grid { grid-template-columns: 1fr; }
  .av4-guarantees-grid > div { min-height: 86px; }
  .av4-guarantees-grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 560px) {
  .av4-hero-layout { padding-top: 57px; gap: 34px; }
  .av4-eyebrow { margin-bottom: 17px; font-size: .61rem; letter-spacing: .14em; }
  .av4-hero h1 { margin-bottom: 20px; font-size: clamp(2.75rem, 10.5vw, 3.25rem); line-height: .82; }
  .av4-hero-lead { font-size: .91rem; line-height: 1.6; }
  .av4-hero-actions { display: grid; grid-template-columns: 1fr; }
  .av4-hero-actions a { width: 100%; }
  .av4-hero-reassurance { display: grid; gap: 8px; }
  .av4-hero-visual { min-height: 350px; padding: 11px 7px 18px 0; }
  .av4-hero-visual::before { inset: 0 0 0 19px; }
  .av4-hero-photo { inset: 11px 7px 18px 0; }
  .av4-hero-photo img { object-position: 67% center; }
  .av4-hero-visual::after { width: 62px; height: 62px; }
  .av4-hero-visual figcaption { left: 16px; bottom: 35px; }
  .av4-hero-visual figcaption strong { font-size: 1.13rem; }
  .av4-hero-experience { min-width: 132px; padding: 11px 13px; }
  .av4-hero-experience strong { font-size: 2.8rem; }
  .av4-hero-strip { margin-inline: 0; width: 100%; }
  .av4-hero-strip > span, .av4-hero-strip > a { min-height: 86px; padding: 13px 11px; }
  .av4-hero-strip strong { font-size: 1.48rem; }
}

/* About hero V5 — quiet confidence, light editorial direction */
.about-v4 .av4-hero {
  --av5-red: #b20d22;
  min-height: 0;
  overflow: hidden;
  color: #181719;
  background: #eeeae3;
}
.about-v4 .av4-hero::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  inset: 0 0 auto auto;
  width: min(43vw, 620px);
  height: min(43vw, 620px);
  border: 1px solid rgba(178,13,34,.09);
  border-radius: 50%;
  transform: translate(31%, -48%);
}
.about-v4 .av4-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
  width: 9px;
  height: 38%;
  background: var(--av5-red);
}
.av4-hero-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: end;
  padding-top: clamp(68px, 7.5vw, 106px);
  padding-bottom: clamp(42px, 5vw, 68px);
}
.av4-hero-title { min-width: 0; }
.about-v4 .av4-eyebrow {
  display: block;
  margin: 0 0 16px;
  color: var(--av5-red);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-v4 .av4-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}
.about-v4 .av4-hero h1 {
  max-width: none;
  margin: 0;
  color: #1a191a;
  font: 600 clamp(4.25rem, 6.4vw, 6.9rem)/.82 "Teko", sans-serif;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.about-v4 .av4-hero h1 em {
  display: inline;
  color: var(--av5-red);
  font-style: normal;
  white-space: normal;
}
.about-v4 .av4-hero h1 em span { display: inline; }
.av4-hero-intro { min-width: 0; padding: 0 0 5px 25px; border-left: 1px solid #c8c1b8; }
.av4-hero-intro p { max-width: 430px; margin: 0; color: #625e5a; font-size: 1rem; line-height: 1.68; }
.av4-hero-intro a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 23px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--av5-red);
  color: #1a191a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.av4-hero-intro a span { color: var(--av5-red); font-size: 1rem; transition: transform .22s ease; }
.av4-hero-intro a:hover span { transform: translateX(4px); }
.av4-hero-scene {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 282px;
  align-items: end;
  padding-bottom: clamp(58px, 6.5vw, 88px);
}
.av4-hero-image {
  position: relative;
  height: clamp(390px, 39vw, 535px);
  margin: 0;
  overflow: hidden;
  background: #cac4bb;
}
.av4-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,12,12,.58), transparent 36%); }
.av4-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.av4-hero-image:hover img { transform: scale(1.025); }
.av4-hero-image figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 21px;
  padding-left: 13px;
  border-left: 2px solid #e51a33;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.av4-hero-card {
  position: relative;
  z-index: 3;
  min-height: 388px;
  margin: 0 0 34px -24px;
  padding: 31px 30px 27px;
  color: #fff;
  background: #161517;
  box-shadow: 0 28px 55px rgba(43,35,32,.22);
}
.av4-hero-card::before { content: ""; position: absolute; left: 0; top: 0; width: 62px; height: 4px; background: var(--av5-red); }
.av4-hero-card-number { color: #fff; font: 500 5.5rem/.8 "Teko", sans-serif; }
.av4-hero-card > p { max-width: 190px; margin: 10px 0 25px; color: #aaa8ab; font-size: .75rem; line-height: 1.5; }
.av4-hero-card > p strong { color: #fff; }
.av4-hero-card > div { display: grid; gap: 10px; padding: 20px 0; border-block: 1px solid rgba(255,255,255,.11); }
.av4-hero-card > div span { display: flex; align-items: center; gap: 9px; color: #c7c5c8; font-size: .59rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.av4-hero-card > div i { width: 5px; height: 5px; border-radius: 50%; background: #dc1630; box-shadow: 0 0 0 4px rgba(220,22,48,.12); }
.av4-hero-card > a { display: grid; margin-top: 22px; color: #fff; }
.av4-hero-card > a small { color: #77757a; font-size: .55rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.av4-hero-card > a strong { margin-top: 3px; font: 500 1.75rem/1 "Teko", sans-serif; letter-spacing: .02em; }

@media (max-width: 900px) {
  .av4-hero-heading { grid-template-columns: 1fr .68fr; gap: 44px; }
  .about-v4 .av4-hero h1 { font-size: clamp(3.8rem, 7.7vw, 5.25rem); }
  .av4-hero-scene { grid-template-columns: minmax(0,1fr) 245px; }
  .av4-hero-card { padding-inline: 24px; }
}

@media (max-width: 700px) {
  .av4-hero-heading { grid-template-columns: 1fr; gap: 28px; padding-top: 58px; padding-bottom: 38px; }
  .about-v4 .av4-hero h1 { font-size: clamp(3.45rem, 13.6vw, 5rem); }
  .av4-hero-intro { max-width: 580px; padding-left: 17px; }
  .av4-hero-scene { grid-template-columns: 1fr; padding-inline: 0; padding-bottom: 0; }
  .av4-hero-image { height: 420px; }
  .av4-hero-card { min-height: 0; margin: -38px 18px 55px; padding: 27px; }
  .av4-hero-card-number { font-size: 4.5rem; }
  .av4-hero-card > p { max-width: 270px; }
}

@media (max-width: 430px) {
  .about-v4 .av4-hero::after { width: 5px; }
  .av4-hero-heading { padding-top: 45px; padding-bottom: 31px; }
  .about-v4 .av4-eyebrow { margin-bottom: 13px; font-size: .59rem; letter-spacing: .14em; }
  .about-v4 .av4-hero h1 { font-size: clamp(2.82rem, 11.8vw, 3.22rem); }
  .about-v4 .av4-hero h1 em span { display: block; }
  .av4-hero-intro { width: 100%; padding-right: 8px; }
  .av4-hero-intro p { max-width: 100%; font-size: .91rem; line-height: 1.58; overflow-wrap: anywhere; }
  .av4-hero-image { height: 335px; }
  .av4-hero-image img { object-position: 61% center; }
  .av4-hero-image figcaption { left: 18px; bottom: 17px; }
  .av4-hero-card { margin: -28px 14px 48px; padding: 24px; }
  .av4-hero-card > div { grid-template-columns: 1fr; }
}
/* =========================================================
   CONTACT V4 — compact, direct and conversion focused
   ========================================================= */
.contact-v4 {
  --cv4-red: #d71920;
  --cv4-ink: #101011;
  --cv4-soft: #f4f1ec;
  --cv4-line: rgba(16, 16, 17, .14);
  background: #fff;
  color: var(--cv4-ink);
}

.contact-v4 .cv4-hero {
  min-height: 590px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.contact-v4 .cv4-hero-bg,
.contact-v4 .cv4-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-v4 .cv4-hero-bg { object-fit: cover; object-position: center 43%; }
.contact-v4 .cv4-hero-shade {
  background: linear-gradient(90deg, rgba(6, 6, 7, .96) 0%, rgba(6, 6, 7, .83) 42%, rgba(6, 6, 7, .36) 72%, rgba(6, 6, 7, .54) 100%), linear-gradient(0deg, rgba(0,0,0,.38), transparent 45%);
}

.contact-v4 .cv4-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 108px);
  padding-top: 76px;
  padding-bottom: 62px;
}

.contact-v4 .cv4-eyebrow,
.contact-v4 .cv4-kicker {
  margin: 0 0 13px;
  color: var(--cv4-red);
  font: 800 12px/1.1 "Barlow", sans-serif;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.contact-v4 .cv4-eyebrow { color: #fff; display: flex; align-items: center; gap: 10px; }
.contact-v4 .cv4-eyebrow span { width: 27px; height: 2px; background: var(--cv4-red); }

.contact-v4 .cv4-hero h1 {
  margin: 0;
  max-width: 710px;
  color: #fff;
  font: 600 clamp(72px, 8.1vw, 124px)/.76 "Teko", sans-serif;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.contact-v4 .cv4-hero h1 em { color: var(--cv4-red); font-style: normal; }
.contact-v4 .cv4-hero-lead { max-width: 610px; margin: 24px 0 27px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.55; }
.contact-v4 .cv4-hero-actions { display: flex; gap: 10px; max-width: 650px; }

.contact-v4 .cv4-action {
  min-height: 70px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 13px 18px 12px 20px;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.contact-v4 .cv4-action small { grid-column: 1; opacity: .7; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-v4 .cv4-action strong { grid-column: 1; margin-top: 3px; font-size: 16px; text-transform: uppercase; }
.contact-v4 .cv4-action > span { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: 24px; }
.contact-v4 .cv4-action:hover { transform: translateY(-3px); }
.contact-v4 .cv4-action--quote { background: var(--cv4-red); }
.contact-v4 .cv4-action--quote:hover { background: #ef1b23; }
.contact-v4 .cv4-action--urgent { background: #fff; color: var(--cv4-ink); }
.contact-v4 .cv4-action--urgent:hover { background: #f1eee9; }
.contact-v4 .cv4-hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 19px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; }
.contact-v4 .cv4-hero-proof span::first-letter { color: var(--cv4-red); }

.contact-v4 .cv4-direct-card {
  padding: 9px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(13,13,14,.77);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.contact-v4 .cv4-direct-card > p { margin: 0; padding: 12px 12px 14px; color: rgba(255,255,255,.62); font-size: 13px; }
.contact-v4 .cv4-direct-card > a { text-decoration: none; }
.contact-v4 .cv4-direct-phone,
.contact-v4 .cv4-direct-whatsapp { min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 14px 17px; color: #fff; }
.contact-v4 .cv4-direct-phone { background: var(--cv4-red); }
.contact-v4 .cv4-direct-whatsapp { margin-top: 7px; background: #087b48; }
.contact-v4 .cv4-direct-card a small { display: block; margin-bottom: 3px; opacity: .72; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-v4 .cv4-direct-card a strong { font: 600 27px/1 "Teko", sans-serif; letter-spacing: .02em; text-transform: uppercase; }
.contact-v4 .cv4-direct-card a b { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.32); font-size: 20px; transition: transform .2s ease; }
.contact-v4 .cv4-direct-card a:hover b { transform: translate(2px, -2px); }
.contact-v4 .cv4-direct-mail { display: flex; justify-content: space-between; padding: 15px 11px 11px; color: rgba(255,255,255,.76); font-size: 13px; }
.contact-v4 .cv4-availability { display: flex; align-items: center; gap: 10px; margin: 4px 3px 3px; padding: 11px 9px 7px; border-top: 1px solid rgba(255,255,255,.13); color: #fff; }
.contact-v4 .cv4-availability i { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #38cf7a; box-shadow: 0 0 0 5px rgba(56,207,122,.13); }
.contact-v4 .cv4-availability span { display: flex; flex-direction: column; }
.contact-v4 .cv4-availability strong { font-size: 12px; }
.contact-v4 .cv4-availability small { margin-top: 2px; color: rgba(255,255,255,.5); font-size: 10px; }

.contact-v4 .cv4-request { padding-top: clamp(68px, 7vw, 104px); padding-bottom: clamp(70px, 8vw, 118px); background: var(--cv4-soft); }
.contact-v4 .cv4-request-head { display: grid; grid-template-columns: 1fr minmax(290px, .55fr); align-items: end; gap: 40px; margin-bottom: 38px; }
.contact-v4 .cv4-request-head h2,
.contact-v4 .cv4-location-copy h2 {
  margin: 0;
  font: 600 clamp(50px, 5.3vw, 78px)/.84 "Teko", sans-serif;
  letter-spacing: -.018em;
  text-transform: uppercase;
}
.contact-v4 .cv4-request-head h2 em { color: var(--cv4-red); font-style: normal; }
.contact-v4 .cv4-request-head > p { margin: 0 0 5px; max-width: 480px; color: #676465; font-size: 15px; line-height: 1.65; }
.contact-v4 .cv4-request-grid { display: grid; grid-template-columns: minmax(0, 1fr) 325px; align-items: start; gap: 24px; }
.contact-v4 .cv4-form-shell { min-width: 0; background: #fff; border: 1px solid var(--cv4-line); box-shadow: 0 20px 70px rgba(21,16,13,.06); }

.contact-v4 .contact-form.cv4-form { padding: clamp(24px, 3.4vw, 44px); border: 0; border-radius: 0; box-shadow: none; background: transparent; }
.contact-v4 .contact-form.cv4-form.is-submitted { display: none !important; }
.contact-v4 .cv4-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.contact-v4 .cv4-progress { margin-bottom: 29px; padding-bottom: 20px; border-bottom: 1px solid var(--cv4-line); }
.contact-v4 .cv4-progress > div:first-child { display: flex; justify-content: space-between; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-v4 .cv4-progress > div:first-child strong { color: var(--cv4-red); }
.contact-v4 .cv4-progress-track { height: 3px; margin-top: 10px; overflow: hidden; background: #e7e2dc; }
.contact-v4 .cv4-progress-track span { display: block; width: 0; height: 100%; background: var(--cv4-red); transition: width .3s ease; }
.contact-v4 .cv4-progress p { margin: 10px 0 0; color: #817c77; font-size: 12px; }
.contact-v4 .cv4-form-grid { gap: 20px 16px; }
.contact-v4 .cv4-form .form-field label { margin-bottom: 8px; color: #292728; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.contact-v4 .cv4-form .form-field label > span { color: var(--cv4-red); }
.contact-v4 .cv4-form .form-field label small { color: #85807c; font-size: 10px; font-weight: 500; }
.contact-v4 .cv4-form input:not([type="checkbox"]):not([type="file"]),
.contact-v4 .cv4-form select,
.contact-v4 .cv4-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d8d3cd;
  border-radius: 0;
  outline: 0;
  background: #fcfbf9;
  color: var(--cv4-ink);
  font: 500 14px/1.4 "Barlow", sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-v4 .cv4-form textarea { min-height: 108px; resize: vertical; }
.contact-v4 .cv4-form input:focus,
.contact-v4 .cv4-form select:focus,
.contact-v4 .cv4-form textarea:focus { border-color: var(--cv4-ink); background: #fff; box-shadow: 0 0 0 3px rgba(16,16,17,.07); }
.contact-v4 .cv4-form .has-error input,
.contact-v4 .cv4-form .has-error select,
.contact-v4 .cv4-form .has-error textarea { border-color: var(--cv4-red); }
.contact-v4 .cv4-form .field-error { min-height: 0; margin: 5px 0 0; color: var(--cv4-red); font-size: 11px; }
.contact-v4 .cv4-needs { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-v4 .cv4-needs legend { margin: 0 0 15px; padding: 0; color: #292728; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.contact-v4 .cv4-needs legend span { color: var(--cv4-red); }
.contact-v4 .cv4-multiselect { position: relative; }
.contact-v4 .cv4-multiselect-toggle { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid #d6d0ca; border-radius: 0; background: #fbfaf8; color: var(--cv4-ink); font: 500 14px/1.4 "Barlow", sans-serif; text-align: left; cursor: pointer; }
.contact-v4 .cv4-multiselect-toggle b { flex: 0 0 auto; font-size: 18px; font-weight: 500; line-height: 1; transition: transform .2s ease; }
.contact-v4 .cv4-needs.is-open .cv4-multiselect-toggle { border-color: var(--cv4-red); background: #fff; box-shadow: 0 0 0 3px rgba(215,25,45,.08); }
.contact-v4 .cv4-needs.is-open .cv4-multiselect-toggle b { transform: rotate(180deg); }
.contact-v4 .cv4-needs-options { position: absolute; z-index: 30; top: calc(100% - 1px); left: 0; right: 0; display: grid; padding: 6px 0; border: 1px solid #aaa49e; background: #fff; box-shadow: 0 14px 28px rgba(30,25,22,.14); }
.contact-v4 .cv4-needs-options[hidden] { display: none; }
.contact-v4 .cv4-needs-options > small { padding: 7px 14px 6px; color: #85807c; font-size: 10px; }
.contact-v4 .cv4-needs-options label { display: flex; align-items: center; gap: 10px; min-height: 38px; margin: 0; padding: 8px 14px; background: #fff; cursor: pointer; }
.contact-v4 .cv4-needs-options label:hover { background: #f3f5f8; }
.contact-v4 .cv4-needs-options label:has(input:checked) { color: #fff; background: #2469cf; }
.contact-v4 .cv4-needs-options input { width: 16px; height: 16px; flex: 0 0 16px; margin: 0; accent-color: var(--cv4-red); }
.contact-v4 .cv4-needs-options label span { color: inherit; font-size: 13px; font-weight: 500; line-height: 1.25; }
.contact-v4 .cv4-needs-field.has-error .cv4-multiselect-toggle { border-color: var(--cv4-red); }
.contact-v4 .cv4-address-block { margin-top: 1px; padding: 13px 15px; border: 1px solid #ded9d3; background: #faf8f5; }
.contact-v4 .cv4-address-block .contact-checkline { display: flex; align-items: center; gap: 10px; margin: 0; cursor: pointer; }
.contact-v4 .cv4-address-block input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--cv4-red); }
.contact-v4 .cv4-address-block .contact-checkline span { color: #292728; }
.contact-v4 .contact-address-fields { margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--cv4-line); }
.contact-v4 .contact-address-row { display: grid; grid-template-columns: .65fr 1.35fr; gap: 12px; margin-top: 12px; }
.contact-v4 .cv4-upload { position: relative; }
.contact-v4 .cv4-upload > label { min-height: 68px; display: flex; align-items: center; gap: 13px; margin: 0; padding: 11px 14px; border: 1px dashed #c6c0ba; background: #faf8f5; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.contact-v4 .cv4-upload > label:hover { border-color: var(--cv4-red); background: #fff8f7; }
.contact-v4 .cv4-upload > input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-v4 .cv4-upload-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; background: var(--cv4-ink); color: #fff !important; font-size: 20px; }
.contact-v4 .cv4-upload label > span:last-child { display: flex; flex-direction: column; }
.contact-v4 .cv4-upload label strong { color: var(--cv4-ink); font-size: 12px; text-transform: uppercase; }
.contact-v4 .cv4-upload label small { margin-top: 3px; color: #817d78; font-size: 10px; font-weight: 500; }
.contact-v4 .contact-files-preview { margin: 7px 0 0; color: #5f5b57; font-size: 11px; overflow-wrap: anywhere; }
.contact-v4 .cv4-submit-row { display: flex; align-items: center; gap: 18px; margin-top: 25px; }
.contact-v4 .cv4-submit { min-height: 58px; min-width: 245px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px 18px 14px 21px; border: 0; background: var(--cv4-red); color: #fff; font: 800 13px/1 "Barlow", sans-serif; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.contact-v4 .cv4-submit:hover { background: var(--cv4-ink); transform: translateY(-2px); }
.contact-v4 .cv4-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.contact-v4 .cv4-submit span { font-size: 20px; }
.contact-v4 .cv4-submit-row > p { max-width: 220px; margin: 0; color: #89847f; font-size: 10px; line-height: 1.45; }
.contact-v4 .cv4-send-status { min-height: 20px; margin: 12px 0 0; font-size: 12px; font-weight: 700; }
.contact-v4 .cv4-send-status:empty { display: none; }
.contact-v4 .cv4-send-status.is-sending { color: #625e5a; }
.contact-v4 .cv4-send-status.is-error { padding: 11px 13px; border-left: 3px solid var(--cv4-red); color: #920d20; background: #fff2f3; }

.contact-v4 .cv4-form-aside { position: sticky; top: 118px; border-top: 4px solid var(--cv4-red); background: var(--cv4-ink); color: #fff; }
.contact-v4 .cv4-aside-intro { padding: 26px 25px 21px; }
.contact-v4 .cv4-aside-intro > span { color: #e66669; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-v4 .cv4-aside-intro h3 { margin: 8px 0 0; font: 600 32px/.9 "Teko", sans-serif; text-transform: uppercase; }
.contact-v4 .cv4-form-aside ol { margin: 0; padding: 0 25px; list-style: none; }
.contact-v4 .cv4-form-aside li { display: flex; gap: 13px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-v4 .cv4-form-aside li > b { color: var(--cv4-red); font: 600 19px/1 "Teko", sans-serif; }
.contact-v4 .cv4-form-aside li span { display: flex; flex-direction: column; }
.contact-v4 .cv4-form-aside li strong { font-size: 12px; }
.contact-v4 .cv4-form-aside li small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.4; }
.contact-v4 .cv4-aside-call { padding: 18px 25px 20px; background: var(--cv4-red); }
.contact-v4 .cv4-aside-call small { display: block; margin-bottom: 6px; color: rgba(255,255,255,.72); font-size: 10px; }
.contact-v4 .cv4-aside-call a { display: flex; justify-content: space-between; color: #fff; font: 600 28px/1 "Teko", sans-serif; text-decoration: none; }
.contact-v4 .cv4-aside-trust { display: grid; grid-template-columns: repeat(3, 1fr); padding: 15px 12px 17px; }
.contact-v4 .cv4-aside-trust span { display: flex; flex-direction: column; align-items: center; color: rgba(255,255,255,.45); font-size: 8px; text-align: center; text-transform: uppercase; }
.contact-v4 .cv4-aside-trust b { margin-bottom: 3px; color: #fff; font: 600 20px/1 "Teko", sans-serif; }

.contact-v4 .cv4-success { min-height: 500px; padding: clamp(40px, 7vw, 90px); border: 0; border-radius: 0; background: #fff; }
.contact-v4 .cv4-success:not(.is-visible) { display: none !important; }
.contact-v4 .cv4-success.is-visible { display: block !important; animation: cv4SuccessIn .45s ease both; }
.contact-v4 .cv4-success > span { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 26px; background: #15955b; color: #fff; font-size: 24px; }
.contact-v4 .cv4-success h2 { margin: 0 0 12px; font: 600 clamp(46px, 6vw, 74px)/.88 "Teko", sans-serif; text-transform: uppercase; }
.contact-v4 .cv4-success > p:not(.cv4-kicker) { max-width: 580px; color: #5f5b57; line-height: 1.6; }
.contact-v4 .cv4-success a { display: inline-block; margin-top: 18px; padding-bottom: 4px; border-bottom: 2px solid var(--cv4-red); color: var(--cv4-ink); font-weight: 800; text-decoration: none; }
@keyframes cv4SuccessIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.contact-v4 .cv4-location { padding-top: clamp(68px, 7vw, 102px); padding-bottom: clamp(68px, 7vw, 102px); background: #fff; }
.contact-v4 .cv4-location-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; min-height: 405px; }
.contact-v4 .cv4-map { position: relative; min-height: 405px; overflow: hidden; background: #dedbd6; }
.contact-v4 .cv4-map iframe { width: 100%; height: 100%; min-height: 405px; display: block; border: 0; filter: grayscale(.15) contrast(1.04); }
.contact-v4 .cv4-map > span { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; background: var(--cv4-ink); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.contact-v4 .cv4-map > span i { width: 8px; height: 8px; border-radius: 50%; background: var(--cv4-red); box-shadow: 0 0 0 4px rgba(215,25,32,.22); }
.contact-v4 .cv4-location-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 68px); background: var(--cv4-soft); }
.contact-v4 .cv4-location-copy .cv4-kicker { font-size: 10px; }
.contact-v4 .cv4-location-copy h2 { max-width: 530px; font-size: clamp(2.25rem, 3.2vw, 3.15rem); }
.contact-v4 .cv4-location-copy > p:not(.cv4-kicker) { margin: 19px 0; color: #67625e; font-size: 14px; line-height: 1.65; }
.contact-v4 .cv4-location-copy > div { display: flex; flex-wrap: wrap; gap: 6px; }
.contact-v4 .cv4-location-copy > div span { padding: 6px 9px; border: 1px solid #d9d3cd; background: #fff; color: #4d4945; font-size: 10px; font-weight: 700; }
.contact-v4 .cv4-location-copy > a { width: fit-content; margin-top: 23px; padding-bottom: 4px; border-bottom: 2px solid var(--cv4-red); color: var(--cv4-ink); font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.contact-v4 .cv4-location-copy > a span { color: var(--cv4-red); }

.contact-v4 .cv4-reassurance { padding: 31px 0; background: var(--cv4-ink); color: #fff; }
.contact-v4 .cv4-reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.contact-v4 .cv4-reassurance-grid > div { display: flex; align-items: center; gap: 15px; padding: 3px 30px; border-left: 1px solid rgba(255,255,255,.13); }
.contact-v4 .cv4-reassurance-grid > div:first-child { padding-left: 0; border-left: 0; }
.contact-v4 .cv4-reassurance-grid > div > span { color: var(--cv4-red); font: 600 26px/1 "Teko", sans-serif; }
.contact-v4 .cv4-reassurance-grid p { display: flex; flex-direction: column; margin: 0; }
.contact-v4 .cv4-reassurance-grid strong { font-size: 12px; text-transform: uppercase; }
.contact-v4 .cv4-reassurance-grid small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: 10px; }

@media (max-width: 980px) {
  .contact-v4 .cv4-hero-grid { grid-template-columns: 1fr minmax(285px, .58fr); gap: 28px; }
  .contact-v4 .cv4-hero h1 { font-size: clamp(69px, 10vw, 100px); }
  .contact-v4 .cv4-request-grid { grid-template-columns: 1fr 285px; }
  .contact-v4 .cv4-form-aside ol,
  .contact-v4 .cv4-aside-intro { padding-left: 20px; padding-right: 20px; }
  .contact-v4 .cv4-aside-call { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 760px) {
  .contact-v4 .cv4-hero { min-height: auto; }
  .contact-v4 .cv4-hero-shade { background: linear-gradient(180deg, rgba(6,6,7,.76), rgba(6,6,7,.96) 68%); }
  .contact-v4 .cv4-hero-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 58px; padding-bottom: 37px; }
  .contact-v4 .cv4-hero h1 { font-size: clamp(66px, 21vw, 92px); }
  .contact-v4 .cv4-hero-lead { margin: 17px 0 20px; font-size: 15px; }
  .contact-v4 .cv4-hero-actions { flex-direction: column; }
  .contact-v4 .cv4-action { flex: auto; min-height: 62px; }
  .contact-v4 .cv4-hero-proof { gap: 9px 14px; margin-top: 14px; font-size: 10px; }
  .contact-v4 .cv4-direct-card { padding: 7px; }
  .contact-v4 .cv4-direct-phone,
  .contact-v4 .cv4-direct-whatsapp { min-height: 70px; }
  .contact-v4 .cv4-request-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 25px; }
  .contact-v4 .cv4-request-head h2,
  .contact-v4 .cv4-location-copy h2 { font-size: clamp(47px, 15vw, 65px); }
  .contact-v4 .cv4-request-grid { grid-template-columns: 1fr; }
  .contact-v4 .cv4-form-aside { position: static; }
  .contact-v4 .cv4-form-grid { grid-template-columns: 1fr; }
  .contact-v4 .cv4-form-grid .form-field { grid-column: 1; }
  .contact-v4 .cv4-submit-row { align-items: stretch; flex-direction: column; }
  .contact-v4 .cv4-submit { width: 100%; min-width: 0; }
  .contact-v4 .contact-address-row { grid-template-columns: 1fr; }
  .contact-v4 .cv4-location-grid { grid-template-columns: 1fr; }
  .contact-v4 .cv4-map,
  .contact-v4 .cv4-map iframe { min-height: 310px; }
  .contact-v4 .cv4-location-copy { padding: 34px 25px; }
  .contact-v4 .cv4-reassurance { padding: 20px 0; }
  .contact-v4 .cv4-reassurance-grid { grid-template-columns: 1fr; }
  .contact-v4 .cv4-reassurance-grid > div,
  .contact-v4 .cv4-reassurance-grid > div:first-child { padding: 13px 0; border: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .contact-v4 .cv4-reassurance-grid > div:first-child { border-top: 0; }
}

@media (max-width: 420px) {
  .contact-v4 .cv4-hero-grid { padding-top: 44px; }
  .contact-v4 .cv4-hero h1 { font-size: 65px; }
  .contact-v4 .cv4-direct-card a strong { font-size: 23px; }
  .contact-v4 .contact-form.cv4-form { padding: 21px 17px; }
  .contact-v4 .cv4-request { padding-top: 58px; padding-bottom: 63px; }
}

/* Services — signature de navigation verticale */
.sv4-scroll-rail {
  position: fixed;
  z-index: 860;
  top: 50%;
  right: 13px;
  display: grid;
  justify-items: center;
  gap: 9px;
  width: 38px;
  padding: 12px 6px 11px;
  overflow: hidden;
  color: #fff;
  background: rgba(7,7,9,.76);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
  transform: translate3d(8px,-50%,0);
  opacity: .58;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s cubic-bezier(.22,1,.36,1), border-color .25s ease;
}
.services-v4.sv4-is-scrolling .sv4-scroll-rail {
  opacity: 1;
  border-color: rgba(218,17,47,.55);
  transform: translate3d(0,-50%,0);
}
.sv4-scroll-rail-index {
  color: #ec1737;
  font: 700 .72rem "Teko", sans-serif;
  letter-spacing: .08em;
}
.sv4-scroll-rail i {
  position: relative;
  display: block;
  width: 1px;
  height: 92px;
  overflow: hidden;
  background: rgba(255,255,255,.19);
}
.sv4-scroll-rail i b {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg,#ff2143 0%,#a70820 100%);
  box-shadow: 0 0 9px rgba(235,21,54,.85);
  transform: scaleY(0);
  transform-origin: 50% 0;
  will-change: transform;
}
.sv4-scroll-rail[data-direction="up"] i b { transform-origin: 50% 100%; }
.sv4-scroll-rail-label {
  max-height: 116px;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sv4-scroll-wipe {
  position: fixed;
  z-index: 850;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
.sv4-scroll-wipe::before,
.sv4-scroll-wipe::after {
  position: absolute;
  left: -5vw;
  width: 110vw;
  content: "";
  will-change: transform, opacity;
}
.sv4-scroll-wipe::before {
  top: 0;
  height: 72px;
  background: linear-gradient(180deg,rgba(5,5,7,0) 0%,rgba(5,5,7,.72) 37%,#dc1231 49%,rgba(5,5,7,.82) 54%,rgba(5,5,7,0) 100%);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.24));
  opacity: 0;
}
.sv4-scroll-wipe::after {
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,transparent 2%,#ff2648 23%,#fff 50%,#d20c2c 76%,transparent 98%);
  box-shadow: 0 0 15px rgba(232,17,50,.9);
  opacity: 0;
}
.sv4-scroll-wipe > span {
  position: absolute;
  z-index: 1;
  right: 60px;
  top: 50%;
  color: rgba(255,255,255,.88);
  font: 600 .75rem "Teko", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  will-change: transform, opacity;
}
.sv4-scroll-wipe.is-down,
.sv4-scroll-wipe.is-up { visibility: visible; }
.sv4-scroll-wipe.is-down::before { animation: sv4WipeDown .82s cubic-bezier(.72,0,.2,1) both; }
.sv4-scroll-wipe.is-down::after { animation: sv4LineDown .82s cubic-bezier(.72,0,.2,1) both; }
.sv4-scroll-wipe.is-up::before { animation: sv4WipeUp .82s cubic-bezier(.72,0,.2,1) both; }
.sv4-scroll-wipe.is-up::after { animation: sv4LineUp .82s cubic-bezier(.72,0,.2,1) both; }
.sv4-scroll-wipe.is-down > span { animation: sv4LabelDown .78s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-wipe.is-up > span { animation: sv4LabelUp .78s cubic-bezier(.22,1,.36,1) both; }

.services-v4 main > section > .container.sv4-enter-down { animation: sv4EnterDown .78s cubic-bezier(.22,1,.36,1) both; }
.services-v4 main > section > .container.sv4-enter-up { animation: sv4EnterUp .78s cubic-bezier(.22,1,.36,1) both; }

@keyframes sv4WipeDown {
  0% { opacity: 0; transform: translate3d(0,-90px,0) skewY(-1deg); }
  16% { opacity: 1; }
  83% { opacity: .92; }
  100% { opacity: 0; transform: translate3d(0,calc(100vh + 90px),0) skewY(-1deg); }
}
@keyframes sv4LineDown {
  0% { opacity: 0; transform: translate3d(0,-22px,0); }
  17% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0,calc(100vh + 22px),0); }
}
@keyframes sv4WipeUp {
  0% { opacity: 0; transform: translate3d(0,calc(100vh + 90px),0) skewY(1deg); }
  16% { opacity: 1; }
  83% { opacity: .92; }
  100% { opacity: 0; transform: translate3d(0,-90px,0) skewY(1deg); }
}
@keyframes sv4LineUp {
  0% { opacity: 0; transform: translate3d(0,calc(100vh + 22px),0); }
  17% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0,-22px,0); }
}
@keyframes sv4LabelDown {
  0%, 24% { opacity: 0; transform: translate3d(0,-32px,0); }
  42%, 63% { opacity: 1; transform: translate3d(0,-50%,0); }
  100% { opacity: 0; transform: translate3d(0,28px,0); }
}
@keyframes sv4LabelUp {
  0%, 24% { opacity: 0; transform: translate3d(0,32px,0); }
  42%, 63% { opacity: 1; transform: translate3d(0,-50%,0); }
  100% { opacity: 0; transform: translate3d(0,-28px,0); }
}
@keyframes sv4EnterDown {
  0% { opacity: .35; clip-path: inset(0 0 18% 0); transform: translate3d(0,30px,0) scale(.992); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0) scale(1); }
}
@keyframes sv4EnterUp {
  0% { opacity: .35; clip-path: inset(18% 0 0 0); transform: translate3d(0,-30px,0) scale(.992); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0) scale(1); }
}

@media (max-width: 760px) {
  .sv4-scroll-rail { right: 4px; width: 25px; padding: 9px 5px; transform: translate3d(5px,-50%,0); }
  .sv4-scroll-rail-index,
  .sv4-scroll-rail-label { display: none; }
  .sv4-scroll-rail i { height: 62px; }
  .sv4-scroll-wipe > span { right: 27px; font-size: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-scroll-rail,
  .sv4-scroll-wipe { display: none !important; }
  .services-v4 main > section > .container { animation: none !important; }
}

/* Laboratoire d'animations — comparateur visible sur la page Services */
.sv4-transition-stage {
  position: fixed;
  z-index: 850;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.sv4-transition-stage.is-playing { visibility: visible; }
.sv4-fx-door,
.sv4-fx-frame,
.sv4-fx-scan,
.sv4-fx-depth { position: absolute; display: none; will-change: transform, opacity, clip-path; }
.sv4-fx-title {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: none;
  width: min(520px,calc(100vw - 60px));
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%,-50%);
}
.sv4-fx-title small { display: block; margin-bottom: 3px; color: #ee1738; font-size: .55rem; font-weight: 900; letter-spacing: .25em; }
.sv4-fx-title strong { display: block; font: 600 clamp(2.7rem,7vw,6.6rem)/.82 "Teko",sans-serif; letter-spacing: -.025em; }

/* 01 — deux portes noires inspirées d'un atelier */
.sv4-transition-stage[data-effect="doors"] .sv4-fx-door { top: 0; bottom: 0; display: block; width: 50.2%; background: #09090b; }
.sv4-transition-stage[data-effect="doors"] .sv4-fx-door--left { left: 0; border-right: 1px solid #d61030; }
.sv4-transition-stage[data-effect="doors"] .sv4-fx-door--right { right: 0; border-left: 1px solid #d61030; }
.sv4-transition-stage[data-effect="doors"].is-playing .sv4-fx-title { display: block; animation: sv4DoorsTitle .92s ease both; }
.sv4-transition-stage[data-effect="doors"].is-playing .sv4-fx-door--left { animation: sv4DoorLeft .92s cubic-bezier(.76,0,.24,1) both; }
.sv4-transition-stage[data-effect="doors"].is-playing .sv4-fx-door--right { animation: sv4DoorRight .92s cubic-bezier(.76,0,.24,1) both; }
@keyframes sv4DoorLeft { 0% { transform: translateX(-101%); } 36%,55% { transform: translateX(0); } 100% { transform: translateX(-101%); } }
@keyframes sv4DoorRight { 0% { transform: translateX(101%); } 36%,55% { transform: translateX(0); } 100% { transform: translateX(101%); } }
@keyframes sv4DoorsTitle { 0%,31% { opacity: 0; letter-spacing: .08em; } 42%,53% { opacity: 1; letter-spacing: 0; } 68%,100% { opacity: 0; } }

/* 02 — un cadre rouge dessine puis révèle la nouvelle section */
.sv4-transition-stage[data-effect="frame"] .sv4-fx-frame {
  inset: 0;
  display: block;
  background: rgba(7,7,9,.88);
  border: 0 solid #e01738;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 0 80px rgba(215,12,43,.2);
}
.sv4-transition-stage[data-effect="frame"].is-playing .sv4-fx-frame { animation: sv4SignatureFrame .96s cubic-bezier(.7,0,.2,1) both; }
.sv4-transition-stage[data-effect="frame"].is-playing .sv4-fx-title { display: block; animation: sv4FrameTitle .96s cubic-bezier(.22,1,.36,1) both; }
@keyframes sv4SignatureFrame {
  0% { opacity: 0; clip-path: inset(49% 49%); border-width: 0; }
  30% { opacity: 1; clip-path: inset(7% 4%); border-width: 2px; }
  54% { opacity: 1; clip-path: inset(7% 4%); border-width: 2px; }
  100% { opacity: 0; clip-path: inset(0); border-width: 0; }
}
@keyframes sv4FrameTitle { 0%,24% { opacity: 0; transform: translate(-50%,-44%) scale(.92); } 38%,56% { opacity: 1; transform: translate(-50%,-50%) scale(1); } 76%,100% { opacity: 0; transform: translate(-50%,-55%) scale(1.04); } }

/* 03 — lecture technique façon scanner de chantier */
.sv4-transition-stage[data-effect="scanner"] {
  background-image: linear-gradient(rgba(222,16,48,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(222,16,48,.08) 1px,transparent 1px);
  background-size: 42px 42px;
}
.sv4-transition-stage[data-effect="scanner"] .sv4-fx-scan {
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #ff2547;
  box-shadow: 0 -45px 80px 32px rgba(7,7,9,.82),0 0 22px 5px rgba(234,17,52,.75);
}
.sv4-transition-stage[data-effect="scanner"].is-down .sv4-fx-scan { animation: sv4ScanDown .9s cubic-bezier(.65,0,.25,1) both; }
.sv4-transition-stage[data-effect="scanner"].is-up .sv4-fx-scan { animation: sv4ScanUp .9s cubic-bezier(.65,0,.25,1) both; }
.sv4-transition-stage[data-effect="scanner"].is-playing { animation: sv4GridFlash .9s ease both; }
.sv4-transition-stage[data-effect="scanner"].is-playing .sv4-fx-title { display: block; text-align: left; animation: sv4ScanTitle .9s ease both; }
@keyframes sv4ScanDown { 0% { opacity: 0; transform: translateY(-15vh); } 12%,75% { opacity: 1; } 100% { opacity: 0; transform: translateY(115vh); } }
@keyframes sv4ScanUp { 0% { opacity: 0; transform: translateY(115vh) rotate(180deg); } 12%,75% { opacity: 1; } 100% { opacity: 0; transform: translateY(-15vh) rotate(180deg); } }
@keyframes sv4GridFlash { 0%,100% { background-color: rgba(5,5,7,0); opacity: 0; } 25%,65% { background-color: rgba(5,5,7,.7); opacity: 1; } }
@keyframes sv4ScanTitle { 0%,34% { opacity: 0; transform: translate(-46%,-50%); } 47%,61% { opacity: 1; transform: translate(-50%,-50%); } 80%,100% { opacity: 0; transform: translate(-54%,-50%); } }

/* 04 — respiration cinématographique, sans coupure dure */
.sv4-transition-stage[data-effect="depth"] .sv4-fx-depth {
  inset: -10%;
  display: block;
  background: radial-gradient(circle at 50% 48%,rgba(185,8,34,.2) 0%,rgba(7,7,9,.78) 38%,#050506 72%);
}
.sv4-transition-stage[data-effect="depth"].is-playing .sv4-fx-depth { animation: sv4DepthVeil .95s cubic-bezier(.22,1,.36,1) both; }
.sv4-transition-stage[data-effect="depth"].is-playing .sv4-fx-title { display: block; animation: sv4DepthTitle .95s cubic-bezier(.22,1,.36,1) both; }
.services-v4 main > section > .container.sv4-enter-depth { animation: sv4EnterDepth .95s cubic-bezier(.16,1,.3,1) both; }
@keyframes sv4DepthVeil { 0% { opacity: 0; transform: scale(1.25); filter: blur(12px); } 38%,53% { opacity: 1; transform: scale(1); filter: blur(0); } 100% { opacity: 0; transform: scale(.86); filter: blur(9px); } }
@keyframes sv4DepthTitle { 0%,27% { opacity: 0; transform: translate(-50%,-50%) scale(1.22); filter: blur(8px); } 42%,54% { opacity: 1; transform: translate(-50%,-50%) scale(1); filter: blur(0); } 80%,100% { opacity: 0; transform: translate(-50%,-50%) scale(.88); } }
@keyframes sv4EnterDepth { 0% { opacity: .16; transform: perspective(900px) translateZ(-90px) scale(.96); filter: blur(6px); } 100% { opacity: 1; transform: perspective(900px) translateZ(0) scale(1); filter: blur(0); } }

.sv4-motion-chooser {
  position: fixed;
  z-index: 900;
  left: 50%;
  bottom: 17px;
  width: min(790px,calc(100vw - 32px));
  color: #fff;
  background: rgba(8,8,10,.94);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 58px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: width .35s ease, transform .35s ease;
}
.sv4-motion-toggle {
  position: absolute;
  right: 9px;
  top: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 7px;
  color: #85858b;
  background: transparent;
  border: 0;
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}
.sv4-motion-toggle b { color: #fff; font-size: 1rem; font-weight: 400; line-height: .8; }
.sv4-motion-chooser-inner { display: grid; grid-template-columns: 145px 1fr; gap: 15px; padding: 13px 42px 13px 15px; }
.sv4-motion-chooser-inner > p { display: grid; align-content: center; gap: 2px; margin: 0; border-right: 1px solid rgba(255,255,255,.12); }
.sv4-motion-chooser-inner > p span { color: #e41736; font-size: .45rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sv4-motion-chooser-inner > p strong { font: 600 1.15rem "Teko",sans-serif; text-transform: uppercase; }
.sv4-motion-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.sv4-motion-options button { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: center; min-width: 0; padding: 8px; color: #b6b6bb; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); text-align: left; cursor: pointer; transition: .2s ease; }
.sv4-motion-options button > b { color: #e41736; font: 600 .9rem "Teko",sans-serif; }
.sv4-motion-options button > span { display: grid; gap: 1px; font-size: .58rem; font-weight: 850; text-transform: uppercase; }
.sv4-motion-options button small { color: #67676d; font-size: .45rem; font-weight: 600; text-transform: none; }
.sv4-motion-options button:hover { color: #fff; border-color: rgba(228,23,54,.6); transform: translateY(-2px); }
.sv4-motion-options button.is-active { color: #fff; background: #a90820; border-color: #e31736; box-shadow: 0 7px 18px rgba(174,8,32,.25); }
.sv4-motion-options button.is-active > b,
.sv4-motion-options button.is-active small { color: #fff; }
.sv4-motion-chooser-inner > em { grid-column: 2; margin-top: -9px; color: #5f5f65; font-size: .44rem; font-style: normal; letter-spacing: .05em; }
.sv4-motion-chooser.is-collapsed { width: 118px; transform: translate(calc(-50vw + 74px),0); }
.sv4-motion-chooser.is-collapsed .sv4-motion-chooser-inner { display: none; }
.sv4-motion-chooser.is-collapsed .sv4-motion-toggle { position: static; justify-content: center; width: 100%; min-height: 34px; }

@media (max-width: 760px) {
  .sv4-motion-chooser { bottom: 72px; width: calc(100vw - 18px); }
  .sv4-motion-chooser-inner { grid-template-columns: 1fr; padding: 35px 9px 10px; }
  .sv4-motion-chooser-inner > p { display: none; }
  .sv4-motion-options { grid-template-columns: repeat(2,1fr); }
  .sv4-motion-chooser-inner > em { grid-column: 1; margin: 0; text-align: center; }
  .sv4-motion-chooser.is-collapsed { width: 112px; transform: translate(calc(-50vw + 65px),0); }
  .sv4-fx-title strong { font-size: clamp(2.6rem,15vw,4.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-motion-chooser,
  .sv4-transition-stage { display: none !important; }
}

/* Services — mouvement éditorial discret */
.sv4-motion-chooser,
.sv4-transition-stage,
.sv4-scroll-rail,
.sv4-scroll-wipe { display: none !important; }

.sv4-scroll-accent {
  position: fixed;
  z-index: 120;
  left: 0;
  top: calc(50% - 36px);
  display: block;
  width: 2px;
  height: 72px;
  background: linear-gradient(180deg,transparent,#e11635 28%,#e11635 72%,transparent);
  box-shadow: 0 0 10px rgba(225,22,53,.28);
  opacity: 0;
  pointer-events: none;
  will-change: transform,opacity;
}
.sv4-scroll-accent.is-down { animation: sv4AccentDown .58s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-accent.is-up { animation: sv4AccentUp .58s cubic-bezier(.22,1,.36,1) both; }

.services-v4 main > section > .container.sv4-scroll-in-down { animation: sv4EditorialDown .56s cubic-bezier(.22,1,.36,1) both; }
.services-v4 main > section > .container.sv4-scroll-in-up { animation: sv4EditorialUp .56s cubic-bezier(.22,1,.36,1) both; }

@keyframes sv4AccentDown {
  0% { opacity: 0; transform: translateY(-18px) scaleY(.25); }
  28%,62% { opacity: .9; transform: translateY(0) scaleY(1); }
  100% { opacity: 0; transform: translateY(18px) scaleY(.35); }
}
@keyframes sv4AccentUp {
  0% { opacity: 0; transform: translateY(18px) scaleY(.25); }
  28%,62% { opacity: .9; transform: translateY(0) scaleY(1); }
  100% { opacity: 0; transform: translateY(-18px) scaleY(.35); }
}
@keyframes sv4EditorialDown {
  0% { opacity: .68; transform: translate3d(0,14px,0); filter: blur(1.2px); }
  100% { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
}
@keyframes sv4EditorialUp {
  0% { opacity: .68; transform: translate3d(0,-14px,0); filter: blur(1.2px); }
  100% { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
}

@media (max-width: 760px) {
  .sv4-scroll-accent { height: 54px; top: calc(50% - 27px); }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-scroll-accent { display: none !important; }
  .services-v4 main > section > .container { animation: none !important; }
}

/* Comparateur de micro-détails — volontairement très discret */
.sv4-detail-picker {
  position: fixed;
  z-index: 900;
  right: 13px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  color: #fff;
  background: rgba(9,9,11,.88);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.sv4-detail-picker > span { padding: 0 5px 0 3px; color: #77777d; font-size: .45rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.sv4-detail-picker button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #8e8e94;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  font: 600 .68rem "Teko",sans-serif;
  cursor: pointer;
  transition: color .18s ease,background .18s ease,border-color .18s ease;
}
.sv4-detail-picker button:hover { color: #fff; border-color: rgba(225,22,53,.65); }
.sv4-detail-picker button.is-active { color: #fff; background: #b50b25; border-color: #dc1634; }

/* 02 — un trait de 34px se dessine sous le titre */
body.services-v4[data-scroll-detail="underline"] main > section.sv4-detail-active :is(h1,h2) { position: relative; }
body.services-v4[data-scroll-detail="underline"] main > section.sv4-detail-active :is(h1,h2)::after {
  position: absolute;
  left: 0;
  bottom: -.07em;
  width: 34px;
  height: 2px;
  background: #dc1533;
  content: "";
  transform-origin: left;
  animation: sv4DetailUnderline .72s cubic-bezier(.22,1,.36,1) both;
}
body.services-v4[data-scroll-detail="underline"] main > section.sv4-detail-active.is-scroll-up :is(h1,h2)::after { transform-origin: right; }
@keyframes sv4DetailUnderline { 0% { opacity: 0; transform: scaleX(0); } 34%,70% { opacity: 1; transform: scaleX(1); } 100% { opacity: 0; transform: scaleX(.55); } }

/* 03 — un petit angle architectural dans le coin du contenu */
body.services-v4[data-scroll-detail="corner"] main > section > .container { position: relative; }
body.services-v4[data-scroll-detail="corner"] main > section.sv4-detail-active > .container::after {
  position: absolute;
  z-index: 3;
  top: -8px;
  right: 0;
  width: 22px;
  height: 22px;
  border-top: 1px solid #df1635;
  border-right: 1px solid #df1635;
  content: "";
  pointer-events: none;
  animation: sv4DetailCorner .72s cubic-bezier(.22,1,.36,1) both;
}
@keyframes sv4DetailCorner { 0% { opacity: 0; transform: translate(-7px,7px) scale(.6); } 35%,68% { opacity: 1; transform: translate(0,0) scale(1); } 100% { opacity: 0; transform: translate(3px,-3px) scale(.86); } }

/* 04 — un repère éditorial temporaire, par exemple 03 / 06 */
body.services-v4[data-scroll-detail="index"] main > section { position: relative; }
body.services-v4[data-scroll-detail="index"] main > section.sv4-detail-active::after {
  position: absolute;
  z-index: 3;
  right: max(18px,calc((100vw - 1180px)/2));
  top: 22px;
  color: #d71533;
  content: attr(data-detail-index);
  font: 600 .65rem "Teko",sans-serif;
  letter-spacing: .12em;
  pointer-events: none;
  animation: sv4DetailIndex .74s cubic-bezier(.22,1,.36,1) both;
}
@keyframes sv4DetailIndex { 0% { opacity: 0; transform: translateY(6px); } 34%,68% { opacity: .85; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-4px); } }

@media (max-width: 760px) {
  .sv4-detail-picker { right: 7px; bottom: 72px; }
  .sv4-detail-picker > span { display: none; }
  body.services-v4[data-scroll-detail="corner"] main > section.sv4-detail-active > .container::after { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-detail-picker { display: none !important; }
}

/* Services — transition cinématique équilibrée */
.sv4-scroll-signature {
  position: fixed;
  z-index: 860;
  left: 0;
  top: calc(50% - 58px);
  width: 100%;
  height: 116px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform,opacity;
}
.sv4-scroll-signature.is-down { visibility: visible; animation: sv4SignatureDown .84s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-signature.is-up { visibility: visible; animation: sv4SignatureUp .84s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-signature > i,
.sv4-scroll-signature > b {
  position: absolute;
  display: block;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg,transparent,#e11635 26%,#e11635 88%,rgba(225,22,53,0));
  box-shadow: 0 0 7px rgba(225,22,53,.26);
}
.sv4-scroll-signature > i { top: 25px; left: 0; }
.sv4-scroll-signature > b { right: 0; bottom: 25px; transform: rotate(180deg); }
.sv4-scroll-signature.is-down > i { animation: sv4SignatureLineLeft .8s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-signature.is-down > b { animation: sv4SignatureLineRight .8s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-signature.is-up > i { animation: sv4SignatureLineLeft .8s cubic-bezier(.22,1,.36,1) reverse both; }
.sv4-scroll-signature.is-up > b { animation: sv4SignatureLineRight .8s cubic-bezier(.22,1,.36,1) reverse both; }
.sv4-scroll-signature > span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 13px;
  min-width: 218px;
  padding: 11px 17px 10px 14px;
  color: #fff;
  background: rgba(8,8,10,.88);
  border-left: 2px solid #df1534;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  transform: translate(-50%,-50%);
}
.sv4-scroll-signature > span small { color: #e31635; font: 600 .66rem "Teko",sans-serif; letter-spacing: .12em; }
.sv4-scroll-signature > span strong { font: 600 1.18rem "Teko",sans-serif; letter-spacing: .045em; line-height: 1; text-transform: uppercase; }
.sv4-scroll-signature.is-down > span { animation: sv4SignatureLabelDown .82s cubic-bezier(.22,1,.36,1) both; }
.sv4-scroll-signature.is-up > span { animation: sv4SignatureLabelUp .82s cubic-bezier(.22,1,.36,1) both; }

.services-v4 main > section > .container.sv4-cinematic-down { animation: sv4CinematicDown .72s cubic-bezier(.16,1,.3,1) both; }
.services-v4 main > section > .container.sv4-cinematic-up { animation: sv4CinematicUp .72s cubic-bezier(.16,1,.3,1) both; }

@keyframes sv4SignatureDown {
  0% { opacity: 0; transform: translateY(-34px); }
  22%,70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(34px); }
}
@keyframes sv4SignatureUp {
  0% { opacity: 0; transform: translateY(34px); }
  22%,70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-34px); }
}
@keyframes sv4SignatureLineLeft {
  0% { opacity: 0; transform: translateX(-75%); }
  35%,65% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(55%); }
}
@keyframes sv4SignatureLineRight {
  0% { opacity: 0; transform: translateX(75%) rotate(180deg); }
  35%,65% { opacity: 1; transform: translateX(0) rotate(180deg); }
  100% { opacity: 0; transform: translateX(-55%) rotate(180deg); }
}
@keyframes sv4SignatureLabelDown {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate(-50%,-42%); }
  35%,66% { opacity: 1; clip-path: inset(0); transform: translate(-50%,-50%); }
  100% { opacity: 0; clip-path: inset(0 0 0 100%); transform: translate(-50%,-58%); }
}
@keyframes sv4SignatureLabelUp {
  0% { opacity: 0; clip-path: inset(0 0 0 100%); transform: translate(-50%,-58%); }
  35%,66% { opacity: 1; clip-path: inset(0); transform: translate(-50%,-50%); }
  100% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate(-50%,-42%); }
}
@keyframes sv4CinematicDown {
  0% { opacity: .45; clip-path: inset(0 0 9% 0); transform: translate3d(0,24px,0); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0); }
}
@keyframes sv4CinematicUp {
  0% { opacity: .45; clip-path: inset(9% 0 0 0); transform: translate3d(0,-24px,0); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0); }
}

@media (max-width: 760px) {
  .sv4-scroll-signature { top: calc(50% - 48px); height: 96px; }
  .sv4-scroll-signature > i,
  .sv4-scroll-signature > b { width: 28%; }
  .sv4-scroll-signature > i { top: 19px; }
  .sv4-scroll-signature > b { bottom: 19px; }
  .sv4-scroll-signature > span { min-width: 188px; padding: 9px 12px; }
  .sv4-scroll-signature > span strong { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-scroll-signature { display: none !important; }
}

/* Services — révélation moderne intégrée aux sections */
.sv4-scroll-signature,
.sv4-detail-picker,
.sv4-scroll-accent { display: none !important; }

body.services-v4 main > section { position: relative; isolation: isolate; overflow: hidden; }
body.services-v4 main > section::before {
  position: absolute;
  z-index: 5;
  left: -28%;
  top: 0;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg,transparent 0%,rgba(225,20,52,.32) 35%,#f12a48 78%,rgba(255,255,255,.92) 100%);
  box-shadow: 0 0 9px rgba(225,20,52,.42),0 7px 28px rgba(225,20,52,.13);
  content: "";
  opacity: 0;
  pointer-events: none;
  will-change: transform,opacity;
}
body.services-v4 main > section::after {
  position: absolute;
  z-index: 0;
  left: -20%;
  top: -130px;
  width: 36%;
  height: 260px;
  background: radial-gradient(ellipse at 50% 0,rgba(210,12,43,.13),transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  will-change: transform,opacity;
}
body.services-v4 main > section.sv4-modern-in::before { animation: sv4ModernBeam .9s cubic-bezier(.2,.8,.2,1) both; }
body.services-v4 main > section.sv4-modern-in::after { animation: sv4ModernGlow .9s cubic-bezier(.2,.8,.2,1) both; }
body.services-v4 main > section.sv4-modern-in.is-scroll-up::before { animation-direction: reverse; }
body.services-v4 main > section.sv4-modern-in.is-scroll-up::after { animation-direction: reverse; }

body.services-v4 main > section > .container.sv4-modern-content > * {
  animation: sv4ModernElement .72s cubic-bezier(.16,1,.3,1) both;
}
body.services-v4 main > section > .container.sv4-modern-content > *:nth-child(2) { animation-delay: 55ms; }
body.services-v4 main > section > .container.sv4-modern-content > *:nth-child(3) { animation-delay: 105ms; }
body.services-v4 main > section > .container.sv4-modern-content > *:nth-child(4) { animation-delay: 145ms; }
body.services-v4 main > section.is-scroll-up > .container.sv4-modern-content > * { animation-name: sv4ModernElementUp; }

@keyframes sv4ModernBeam {
  0% { opacity: 0; transform: translate3d(0,0,0) scaleX(.35); }
  18%,72% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(460%,0,0) scaleX(1); }
}
@keyframes sv4ModernGlow {
  0% { opacity: 0; transform: translate3d(0,0,0) scaleX(.7); }
  28%,62% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(340%,0,0) scaleX(1.15); }
}
@keyframes sv4ModernElement {
  0% { opacity: .12; transform: translate3d(0,26px,0) scale(.985); filter: blur(5px); }
  55% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
}
@keyframes sv4ModernElementUp {
  0% { opacity: .12; transform: translate3d(0,-26px,0) scale(.985); filter: blur(5px); }
  55% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
}

@media (max-width: 760px) {
  body.services-v4 main > section::before { width: 42%; left: -42%; }
  body.services-v4 main > section::after { width: 54%; left: -42%; }
  body.services-v4 main > section > .container.sv4-modern-content > * { animation-duration: .62s; }
}

@media (prefers-reduced-motion: reduce) {
  body.services-v4 main > section::before,
  body.services-v4 main > section::after { display: none !important; }
  body.services-v4 main > section > .container > * { animation: none !important; }
}

/* Services — Notre standard, édition premium */
.sv4-standard {
  padding-block: clamp(68px,7vw,94px);
  color: #151517;
  background:
    linear-gradient(90deg,rgba(148,139,129,.08) 1px,transparent 1px) 50% 0 / min(8.333vw,120px) 100%,
    #efede9;
}
.sv4-standard-head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}
.sv4-standard-head h2 {
  max-width: 760px;
  margin: 5px 0 0;
  font-size: clamp(3.2rem,5.4vw,5.7rem);
  line-height: .82;
  letter-spacing: -.035em;
}
.sv4-standard-head h2 em { color: #a60820; font-style: normal; }
.sv4-standard-head > p {
  max-width: 430px;
  margin: 0 0 4px;
  padding-left: 22px;
  color: #615d58;
  border-left: 1px solid #bdb6ad;
  font-size: .86rem;
  line-height: 1.65;
}
.sv4-standard-stage {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  min-height: 420px;
  background: #101012;
  box-shadow: 0 28px 65px rgba(28,24,21,.14);
}
.sv4-standard-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #171719;
}
.sv4-standard-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(8,8,10,.02) 34%,rgba(8,8,10,.88) 100%),linear-gradient(90deg,rgba(8,8,10,.16),transparent 55%);
  content: "";
}
.sv4-standard-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .8s cubic-bezier(.22,1,.36,1),filter .5s ease;
}
.sv4-standard-stage:hover .sv4-standard-visual img { transform: scale(1.055); filter: saturate(.9) contrast(1.04); }
.sv4-standard-stamp {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 15px;
  min-width: 164px;
  padding: 11px 12px;
  color: #fff;
  background: rgba(9,9,11,.82);
  border: 1px solid rgba(255,255,255,.17);
  backdrop-filter: blur(10px);
}
.sv4-standard-stamp small { grid-column: 1; color: #e31a37; font-size: .48rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sv4-standard-stamp strong { grid-column: 1; font: 600 1.22rem "Teko",sans-serif; letter-spacing: .04em; line-height: 1; text-transform: uppercase; }
.sv4-standard-stamp i { grid-column: 2; grid-row: 1 / 3; align-self: center; display: grid; place-items: center; width: 27px; height: 27px; color: #fff; background: #b50a23; border-radius: 50%; font-size: .72rem; font-style: normal; }
.sv4-standard-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 2px;
  color: #fff;
}
.sv4-standard-visual figcaption span { color: #e31a37; font-size: .49rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sv4-standard-visual figcaption b { font: 600 1.42rem "Teko",sans-serif; letter-spacing: .025em; text-transform: uppercase; }

.sv4-standard .sv4-standard-list {
  display: grid;
  align-content: stretch;
  padding: 0 30px;
  color: #fff;
  background: #101012;
}
.sv4-standard .sv4-standard-list article {
  position: relative;
  display: grid;
  grid-template-columns: 34px 28px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 22px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: padding .25s ease,background .25s ease;
}
.sv4-standard .sv4-standard-list article:hover { padding-right: 10px; padding-left: 10px; background: rgba(255,255,255,.025); }
.sv4-standard .sv4-standard-list article > span { align-self: start; padding-top: 2px; color: #e31836; font: 600 .92rem "Teko",sans-serif; }
.sv4-standard .sv4-standard-list article > i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: #9f071d;
  border-radius: 50%;
  font-size: .58rem;
  font-style: normal;
}
.sv4-standard .sv4-standard-list h3 { margin: 0 0 3px; color: #fff; font: 600 1.35rem "Teko",sans-serif; letter-spacing: .015em; text-transform: uppercase; }
.sv4-standard .sv4-standard-list p { max-width: 440px; margin: 0; color: #8f8f94; font-size: .75rem; line-height: 1.5; }
.sv4-standard .sv4-standard-list article > b { color: #65656a; font-size: .46rem; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.sv4-standard-proof {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0 16px;
}
.sv4-standard-proof > span { display: grid; grid-template-columns: auto 1fr; gap: 7px; align-items: center; }
.sv4-standard-proof > span i { color: #fff; font: 600 1.15rem "Teko",sans-serif; font-style: normal; }
.sv4-standard-proof > span b { max-width: 67px; color: #6f6f74; font-size: .43rem; line-height: 1.15; letter-spacing: .08em; text-transform: uppercase; }
.sv4-standard-proof > a { display: flex; align-items: center; gap: 18px; padding: 10px 12px; color: #fff; border: 1px solid rgba(255,255,255,.18); font-size: .52rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease,border-color .2s ease; }
.sv4-standard-proof > a b { color: #e31836; font-size: .8rem; }
.sv4-standard-proof > a:hover { background: #a60820; border-color: #a60820; }
.sv4-standard-proof > a:hover b { color: #fff; }

@media (max-width: 1000px) {
  .sv4-standard-head { grid-template-columns: 1fr .72fr; gap: 35px; }
  .sv4-standard-stage { grid-template-columns: .8fr 1.2fr; }
  .sv4-standard .sv4-standard-list { padding-inline: 22px; }
  .sv4-standard-proof > span:nth-child(2) { display: none; }
  .sv4-standard-proof { grid-template-columns: 1fr auto; }
}

@media (max-width: 760px) {
  .sv4-standard { padding-block: 58px; }
  .sv4-standard-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 24px; }
  .sv4-standard-head h2 { font-size: clamp(3rem,13vw,4rem); }
  .sv4-standard-head > p { padding-left: 15px; }
  .sv4-standard-stage { grid-template-columns: 1fr; min-height: 0; }
  .sv4-standard-visual { min-height: 265px; }
  .sv4-standard .sv4-standard-list { padding-inline: 17px; }
  .sv4-standard .sv4-standard-list article { grid-template-columns: 26px 23px minmax(0,1fr); gap: 9px; padding: 18px 0; }
  .sv4-standard .sv4-standard-list article > b { display: none; }
  .sv4-standard .sv4-standard-list h3 { font-size: 1.18rem; }
  .sv4-standard .sv4-standard-list p { font-size: .7rem; }
  .sv4-standard-proof { grid-template-columns: 1fr auto; gap: 8px; }
  .sv4-standard-proof > a { gap: 10px; padding-inline: 9px; }
}

/* Services — parcours chantier premium */
.sv4-process {
  padding-block: clamp(68px,7vw,92px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 0,rgba(156,7,29,.18),transparent 29%),
    linear-gradient(135deg,rgba(255,255,255,.025) 1px,transparent 1px) 0 0 / 28px 28px,
    #0c0c0e;
}
.sv4-process-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}
.sv4-process-head h2 {
  margin: 5px 0 0;
  font-size: clamp(3.15rem,5.2vw,5.45rem);
  line-height: .83;
  letter-spacing: -.03em;
}
.sv4-process-head h2 em { color: #d51634; font-style: normal; }
.sv4-process-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(340px,100%);
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.13);
  border-left-color: #c90f2c;
}
.sv4-process-promise > span { color: #df1735; font: 600 1.5rem "Teko",sans-serif; }
.sv4-process-promise p { display: grid; gap: 2px; margin: 0; }
.sv4-process-promise p b { color: #fff; font-size: .69rem; text-transform: uppercase; }
.sv4-process-promise p small { color: #79797f; font-size: .61rem; line-height: 1.4; }

.sv4-process .sv4-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 9px;
}
.sv4-process .sv4-process-grid::before {
  position: absolute;
  z-index: 0;
  top: 31px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg,#a90922 0%,#d51634 70%,rgba(213,22,52,.28) 100%);
  content: "";
}
.sv4-process .sv4-process-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 252px;
  padding: 0 19px 17px;
  overflow: hidden;
  background: #131315;
  border: 1px solid rgba(255,255,255,.11);
  transition: border-color .28s ease,background .28s ease,transform .35s cubic-bezier(.22,1,.36,1);
}
.sv4-process .sv4-process-grid article:last-child { border-right: 1px solid rgba(255,255,255,.11); }
.sv4-process .sv4-process-grid article::before {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #d51634;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.sv4-process .sv4-process-grid article:hover {
  z-index: 2;
  background: #18181b;
  border-color: rgba(221,22,53,.48);
  transform: translateY(-6px);
}
.sv4-process .sv4-process-grid article:hover::before { transform: scaleX(1); }
.sv4-process .sv4-process-grid article header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sv4-process .sv4-process-grid article header > span { margin: 0; color: #e01837; font: 600 1.05rem "Teko",sans-serif; }
.sv4-process .sv4-process-grid article header i {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  background: #111113;
  border: 2px solid #d51634;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #131315,0 0 0 6px rgba(213,22,52,.25);
  transition: background .2s ease,box-shadow .2s ease;
}
.sv4-process .sv4-process-grid article:hover header i { background: #d51634; box-shadow: 0 0 0 5px #18181b,0 0 13px 6px rgba(213,22,52,.18); }
.sv4-process .sv4-process-grid article > div { padding: 24px 0 17px; }
.sv4-process .sv4-process-grid article > div small { display: block; margin-bottom: 4px; color: #67676d; font-size: .48rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.sv4-process .sv4-process-grid h3 { margin: 0 0 8px; color: #fff; font: 600 1.42rem "Teko",sans-serif; letter-spacing: .015em; text-transform: uppercase; }
.sv4-process .sv4-process-grid p { margin: 0; color: #8c8c92; font-size: .74rem; line-height: 1.55; }
.sv4-process .sv4-process-grid article footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.09); }
.sv4-process .sv4-process-grid article footer b { color: #68686e; font-size: .48rem; letter-spacing: .13em; text-transform: uppercase; }
.sv4-process .sv4-process-grid article footer span { color: #df1735; font-size: .8rem; }
.sv4-process .sv4-process-grid article:last-child footer span { display: grid; place-items: center; width: 19px; height: 19px; color: #fff; background: #a70820; border-radius: 50%; font-size: .52rem; }

.sv4-process-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 17px;
  padding: 15px 17px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
}
.sv4-process-footer p { display: flex; align-items: center; gap: 12px; margin: 0; color: #75757b; font-size: .67rem; }
.sv4-process-footer p i { display: block; flex: 0 0 auto; width: 7px; height: 7px; background: #d51634; border-radius: 50%; box-shadow: 0 0 0 5px rgba(213,22,52,.11); }
.sv4-process-footer p b { color: #fff; }
.sv4-process-footer > a { display: flex; align-items: center; gap: 24px; flex: 0 0 auto; color: #fff; font-size: .56rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.sv4-process-footer > a span { color: #e01837; font-size: .86rem; transition: transform .2s ease; }
.sv4-process-footer > a:hover span { transform: translateX(4px); }

@media (max-width: 1000px) {
  .sv4-process .sv4-process-grid { grid-template-columns: repeat(2,1fr); }
  .sv4-process .sv4-process-grid::before { display: none; }
  .sv4-process .sv4-process-grid article { min-height: 230px; }
}

@media (max-width: 760px) {
  .sv4-process { padding-block: 58px; }
  .sv4-process-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 25px; }
  .sv4-process-head h2 { font-size: clamp(3rem,13vw,4rem); }
  .sv4-process-promise { width: 100%; }
  .sv4-process .sv4-process-grid { grid-template-columns: 1fr; gap: 7px; }
  .sv4-process .sv4-process-grid article { min-height: 0; padding-inline: 16px; }
  .sv4-process .sv4-process-grid article > div { padding-block: 18px 14px; }
  .sv4-process-footer { align-items: flex-start; flex-direction: column; gap: 14px; padding: 14px; }
  .sv4-process-footer p { align-items: flex-start; }
  .sv4-process-footer p span { display: grid; gap: 3px; }
}

/* Services — urgence toiture, intervention prioritaire */
.sv4-emergency {
  padding-block: 28px;
  color: #fff;
  background: #e8e5e0;
}
.sv4-emergency-shell {
  display: grid;
  grid-template-columns: minmax(210px,.72fr) minmax(360px,1.28fr) minmax(270px,.86fr);
  min-height: 278px;
  overflow: hidden;
  background: #101012;
  box-shadow: 0 24px 58px rgba(28,23,20,.17);
}
.sv4-emergency-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #171719;
}
.sv4-emergency-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(9,9,11,.08) 30%,rgba(9,9,11,.88) 100%),linear-gradient(90deg,transparent 55%,rgba(9,9,11,.32));
  content: "";
}
.sv4-emergency-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.08);
  transition: transform .7s cubic-bezier(.22,1,.36,1),filter .4s ease;
}
.sv4-emergency-shell:hover .sv4-emergency-visual img { transform: scale(1.055); filter: saturate(.9) contrast(1.08); }
.sv4-emergency-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: grid;
  gap: 1px;
}
.sv4-emergency-visual figcaption span { color: #e21a38; font-size: .46rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sv4-emergency-visual figcaption b { font: 600 1.18rem "Teko",sans-serif; text-transform: uppercase; }

.sv4-emergency-copy {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 31px clamp(25px,3.2vw,45px);
  overflow: hidden;
  background: linear-gradient(125deg,#a4071e 0%,#c90e2c 100%);
}
.sv4-emergency-copy::before {
  position: absolute;
  right: -7px;
  bottom: -36px;
  color: rgba(255,255,255,.055);
  content: "7/7";
  font: 700 10.5rem/.72 "Teko",sans-serif;
  letter-spacing: -.07em;
  pointer-events: none;
}
.sv4-emergency-live {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.sv4-emergency-live > i {
  position: relative;
  display: block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.14);
}
.sv4-emergency-live > i::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  content: "";
  animation: sv4EmergencyPulse 1.8s ease-out infinite;
}
.sv4-emergency-live span { color: #fff; }
.sv4-emergency-live b { padding-left: 8px; color: #f7c8cf; border-left: 1px solid rgba(255,255,255,.35); }
.sv4-emergency-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(2.55rem,3.65vw,4.05rem);
  line-height: .84;
  letter-spacing: -.025em;
}
.sv4-emergency-copy h2 em { color: #1a0c0f; font-style: normal; }
.sv4-emergency-lead { position: relative; z-index: 1; max-width: 470px; margin: 0; color: #f2c0c8; font-size: .73rem; line-height: 1.5; }
.sv4-emergency-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 20px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.sv4-emergency-meta > span { display: grid; gap: 2px; }
.sv4-emergency-meta small { color: #e8aab4; font-size: .43rem; letter-spacing: .1em; text-transform: uppercase; }
.sv4-emergency-meta b { color: #fff; font-size: .6rem; }

.sv4-emergency-contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 25px 24px;
  background: #101012;
}
.sv4-emergency-contact > span { margin-bottom: 11px; color: #707076; font-size: .47rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.sv4-emergency-call {
  position: relative;
  display: grid;
  padding: 13px 38px 12px 14px;
  color: #121214;
  background: #fff;
  transition: color .22s ease,background .22s ease,transform .22s ease;
}
.sv4-emergency-call small { color: #8b8783; font-size: .46rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sv4-emergency-call strong { font: 600 1.72rem "Teko",sans-serif; letter-spacing: .015em; line-height: 1; }
.sv4-emergency-call > i { position: absolute; right: 13px; top: 50%; color: #be0c27; font-size: .9rem; font-style: normal; transform: translateY(-50%); }
.sv4-emergency-call:hover { color: #fff; background: #ac0922; transform: translateY(-2px); }
.sv4-emergency-call:hover small,
.sv4-emergency-call:hover i { color: #fff; }
.sv4-emergency-whatsapp {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.17);
  transition: border-color .2s ease,background .2s ease;
}
.sv4-emergency-whatsapp span { font-size: .57rem; font-weight: 850; text-transform: uppercase; }
.sv4-emergency-whatsapp b { color: #65656b; font-size: .43rem; }
.sv4-emergency-whatsapp i { color: #d91634; font-style: normal; }
.sv4-emergency-whatsapp:hover { background: rgba(255,255,255,.05); border-color: rgba(218,22,52,.58); }
.sv4-emergency-contact > p { display: flex; align-items: center; gap: 7px; margin: 13px 0 0; color: #66666c; font-size: .47rem; }
.sv4-emergency-contact > p i { display: grid; place-items: center; width: 16px; height: 16px; color: #fff; background: #920719; border-radius: 50%; font-size: .45rem; font-style: normal; }

@keyframes sv4EmergencyPulse {
  0% { opacity: .8; transform: scale(.65); }
  75%,100% { opacity: 0; transform: scale(1.65); }
}

@media (max-width: 1000px) {
  .sv4-emergency-shell { grid-template-columns: 200px 1fr; }
  .sv4-emergency-contact { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .75fr; gap: 10px; align-items: center; padding: 17px 20px; }
  .sv4-emergency-contact > span,
  .sv4-emergency-contact > p { display: none; }
  .sv4-emergency-whatsapp { margin-top: 0; }
}

@media (max-width: 760px) {
  .sv4-emergency { padding-block: 18px; }
  .sv4-emergency-shell { grid-template-columns: 1fr; }
  .sv4-emergency-visual { min-height: 175px; }
  .sv4-emergency-copy { padding: 28px 21px; }
  .sv4-emergency-copy h2 { font-size: clamp(2.75rem,12vw,3.6rem); }
  .sv4-emergency-contact { grid-column: auto; display: flex; padding: 19px; }
  .sv4-emergency-contact > span,
  .sv4-emergency-contact > p { display: flex; }
  .sv4-emergency-call,
  .sv4-emergency-whatsapp { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .sv4-emergency-live > i::after { animation: none !important; }
}

/* Services — conclusion projet premium */
.sv4-final {
  padding-block: clamp(64px,7vw,90px);
  color: #171719;
  background:
    linear-gradient(90deg,rgba(116,109,101,.07) 1px,transparent 1px) 50% 0 / min(8.333vw,120px) 100%,
    #dedcd8;
}
.sv4-final-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(330px,.7fr);
  min-height: 380px;
  overflow: hidden;
  background: #ebe9e5;
  border: 1px solid rgba(87,80,73,.16);
  box-shadow: 0 26px 65px rgba(29,25,22,.12);
}
.sv4-final-shell::before {
  position: absolute;
  left: -12px;
  bottom: -55px;
  color: rgba(33,31,29,.035);
  content: "PROJET";
  font: 700 clamp(8rem,17vw,14rem)/.7 "Teko",sans-serif;
  letter-spacing: -.055em;
  pointer-events: none;
}
.sv4-final-copy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px,5vw,66px);
}
.sv4-final-copy .sv4-kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; color: #a50820; }
.sv4-final-copy .sv4-kicker i { display: block; width: 18px; height: 1px; background: #b00922; }
.sv4-final-copy h2 {
  max-width: 710px;
  margin: 0;
  color: #151517;
  font-size: clamp(3.25rem,5.7vw,6rem);
  line-height: .82;
  letter-spacing: -.035em;
}
.sv4-final-copy h2 em { color: #a40820; font-style: normal; }
.sv4-final-lead { max-width: 570px; margin: 19px 0 0; color: #625e59; font-size: .85rem; line-height: 1.65; }
.sv4-final-reassurance { display: flex; flex-wrap: wrap; gap: 10px 23px; margin-top: 24px; padding-top: 17px; border-top: 1px solid rgba(91,84,77,.18); }
.sv4-final-reassurance > span { display: flex; align-items: center; gap: 7px; }
.sv4-final-reassurance i { display: grid; place-items: center; width: 17px; height: 17px; color: #fff; background: #a40820; border-radius: 50%; font-size: .46rem; font-style: normal; }
.sv4-final-reassurance b { color: #55514d; font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; }

.sv4-final-contact {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 27px;
  color: #fff;
  background: #101012;
}
.sv4-final-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 33%;
  background: #d31533;
  content: "";
}
.sv4-final-contact header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 17px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.sv4-final-contact header span { color: #77777d; font-size: .49rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.sv4-final-contact header b { color: #d81735; font: 600 1rem "Teko",sans-serif; }
.sv4-final-contact .sv4-final-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 13px 15px;
  color: #fff;
  background: linear-gradient(120deg,#9f071d,#c40d29);
  border: 1px solid #c40d29;
  text-transform: none;
  transition: transform .25s ease,box-shadow .25s ease,background .25s ease;
}
.sv4-final-contact .sv4-final-primary > span,
.sv4-final-contact .sv4-final-phone > span { display: grid; gap: 2px; }
.sv4-final-contact .sv4-final-primary small,
.sv4-final-contact .sv4-final-phone small { font-size: .45rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sv4-final-contact .sv4-final-primary small { color: #efadba; }
.sv4-final-contact .sv4-final-primary strong { font: 600 1.33rem "Teko",sans-serif; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
.sv4-final-contact .sv4-final-primary > i { font-size: 1rem; font-style: normal; transition: transform .2s ease; }
.sv4-final-contact .sv4-final-primary:hover { background: #b10823; box-shadow: 0 12px 27px rgba(166,7,30,.3); transform: translateY(-2px); }
.sv4-final-contact .sv4-final-primary:hover > i { transform: translateX(4px); }
.sv4-final-choice { position: relative; height: 27px; text-align: center; }
.sv4-final-choice::before { position: absolute; top: 50%; right: 0; left: 0; height: 1px; background: rgba(255,255,255,.1); content: ""; }
.sv4-final-choice span { position: relative; z-index: 1; display: inline-block; padding: 7px 8px; color: #55555b; background: #101012; font-size: .43rem; text-transform: uppercase; }
.sv4-final-contact .sv4-final-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 13px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.17);
  transition: border-color .2s ease,background .2s ease;
}
.sv4-final-contact .sv4-final-phone small { color: #68686e; }
.sv4-final-contact .sv4-final-phone strong { color: #fff; font: 600 1.65rem "Teko",sans-serif; line-height: 1; }
.sv4-final-contact .sv4-final-phone > i { color: #d81735; font-style: normal; }
.sv4-final-contact .sv4-final-phone:hover { background: rgba(255,255,255,.045); border-color: rgba(216,23,53,.6); }
.sv4-final-contact footer { display: flex; align-items: center; gap: 8px; margin-top: 17px; color: #626268; font-size: .48rem; }
.sv4-final-contact footer > i { display: block; width: 6px; height: 6px; background: #d81735; border-radius: 50%; box-shadow: 0 0 0 4px rgba(216,23,53,.1); }
.sv4-final-contact footer b { color: #909096; }

@media (max-width: 900px) {
  .sv4-final-shell { grid-template-columns: 1fr minmax(300px,.75fr); }
  .sv4-final-copy { padding: 38px 30px; }
  .sv4-final-contact { padding: 22px; }
}

@media (max-width: 760px) {
  .sv4-final { padding-block: 54px; }
  .sv4-final-shell { grid-template-columns: 1fr; }
  .sv4-final-copy { padding: 34px 22px 31px; }
  .sv4-final-copy h2 { font-size: clamp(3rem,13vw,4rem); }
  .sv4-final-lead { margin-top: 15px; font-size: .78rem; }
  .sv4-final-reassurance { gap: 9px 15px; margin-top: 19px; }
  .sv4-final-contact { padding: 20px; }
}

/* Retour à la conclusion Services d'origine */
.sv4-final {
  padding: 86px 0;
  color: #fff;
  background: #0b0b0d;
}

@media (max-width: 760px) {
  .sv4-final { padding: 62px 0; }
}

/* Footer d'accueil partagé avec la page Services */
.services-v4 .site-footer {
  --footer-red: #d80d28;
  --footer-muted: #96969b;
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #f7f7f7;
  border-top: 0;
  background:
    radial-gradient(900px 440px at 90% 36%,rgba(142,6,24,.16),transparent 62%),
    #08080a;
}
.services-v4 .site-footer::before {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: auto;
  height: auto;
  margin: 0;
  color: rgba(255,255,255,.018);
  background: none;
  content: "CHRIS & TOIT";
  font: 700 clamp(8rem,21vw,19rem)/.7 "Teko",sans-serif;
  letter-spacing: -.035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}
.services-v4 .site-footer::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
  content: "";
}
.services-v4 .site-footer .container {
  position: relative;
  z-index: 1;
  width: min(1180px,92vw);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}

.real-v4 .site-footer {
  --footer-red: #d80d28;
  --footer-muted: #96969b;
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #f7f7f7;
  border-top: 0;
  background: radial-gradient(900px 440px at 90% 36%,rgba(142,6,24,.16),transparent 62%),#08080a;
}
.real-v4 .site-footer::before {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: auto;
  height: auto;
  margin: 0;
  color: rgba(255,255,255,.018);
  background: none;
  content: "CHRIS & TOIT";
  font: 700 clamp(8rem,21vw,19rem)/.7 "Teko",sans-serif;
  letter-spacing: -.035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}
.real-v4 .site-footer::after { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent); content: ""; }
.real-v4 .site-footer .container { position: relative; z-index: 1; width: min(1180px,92vw); max-width: 1180px; margin-inline: auto; padding-inline: 0; }

/* Réalisations — hero portfolio éditorial */
.real-v4 .rv4-hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  color: #fff;
  background:
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px) 50% 0 / min(8.333vw,120px) 100%,
    radial-gradient(650px 420px at 72% 28%,rgba(153,7,28,.16),transparent 68%),
    #09090b;
}
.real-v4 .rv4-hero::before {
  left: -18px;
  bottom: -34px;
  color: rgba(255,255,255,.016);
  content: "RÉEL";
  font-size: clamp(12rem,25vw,23rem);
  line-height: .65;
  transform: none;
}
.real-v4 .rv4-hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc((100vw - min(1180px,92vw))/2);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,transparent,rgba(217,17,46,.45) 18%,rgba(255,255,255,.09) 78%,transparent);
  content: "";
}
.real-v4 .rv4-hero-grid {
  grid-template-columns: minmax(350px,.76fr) minmax(0,1.24fr);
  gap: clamp(44px,6vw,82px);
  min-height: 640px;
  padding: 49px 0 54px;
}
.real-v4 .rv4-hero-copy { position: relative; z-index: 2; }
.real-v4 .rv4-eyebrow { gap: 12px; margin-bottom: 17px; color: #a5a5aa; font-size: .6rem; letter-spacing: .17em; }
.real-v4 .rv4-eyebrow span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(219,17,46,.52);
  font-size: .55rem;
  letter-spacing: 0;
}
.real-v4 .rv4-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(4.7rem,7.4vw,7.35rem);
  line-height: .8;
  letter-spacing: -.035em;
}
.real-v4 .rv4-hero h1 em { color: #dc1533; }
.real-v4 .rv4-hero-lead { max-width: 500px; color: #919197; font-size: .9rem; line-height: 1.68; }
.real-v4 .rv4-hero-actions { margin-top: 24px; }
.real-v4 .rv4-primary,
.real-v4 .rv4-secondary { min-height: 48px; padding-inline: 15px; font-size: .58rem; }
.real-v4 .rv4-primary { min-width: 195px; background: linear-gradient(110deg,#9e071d,#c20d29); }
.real-v4 .rv4-secondary span { color: #dc1533; }
.real-v4 .rv4-hero-proof { gap: 10px 20px; margin-top: 24px; padding-top: 16px; }
.real-v4 .rv4-hero-proof span { display: flex; align-items: center; gap: 6px; color: #77777d; font-size: .48rem; }
.real-v4 .rv4-hero-proof span i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #fff;
  background: #9e071d;
  border-radius: 50%;
  font-size: .44rem;
  font-style: normal;
  letter-spacing: 0;
}
.real-v4 .rv4-hero-proof span:last-child i { color: #dc1533; background: transparent; border: 1px solid rgba(220,21,51,.5); font: 600 .55rem "Teko",sans-serif; }
.real-v4 .rv4-hero-proof b { color: #a4a4a9; font-weight: 750; }

.rv4-hero-showcase {
  position: relative;
  min-width: 0;
  height: 518px;
  margin-right: 22px;
}
.rv4-hero-showcase::before {
  position: absolute;
  inset: 15px -15px -15px 15px;
  border: 1px solid rgba(218,18,47,.34);
  content: "";
}
.rv4-showcase-main {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #19191b;
  box-shadow: 0 28px 65px rgba(0,0,0,.32);
}
.rv4-showcase-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(6,6,8,.04) 38%,rgba(6,6,8,.9) 100%),linear-gradient(90deg,rgba(6,6,8,.12),transparent 48%);
  content: "";
}
.rv4-showcase-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(.88) contrast(1.03);
  transition: transform 1s cubic-bezier(.22,1,.36,1),filter .5s ease;
}
.rv4-hero-showcase:hover .rv4-showcase-main > img { transform: scale(1.045); filter: saturate(1) contrast(1.03); }
.rv4-showcase-count {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  color: #aaaab0;
  background: rgba(8,8,10,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(9px);
  font: 500 .67rem "Teko",sans-serif;
  letter-spacing: .08em;
}
.rv4-showcase-count b { color: #e21837; font-size: 1rem; }
.rv4-showcase-main > figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.rv4-showcase-main > figcaption > span { display: grid; gap: 2px; }
.rv4-showcase-main figcaption small { color: #e31836; font-size: .5rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.rv4-showcase-main figcaption strong { color: #fff; font: 600 1.5rem "Teko",sans-serif; letter-spacing: .02em; text-transform: uppercase; }
.rv4-showcase-main > figcaption > b { color: #b4b4b8; font-size: .5rem; letter-spacing: .11em; text-transform: uppercase; }
.rv4-showcase-detail {
  position: absolute;
  z-index: 3;
  left: -31px;
  bottom: 76px;
  width: 176px;
  height: 125px;
  margin: 0;
  overflow: hidden;
  background: #151517;
  border: 7px solid #09090b;
  box-shadow: 0 18px 35px rgba(0,0,0,.36);
}
.rv4-showcase-detail::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(6,6,8,.84),transparent 65%); content: ""; }
.rv4-showcase-detail img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.rv4-hero-showcase:hover .rv4-showcase-detail img { transform: scale(1.06); }
.rv4-showcase-detail figcaption { position: absolute; z-index: 2; right: 9px; bottom: 7px; left: 9px; display: grid; }
.rv4-showcase-detail small { color: #df1735; font-size: .41rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.rv4-showcase-detail strong { color: #fff; font: 600 .9rem "Teko",sans-serif; text-transform: uppercase; }
.rv4-showcase-signature {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -58px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #737379;
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
}
.rv4-showcase-signature i { width: 34px; height: 1px; background: #d61533; }
.rv4-showcase-signature b { color: #aaaab0; white-space: nowrap; }
.rv4-hero-scroll {
  position: absolute;
  z-index: 3;
  left: max(4vw,calc((100vw - 1180px)/2));
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #626268;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.rv4-hero-scroll span { position: relative; display: block; width: 24px; height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.rv4-hero-scroll span::after { position: absolute; inset: 0; background: #d61533; content: ""; animation: rv4ScrollHint 2s ease-in-out infinite; }
@keyframes rv4ScrollHint { 0% { transform: translateX(-110%); } 55%,100% { transform: translateX(110%); } }

@media (max-width: 1000px) {
  .real-v4 .rv4-hero-grid { grid-template-columns: .82fr 1.18fr; gap: 35px; }
  .rv4-hero-showcase { height: 470px; margin-right: 15px; }
  .rv4-showcase-detail { left: -18px; width: 150px; height: 110px; }
}

@media (max-width: 760px) {
  .real-v4 .rv4-hero { min-height: 0; }
  .real-v4 .rv4-hero::after { display: none; }
  .real-v4 .rv4-hero-grid { grid-template-columns: 1fr; gap: 35px; min-height: 0; padding: 52px 0 67px; }
  .real-v4 .rv4-hero h1 { font-size: clamp(4.15rem,18vw,5.4rem); }
  .real-v4 .rv4-hero-lead { font-size: .82rem; }
  .real-v4 .rv4-primary,
  .real-v4 .rv4-secondary { flex: 1 1 165px; }
  .real-v4 .rv4-hero-proof { gap: 9px 15px; }
  .rv4-hero-showcase { height: 405px; margin: 0 8px 0 0; }
  .rv4-showcase-detail { left: -7px; bottom: 70px; width: 132px; height: 96px; border-width: 5px; }
  .rv4-showcase-main > figcaption { right: 15px; bottom: 15px; left: 15px; }
  .rv4-showcase-main figcaption strong { font-size: 1.2rem; }
  .rv4-showcase-main > figcaption > b { display: none; }
  .rv4-showcase-signature { display: none; }
  .rv4-hero-scroll { display: none; }
}

@media (max-width: 430px) {
  .rv4-hero-showcase { height: 350px; }
  .rv4-showcase-detail { width: 116px; height: 85px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv4-hero-scroll span::after { animation: none !important; }
}

/* Réalisations — comparateurs recalés sur des couples 1600 × 1000 */
.rv4-ba-card .before-after-stage {
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #111113;
  border: 1px solid rgba(30,27,24,.18);
  box-shadow: 0 17px 35px rgba(40,34,29,.1);
}
.rv4-ba-card .ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}
.rv4-ba-card .ba-before img,
.rv4-ba-card .ba-after img { filter: none; }
.rv4-ba-card .ba-divider { width: 1px; background: rgba(255,255,255,.94); box-shadow: 0 0 0 1px rgba(0,0,0,.16),0 0 18px rgba(0,0,0,.16); }
.rv4-ba-card .ba-handle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.76);
  background: rgba(10,10,12,.88);
  box-shadow: 0 8px 22px rgba(0,0,0,.28),inset 0 0 0 3px rgba(215,15,44,.72);
  backdrop-filter: blur(8px);
}
.rv4-ba-card .ba-handle::before { color: #fff; content: "‹  ›"; font-size: .88rem; letter-spacing: .12em; transform: translateX(.05em); }
.rv4-ba-card .ba-layer figcaption {
  top: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(10,10,12,.72);
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 0;
  backdrop-filter: blur(8px);
  font-size: .52rem;
  font-weight: 850;
}
.rv4-ba-card .ba-after figcaption { background: #a70820; border-color: #c90d2a; }

@media (max-width: 760px) {
  .rv4-ba-card .before-after-stage { min-height: 0; aspect-ratio: 16 / 10; }
  .rv4-ba-card .ba-handle { width: 42px; height: 42px; }
}
/* ========================================================================== 
   ABOUT V6 — a single, editorial and conversion-focused direction
   ========================================================================== */
.about-v6 {
  --about-red: #b20d22;
  --about-red-bright: #d7192d;
  --about-ink: #171719;
  --about-muted: #66625e;
  --about-paper: #f2eee8;
  --about-line: rgba(23, 23, 25, .14);
  color: var(--about-ink);
  background: #fff;
}
.about-v6 .container { width: min(1160px, 92vw); }
.about-v6 .about-section { padding-block: clamp(76px, 8vw, 112px); }
.about-v6 .brand,
.about-v6 .header-phone strong,
.about-v6 .header-cta { color: #fff; }
.about-v6 .menu-btn span { background: #fff; }
.about-v6 { overflow-x: clip; }
.about-v6 main h1,
.about-v6 main h2,
.about-v6 main h3 { text-wrap: balance; }
.about-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 15px; color: var(--about-red); font-size: .66rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.about-kicker > span { flex: 0 0 30px; height: 2px; background: currentColor; }
.about-btn { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 55px; padding: 13px 19px; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.about-btn:hover { transform: translateY(-3px); }
.about-btn span { font-size: 1rem; transition: transform .22s ease; }
.about-btn:hover span { transform: translateX(3px); }

.about-hero { position: relative; isolation: isolate; overflow: hidden; padding-top: clamp(58px, 6.5vw, 90px); color: #fff; background: radial-gradient(circle at 75% 28%, rgba(178,13,34,.2), transparent 28%), #0e0e10; }
.about-hero::before { content: "CHRIS & TOIT"; position: absolute; z-index: -1; left: 1vw; top: 5px; color: rgba(255,255,255,.025); font: 700 clamp(8rem, 18vw, 16rem)/1 "Teko", sans-serif; letter-spacing: -.04em; white-space: nowrap; pointer-events: none; }
.about-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg,#000,transparent 62%); pointer-events: none; }
.about-hero-grid { display: grid; grid-template-columns: minmax(0,.93fr) minmax(430px,1.07fr); gap: clamp(52px,7vw,96px); align-items: center; padding-bottom: clamp(54px,6vw,78px); }
.about-hero-copy { position: relative; z-index: 2; }
.about-hero .about-kicker { color: #dc1731; }
.about-hero h1 { max-width: 720px; margin: 0; font: 600 clamp(4.25rem,6.2vw,6.5rem)/.83 "Teko",sans-serif; letter-spacing: -.025em; text-transform: uppercase; }
.about-hero h1 em { color: #df1731; font-style: normal; }
.about-hero-lead { max-width: 610px; margin: 26px 0 0; color: #aaa9ad; font-size: 1.02rem; line-height: 1.7; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-btn-primary { color: #fff; background: var(--about-red-bright); }
.about-btn-primary:hover { background: #ec1b35; }
.about-btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.22); }
.about-btn-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.about-hero-trust { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 21px 0 0; padding: 0; color: #838287; font-size: .59rem; font-weight: 700; letter-spacing: .06em; list-style: none; text-transform: uppercase; }
.about-hero-trust li { display: flex; align-items: center; gap: 6px; }
.about-hero-trust span { color: #dc1731; }
.about-hero-visual { position: relative; min-height: 540px; padding: 17px 17px 22px 0; }
.about-hero-visual::before { content: ""; position: absolute; inset: 0 0 0 32px; border: 1px solid rgba(220,23,49,.52); }
.about-hero-visual figure { position: absolute; inset: 17px 17px 22px 0; margin: 0; overflow: hidden; background: #202024; box-shadow: 0 32px 75px rgba(0,0,0,.4); }
.about-hero-visual figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,4,5,.72),transparent 38%); }
.about-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; filter: saturate(.82) contrast(1.05); transition: transform 1s cubic-bezier(.2,.7,.2,1),filter .35s ease; }
.about-hero-visual:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.about-hero-caption { position: absolute; z-index: 2; left: 22px; bottom: 44px; display: grid; padding-left: 13px; border-left: 3px solid #dd1731; text-transform: uppercase; }
.about-hero-caption span { color: #d6d4d5; font-size: .56rem; font-weight: 800; letter-spacing: .14em; }
.about-hero-caption strong { margin-top: 3px; font: 600 1.45rem/1 "Teko",sans-serif; }
.about-experience { position: absolute; z-index: 3; right: 0; bottom: 0; display: flex; align-items: center; gap: 10px; min-width: 162px; padding: 14px 18px; color: #fff; background: var(--about-red-bright); box-shadow: 0 18px 35px rgba(95,3,17,.35); text-transform: uppercase; }
.about-experience strong { font: 600 3.45rem/.75 "Teko",sans-serif; }
.about-experience span { font-size: .57rem; font-weight: 800; line-height: 1.3; letter-spacing: .08em; }
.about-proof-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr) minmax(245px,.9fr); border-top: 1px solid rgba(255,255,255,.12); }
.about-proof-bar > div,.about-proof-bar > a { display: flex; align-items: center; gap: 14px; min-height: 108px; padding: 20px clamp(17px,2.2vw,29px); }
.about-proof-bar > * + * { border-left: 1px solid rgba(255,255,255,.1); }
.about-proof-bar > div:first-child { padding-left: 0; }
.about-proof-bar > div > strong { color: #db1630; font: 500 1.38rem "Teko",sans-serif; }
.about-proof-bar > div > span { color: #86858a; font-size: .6rem; font-weight: 700; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.about-proof-bar > a { display: grid; align-content: center; color: #fff; background: var(--about-red); transition: background .22s ease; }
.about-proof-bar > a:hover { background: #cf1028; }
.about-proof-bar a small { color: #efb7bf; font-size: .55rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.about-proof-bar a strong { margin-top: 2px; font: 600 1.65rem/1 "Teko",sans-serif; letter-spacing: .02em; }

.about-story { background: var(--about-paper); }
.about-story-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr); gap: clamp(60px,10vw,140px); align-items: start; }
.about-story h2,.about-heading h2,.about-process h2,.about-local h2,.about-final h2 { margin: 0; font: 600 clamp(3.35rem,5vw,5.05rem)/.88 "Teko",sans-serif; letter-spacing: -.02em; text-transform: uppercase; }
.about-story h2 em,.about-heading h2 em,.about-local h2 em { color: var(--about-red); font-style: normal; }
.about-story-copy { padding-top: 28px; }
.about-story-copy > p { margin: 0 0 16px; color: var(--about-muted); line-height: 1.72; }
.about-story-copy .about-story-lead { color: #272527; font-size: 1.12rem; font-weight: 600; }
.about-story-copy blockquote { position: relative; margin: 29px 0 0; padding: 21px 0 0 22px; border-top: 1px solid #cfc8bf; color: #242224; font-size: .78rem; font-weight: 800; line-height: 1.5; letter-spacing: .075em; text-transform: uppercase; }
.about-story-copy blockquote::before { content: ""; position: absolute; left: 0; top: 20px; width: 4px; height: 38px; background: var(--about-red); }

.about-craft { color: #fff; background: #0d0d0f; }
.about-craft-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(290px,.55fr); min-height: 590px; }
.about-craft figure { margin: 0; overflow: hidden; }
.about-craft img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1),filter .35s ease; }
.about-craft figure:hover img { transform: scale(1.025); filter: saturate(1.06); }
.about-craft-main { position: relative; min-height: 590px; }
.about-craft-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,4,5,.75),transparent 43%); }
.about-craft-main figcaption { position: absolute; z-index: 2; left: 26px; bottom: 25px; display: grid; padding-left: 13px; border-left: 3px solid #dc1731; text-transform: uppercase; }
.about-craft-main figcaption span { color: #cbc9ca; font-size: .56rem; font-weight: 800; letter-spacing: .15em; }
.about-craft-main figcaption strong { margin-top: 4px; font: 600 1.55rem/1 "Teko",sans-serif; }
.about-craft-side { display: grid; grid-template-rows: 1fr auto; border-left: 1px solid rgba(255,255,255,.1); }
.about-craft-side figure { min-height: 315px; }
.about-craft-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 31px 28px; background: #171719; }
.about-note-number { color: #df1731; font: 600 3.2rem/.8 "Teko",sans-serif; }
.about-note-number sup { font-size: .42em; }
.about-craft-note p { margin: 0; color: #8c8b90; font-size: .75rem; line-height: 1.55; }
.about-craft-note p strong { display: block; margin-bottom: 4px; color: #fff; font-size: .8rem; }

.about-values { position: relative; overflow: hidden; background: #fff; }
.about-values::after { content: "EXIGENCE"; position: absolute; right: -15px; bottom: -65px; color: rgba(23,23,25,.025); font: 700 clamp(9rem,19vw,17rem)/1 "Teko",sans-serif; pointer-events: none; }
.about-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(55px,9vw,120px); align-items: end; margin-bottom: 42px; }
.about-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--about-muted); line-height: 1.7; }
.about-values-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); }
.about-values-grid article { min-height: 310px; padding: 30px; border: 1px solid var(--about-line); border-right: 0; background: rgba(255,255,255,.94); transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.about-values-grid article:last-child { border-right: 1px solid var(--about-line); }
.about-values-grid article:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(178,13,34,.45); box-shadow: 0 22px 55px rgba(42,33,30,.11); }
.about-value-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 70px; }
.about-value-top > span { color: var(--about-red); font: 600 1.1rem "Teko",sans-serif; }
.about-value-top svg { width: 38px; height: 38px; padding: 8px; border: 1px solid rgba(178,13,34,.28); border-radius: 50%; fill: none; stroke: var(--about-red); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about-values-grid h3 { margin: 0 0 9px; font: 600 1.65rem "Teko",sans-serif; text-transform: uppercase; }
.about-values-grid p { margin: 0; color: #706c68; font-size: .82rem; line-height: 1.65; }

.about-process { color: #fff; background: radial-gradient(700px 420px at 12% 85%,rgba(178,13,34,.16),transparent 65%),#111113; }
.about-process-grid { display: grid; grid-template-columns: minmax(300px,.68fr) minmax(0,1.32fr); gap: clamp(60px,9vw,120px); align-items: start; }
.about-process-intro { position: sticky; top: 125px; }
.about-process h2 { max-width: 470px; }
.about-process-intro > p:not(.about-kicker) { max-width: 420px; color: #8b8a8f; line-height: 1.7; }
.about-process-intro > a { display: inline-flex; gap: 16px; margin-top: 16px; padding-bottom: 6px; border-bottom: 1px solid #d1172f; color: #fff; font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.about-process-intro > a span { color: #e01934; transition: transform .2s ease; }
.about-process-intro > a:hover span { transform: translateX(4px); }
.about-process-list { margin: 0; padding: 0; list-style: none; }
.about-process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; min-height: 148px; padding: 26px 16px 26px 0; border-top: 1px solid rgba(255,255,255,.12); transition: padding-left .22s ease,background .22s ease; }
.about-process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.about-process-list li:hover { padding-left: 15px; background: rgba(255,255,255,.025); }
.about-process-list li > span { color: #df1731; font: 600 1.25rem "Teko",sans-serif; }
.about-process-list small { color: #de1731; font-size: .55rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-process-list h3 { margin: 3px 0 6px; font: 600 1.65rem "Teko",sans-serif; text-transform: uppercase; }
.about-process-list p { max-width: 560px; margin: 0; color: #858489; font-size: .81rem; line-height: 1.6; }

.about-local { color: var(--about-ink); background: var(--about-paper); }
.about-local-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.65fr); gap: clamp(60px,10vw,135px); align-items: center; }
.about-local-copy > p:not(.about-kicker) { max-width: 610px; color: var(--about-muted); line-height: 1.7; }
.about-cities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.about-cities span { padding: 7px 10px; border: 1px solid #cdc6bd; color: #6f6a65; font-size: .61rem; font-weight: 600; }
.about-local-card { position: relative; overflow: hidden; padding: 35px; color: #fff; background: #161618; box-shadow: 0 28px 65px rgba(47,38,35,.2); }
.about-local-card::after { content: "31"; position: absolute; right: -4px; top: -29px; color: rgba(255,255,255,.035); font: 600 10rem/1 "Teko",sans-serif; pointer-events: none; }
.about-local-status { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; color: #aaa9ad; font-size: .58rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.about-local-status i { width: 8px; height: 8px; border-radius: 50%; background: #27bf61; box-shadow: 0 0 0 5px rgba(39,191,97,.12); }
.about-local-card > p { position: relative; z-index: 1; max-width: 310px; margin: 31px 0 25px; font: 600 2.15rem/.98 "Teko",sans-serif; text-transform: uppercase; }
.about-local-card > a:not(.about-local-cta) { position: relative; z-index: 1; display: grid; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.about-local-card a small { color: #77767b; font-size: .55rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.about-local-card a strong { margin-top: 3px; font: 600 1.85rem/1 "Teko",sans-serif; }
.about-local-cta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 25px; padding: 15px 17px; color: #fff; background: var(--about-red); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: background .2s ease; }
.about-local-cta:hover { background: #d3152d; }

.about-final { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg,#760513,#b50d24); }
.about-final::before { content: ""; position: absolute; right: -120px; top: -230px; width: 550px; height: 550px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.025),0 0 0 150px rgba(255,255,255,.018); }
.about-final-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.about-final .about-kicker { color: #f1b9c1; }
.about-final h2 { font-size: clamp(3.25rem,5vw,4.8rem); }
.about-final-actions { display: grid; gap: 15px; min-width: 285px; }
.about-final-primary { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 16px 18px; color: #8d0719; background: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .22s ease; }
.about-final-primary:hover { transform: translateY(-3px); }
.about-final-actions > a:last-child { display: grid; color: #fff; }
.about-final-actions small { color: #efb6bf; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.about-final-actions strong { margin-top: 3px; font: 600 1.75rem/1 "Teko",sans-serif; }

@media (max-width: 940px) {
  .about-hero-grid { grid-template-columns: minmax(0,.9fr) minmax(380px,1.1fr); gap: 45px; }
  .about-hero h1 { font-size: clamp(3.65rem,6.8vw,5.25rem); }
  .about-proof-bar { grid-template-columns: repeat(3,1fr); }
  .about-proof-bar > a { grid-column: 1/-1; min-height: 82px; }
  .about-proof-bar > a { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .about-story-grid { gap: 60px; }
  .about-process-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .about-v6 .about-section { padding-block: 66px; }
  .about-hero { padding-top: 58px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-hero h1 { font-size: clamp(3rem,10.5vw,4.75rem); }
  .about-hero-lead { max-width: 650px; }
  .about-hero-actions { display: grid; grid-template-columns: 1fr; }
  .about-hero-actions .about-btn { width: 100%; }
  .about-hero-visual { min-height: 455px; }
  .about-proof-bar { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .about-proof-bar > div { min-height: 92px; }
  .about-proof-bar > div:first-child { padding-left: 17px; }
  .about-proof-bar > :nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .about-proof-bar > :nth-child(4) { grid-column: auto; border-left: 1px solid rgba(255,255,255,.1); }
  .about-story-grid,.about-heading,.about-process-grid,.about-local-grid,.about-final-inner { grid-template-columns: 1fr; gap: 35px; }
  .about-story-copy { padding-top: 0; }
  .about-craft-grid { grid-template-columns: 1fr; }
  .about-craft-main { min-height: 430px; }
  .about-craft-side { grid-template-columns: 1fr; grid-template-rows: 270px auto; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-values-grid article { min-height: 235px; border-right: 1px solid var(--about-line); border-bottom: 0; }
  .about-values-grid article:last-child { border-bottom: 1px solid var(--about-line); }
  .about-value-top { margin-bottom: 38px; }
  .about-process-intro { position: static; }
  .about-final-actions { min-width: 0; }
}

@media (max-width: 480px) {
  .about-v6 .container { width: min(100% - 32px,1160px); }
  .about-v6 .about-section { padding-block: 58px; }
  .about-kicker { font-size: .59rem; letter-spacing: .14em; }
  .about-hero { padding-top: 46px; }
  .about-hero::before { display: none; }
  .about-hero-grid { gap: 36px; padding-bottom: 43px; }
  .about-hero h1 { font-size: clamp(3.05rem,13.2vw,3.75rem); line-height: .84; }
  .about-hero-lead { margin-top: 20px; font-size: .91rem; line-height: 1.62; }
  .about-hero-actions { display: grid; grid-template-columns: 1fr; }
  .about-btn { width: 100%; }
  .about-hero-trust { display: grid; gap: 8px; }
  .about-hero-visual { min-height: 350px; padding: 11px 7px 18px 0; }
  .about-hero-visual::before { inset: 0 0 0 19px; }
  .about-hero-visual figure { inset: 11px 7px 18px 0; }
  .about-hero-visual img { object-position: 65% center; }
  .about-hero-caption { left: 16px; bottom: 36px; }
  .about-hero-caption strong { font-size: 1.18rem; }
  .about-experience { min-width: 137px; padding: 12px 14px; }
  .about-experience strong { font-size: 2.9rem; }
  .about-proof-bar { width: 100%; }
  .about-proof-bar > div,.about-proof-bar > a { padding: 14px 13px; }
  .about-proof-bar > div > span { font-size: .54rem; }
  .about-story h2,.about-heading h2,.about-process h2,.about-local h2,.about-final h2 { font-size: clamp(2.75rem,12vw,3.45rem); }
  .about-craft-grid { width: 100%; }
  .about-craft-main { min-height: 360px; }
  .about-craft-side { grid-template-rows: 230px auto; }
  .about-craft-note { grid-template-columns: 1fr; gap: 13px; padding: 26px 22px; }
  .about-values-grid article { padding: 25px; }
  .about-process-list li { grid-template-columns: 45px 1fr; gap: 13px; }
  .about-local-card { padding: 27px 24px; }
  .about-final-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-v6 .about-hero-visual img,.about-v6 .about-craft img { transition: none; }
}
/* ========================================================================== 
   CONTACT V6 — premium, direct and trustworthy
   ========================================================================== */
.contact-v6 {
  --cv6-red: #d7192d;
  --cv6-dark-red: #a90820;
  --cv6-ink: #141416;
  --cv6-paper: #f2eee8;
  overflow-x: clip;
  padding-left: 0;
  color: var(--cv6-ink);
  background: #fff;
}
.contact-v6 .container { width: min(1160px,92vw); }
.contact-v6 .site-header { background: rgba(8,8,9,.97); backdrop-filter: blur(18px); }
.contact-v6 .site-header.scrolled { background: rgba(7,7,8,.99); }
.contact-v6 .header-top { background: #810617; }
.contact-v6 .brand,.contact-v6 .header-phone strong,.contact-v6 .header-cta { color: #fff; }
.contact-v6 .menu-btn span { background: #fff; }
.contact-v6 .header-phone { display: grid; justify-items: end; margin-right: 3px; line-height: 1.05; }
.contact-v6 .header-phone span { color: #999; font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; }
.contact-v6 .header-phone strong { font-size: .92rem; }
.contact-v6 .header-cta { width: auto; padding: 13px 17px; border-radius: 2px; }
.contact-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 15px; color: var(--cv6-red); font-size: .66rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.contact-kicker > span { flex: 0 0 30px; height: 2px; background: currentColor; }

.contact-hero { position: relative; isolation: isolate; overflow: hidden; padding-top: clamp(64px,7vw,98px); color: #fff; background: radial-gradient(circle at 80% 25%,rgba(169,8,32,.18),transparent 30%),#0d0d0f; }
.contact-hero::before { content: "CONTACT"; position: absolute; z-index: -1; left: -8px; top: 20px; color: rgba(255,255,255,.025); font: 700 clamp(9rem,19vw,17rem)/1 "Teko",sans-serif; letter-spacing: -.045em; pointer-events: none; }
.contact-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg,#000,transparent 62%); pointer-events: none; }
.contact-hero-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr); gap: clamp(55px,9vw,125px); align-items: end; padding-bottom: clamp(42px,5vw,66px); }
.contact-hero h1 { max-width: 760px; margin: 0; font: 600 clamp(4.4rem,6.8vw,7.2rem)/.81 "Teko",sans-serif; letter-spacing: -.025em; text-transform: uppercase; }
.contact-hero h1 em { color: var(--cv6-red); font-style: normal; }
.contact-hero-intro { padding: 0 0 6px 25px; border-left: 1px solid rgba(255,255,255,.18); }
.contact-hero-intro > p { max-width: 440px; margin: 0; color: #aaa9ad; font-size: .97rem; line-height: 1.7; }
.contact-hero-intro > div { display: flex; flex-wrap: wrap; gap: 8px 15px; margin-top: 22px; color: #77767b; font-size: .57rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.contact-hero-intro b { margin-right: 4px; color: var(--cv6-red); }
.contact-hero-scene { display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: end; }
.contact-hero-photo { position: relative; height: clamp(410px,39vw,545px); margin: 0; overflow: hidden; background: #222; }
.contact-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,4,5,.72),transparent 39%); }
.contact-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 47%; filter: saturate(.88) contrast(1.04); transition: transform 1s cubic-bezier(.2,.7,.2,1),filter .35s ease; }
.contact-hero-photo:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.contact-hero-photo figcaption { position: absolute; z-index: 2; left: 25px; bottom: 24px; display: grid; padding-left: 13px; border-left: 3px solid var(--cv6-red); text-transform: uppercase; }
.contact-hero-photo figcaption span { color: #c9c7ca; font-size: .56rem; font-weight: 800; letter-spacing: .15em; }
.contact-hero-photo figcaption strong { margin-top: 3px; font: 600 1.5rem/1 "Teko",sans-serif; }
.contact-direct-card { position: relative; z-index: 3; min-height: 415px; margin: 0 0 33px -25px; padding: 9px; border-top: 4px solid var(--cv6-red); color: #fff; background: #171719; box-shadow: 0 28px 60px rgba(0,0,0,.38); }
.contact-direct-head { padding: 21px 18px 18px; }
.contact-online { display: flex; align-items: center; gap: 9px; color: #a9a8ac; font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-online i { width: 8px; height: 8px; border-radius: 50%; background: #2cc366; box-shadow: 0 0 0 5px rgba(44,195,102,.12); }
.contact-direct-head p { max-width: 270px; margin: 17px 0 0; color: #77767b; font-size: .75rem; line-height: 1.5; }
.contact-direct-card > a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 75px; padding: 13px 17px; color: #fff; }
.contact-direct-card > a + a { margin-top: 6px; }
.contact-direct-card a > span { display: grid; min-width: 0; }
.contact-direct-card a small { color: rgba(255,255,255,.64); font-size: .54rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct-card a strong { min-width: 0; margin-top: 3px; overflow-wrap: anywhere; font: 600 1.55rem/1 "Teko",sans-serif; text-transform: uppercase; }
.contact-direct-card a > b { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.32); font-weight: 500; transition: transform .2s ease; }
.contact-direct-card a:hover > b { transform: translate(2px,-2px); }
.contact-direct-phone { background: var(--cv6-red); }
.contact-direct-phone:hover { background: #ed1b35; }
.contact-direct-whatsapp { background: #087b48; }
.contact-direct-whatsapp:hover { background: #099058; }
.contact-direct-mail { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.025); }
.contact-direct-mail strong { font-size: 1.12rem !important; text-transform: none !important; }
.contact-hero-bar { display: grid; grid-template-columns: repeat(3,1fr) minmax(230px,.8fr); border-top: 1px solid rgba(255,255,255,.11); }
.contact-hero-bar > div,.contact-hero-bar > a { display: flex; align-items: center; gap: 14px; min-height: 106px; padding: 20px clamp(18px,2.2vw,29px); }
.contact-hero-bar > * + * { border-left: 1px solid rgba(255,255,255,.1); }
.contact-hero-bar > div:first-child { padding-left: 0; }
.contact-hero-bar > div strong { color: var(--cv6-red); font: 600 1.65rem/1 "Teko",sans-serif; white-space: nowrap; }
.contact-hero-bar > div span { color: #7e7d82; font-size: .57rem; font-weight: 700; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.contact-hero-bar > a { justify-content: space-between; color: #fff; background: var(--cv6-dark-red); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: background .22s ease; }
.contact-hero-bar > a:hover { background: #ca1028; }
.contact-hero-bar > a span { font-size: 1.05rem; }

/* Refinish the existing form and location system without changing its logic. */
.contact-v6 .cv4-request { background: var(--cv6-paper); }
.contact-v6 .cv4-request-head h2 { font-size: clamp(3.25rem,5.3vw,5rem); }
.contact-v6 .cv4-location-copy h2 { font-size: clamp(2.25rem,3.2vw,3.15rem); }
.contact-v6 .cv4-request-head > p { font-size: .91rem; }
.contact-v6 .cv4-form-shell { border-color: rgba(20,20,22,.13); box-shadow: 0 25px 75px rgba(38,29,26,.08); }
.contact-v6 .contact-form.cv4-form { padding: clamp(27px,3.7vw,48px); }
.contact-v6 .cv4-progress-track { height: 4px; }
.contact-v6 .cv4-form input:not([type="checkbox"]):not([type="file"]),.contact-v6 .cv4-form select,.contact-v6 .cv4-form textarea { min-height: 54px; border-color: #d6d0ca; background: #fbfaf8; }
.contact-v6 .cv4-form input:focus,.contact-v6 .cv4-form select:focus,.contact-v6 .cv4-form textarea:focus { border-color: var(--cv6-red); box-shadow: 0 0 0 3px rgba(215,25,45,.08); }
.contact-v6 .cv4-address-block,.contact-v6 .cv4-upload > label { background: #f7f4f0; }
.contact-v6 .cv4-upload > label { min-height: 78px; }
.contact-v6 .cv4-submit { min-height: 60px; background: var(--cv6-red); }
.contact-v6 .cv4-submit:hover { background: var(--cv6-ink); }
.contact-v6 .cv4-form-aside { top: 125px; border-top-color: var(--cv6-red); background: var(--cv6-ink); }
.contact-v6 .cv4-aside-call { background: var(--cv6-dark-red); }
.contact-v6 .cv4-location { background: #fff; }
.contact-v6 .cv4-location-grid { box-shadow: 0 22px 65px rgba(40,31,28,.08); }
.contact-v6 .cv4-map iframe { filter: grayscale(.3) contrast(1.04); }
.contact-v6 .cv4-location-copy { background: #f3efe9; }
.contact-v6 .cv4-reassurance { background: #111113; }
.contact-v6 .cv4-success .cv4-kicker { color: var(--cv6-red); }

@media (min-width: 1041px) {
  .contact-v6 .site-header { position: sticky; top: 0; width: auto; display: block; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .contact-v6 .site-header .container { width: min(1140px,92vw); margin-inline: auto; }
  .contact-v6 .header-top { display: block; }
  .contact-v6 .nav-wrap { min-height: 78px; width: auto; padding: 0; flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
  .contact-v6 .brand { margin-left: 0; flex-direction: row; justify-content: flex-start; gap: 9px; text-align: left; font-size: 1.18rem; }
  .contact-v6 .brand-logo { width: 67px; height: 67px; margin: 0; }
  .contact-v6 .main-nav { flex-direction: row; gap: 18px; border: 0; }
  .contact-v6 .main-nav a { padding: 8px 0; border: 0; font-size: .88rem; text-align: left; text-transform: none; letter-spacing: 0; }
  .contact-v6 .header-cta-group { width: auto; margin: 0; padding: 0; flex-direction: row; align-items: center; gap: 9px; }
}

@media (max-width: 920px) {
  .contact-hero-heading { grid-template-columns: 1fr .7fr; gap: 45px; }
  .contact-hero h1 { font-size: clamp(3.8rem,7.7vw,5.4rem); }
  .contact-hero-scene { grid-template-columns: minmax(0,1fr) 290px; }
  .contact-direct-card { margin-left: -18px; }
  .contact-hero-bar { grid-template-columns: repeat(3,1fr); }
  .contact-hero-bar > a { grid-column: 1/-1; min-height: 76px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 760px) {
  .contact-v6 { padding-bottom: 67px; }
  .contact-v6 .nav-wrap { flex-direction: row; align-items: center; padding: 0; }
  .contact-v6 .brand { margin-left: 0; color: #fff; font-size: 1.12rem; }
  .contact-v6 .brand-logo { width: 58px; height: 58px; }
  .contact-v6 .menu-btn { display: inline-block; flex: 0 0 48px; margin-left: auto; }
  .contact-v6 .header-cta-group { display: none; }
  .contact-hero { padding-top: 58px; }
  .contact-hero-heading { grid-template-columns: 1fr; gap: 27px; padding-bottom: 39px; }
  .contact-hero h1 { font-size: clamp(3.1rem,11.5vw,4.8rem); }
  .contact-hero-intro { max-width: 620px; padding-left: 18px; }
  .contact-hero-scene { grid-template-columns: 1fr; padding-inline: 0; }
  .contact-hero-photo { height: 420px; }
  .contact-direct-card { min-height: 0; margin: -34px 18px 49px; }
  .contact-hero-bar { grid-template-columns: 1fr 1fr; width: 100%; }
  .contact-hero-bar > div { min-height: 91px; }
  .contact-hero-bar > div:first-child { padding-left: 18px; }
  .contact-hero-bar > :nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .contact-hero-bar > a { grid-column: auto; min-height: 91px; border-left: 1px solid rgba(255,255,255,.1); }
  .contact-v6 .cv4-request-head h2,.contact-v6 .cv4-location-copy h2 { font-size: clamp(3rem,13vw,4.05rem); }
}

@media (max-width: 460px) {
  .contact-v6 .container { width: min(100% - 32px,1160px); }
  .contact-hero { padding-top: 45px; }
  .contact-hero::before { display: none; }
  .contact-kicker { font-size: .59rem; letter-spacing: .14em; }
  .contact-hero h1 { font-size: clamp(2.85rem,12.4vw,3.45rem); }
  .contact-hero-intro { padding-left: 15px; }
  .contact-hero-intro > p { font-size: .9rem; line-height: 1.6; }
  .contact-hero-photo { height: 335px; }
  .contact-hero-photo img { object-position: 63% center; }
  .contact-direct-card { margin: -28px 13px 43px; }
  .contact-direct-card > a { min-height: 69px; padding-inline: 13px; }
  .contact-direct-card a strong { font-size: 1.35rem; }
  .contact-direct-mail strong { font-size: .94rem !important; }
  .contact-hero-bar > div,.contact-hero-bar > a { padding: 13px 11px; }
  .contact-hero-bar > div strong { font-size: 1.42rem; }
  .contact-hero-bar > div span { font-size: .51rem; }
  .contact-v6 .contact-form.cv4-form { padding: 23px 17px; }
  .contact-v6 .cv4-request-head h2,.contact-v6 .cv4-location-copy h2 { font-size: clamp(2.8rem,12vw,3.35rem); }
}

/* Contact hero V7 — light editorial direction */
.contact-v6 .contact-hero {
  padding-top: clamp(62px, 6.8vw, 96px);
  color: #19181a;
  background: radial-gradient(circle at 91% 8%, rgba(178,13,34,.09), transparent 25%), #f0ece5;
}
.contact-v6 .contact-hero::before {
  content: "CONTACT";
  left: auto;
  right: -15px;
  top: -18px;
  color: rgba(24,23,25,.035);
  font-size: clamp(9rem, 20vw, 18rem);
}
.contact-v6 .contact-hero::after {
  opacity: .32;
  background-image: linear-gradient(rgba(32,29,28,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(32,29,28,.04) 1px,transparent 1px);
  mask-image: linear-gradient(90deg,#000,transparent 58%);
}
.contact-v6 .contact-hero-heading { position: relative; z-index: 2; padding-bottom: clamp(39px,4.6vw,60px); }
.contact-v6 .contact-hero h1 { color: #19181a; font-size: clamp(4.5rem,6.7vw,7rem); }
.contact-v6 .contact-hero h1 em { color: #ad0b21; }
.contact-v6 .contact-hero-intro { border-left-color: #c9c1b8; }
.contact-v6 .contact-hero-intro > p { color: #615d58; }
.contact-v6 .contact-hero-intro > div { color: #77716c; }
.contact-v6 .contact-hero-intro b { color: #ad0b21; }
.contact-v6 .contact-hero-scene { position: relative; z-index: 2; }
.contact-v6 .contact-hero-photo { height: clamp(400px,37vw,520px); box-shadow: 0 25px 65px rgba(47,37,32,.15); }
.contact-v6 .contact-hero-photo img { object-position: center 48%; filter: saturate(.9) contrast(1.03); }
.contact-v6 .contact-direct-card { margin-bottom: 30px; border-top-color: #b40d24; background: #161517; box-shadow: 0 30px 60px rgba(46,35,32,.24); }
.contact-v6 .contact-direct-phone { background: #b70d25; }
.contact-v6 .contact-hero-bar { position: relative; z-index: 2; margin-top: clamp(42px,5vw,65px); color: #fff; border-top: 0; background: #151517; }
.contact-v6 .contact-hero-bar > div:first-child { padding-left: clamp(18px,2.2vw,29px); }
.contact-v6 .contact-hero-bar > div strong { color: #df1731; }
.contact-v6 .contact-hero-bar > a { background: #aa0a20; }

@media (max-width: 760px) {
  .contact-v6 .contact-hero { padding-top: 52px; }
  .contact-v6 .contact-hero h1 { font-size: clamp(3.25rem,12vw,4.9rem); }
  .contact-v6 .contact-hero-photo { height: 390px; }
  .contact-v6 .contact-direct-card { margin-bottom: 0; }
  .contact-v6 .contact-hero-bar { margin-top: 0; }
}

@media (max-width: 460px) {
  .contact-v6 .contact-hero { padding-top: 42px; }
  .contact-v6 .contact-hero h1 { font-size: clamp(3rem,13vw,3.6rem); }
  .contact-v6 .contact-hero-photo { height: 315px; }
}

/* Contact V7 — darker rhythm through the lower page */
.contact-v6 .cv4-request {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #151517 0 355px, #eee9e2 355px 100%);
}
.contact-v6 .cv4-request::before {
  content: "VOTRE PROJET";
  position: absolute;
  z-index: -1;
  right: -18px;
  top: 17px;
  color: rgba(255,255,255,.025);
  font: 700 clamp(8rem,17vw,15rem)/1 "Teko",sans-serif;
  letter-spacing: -.035em;
  white-space: nowrap;
  pointer-events: none;
}
.contact-v6 .cv4-request-head { color: #fff; }
.contact-v6 .cv4-request-head h2 { color: #fff; }
.contact-v6 .cv4-request-head > p { color: #98979c; }
.contact-v6 .cv4-request .cv4-kicker { color: #e11933; }
.contact-v6 .cv4-form-shell { box-shadow: 0 28px 80px rgba(19,15,14,.16); }
.contact-v6 .cv4-form-aside { box-shadow: 0 25px 65px rgba(18,14,14,.2); }

.contact-v6 .cv4-location { background: #fff; }
.contact-v6 .cv4-location-grid { color: #fff; background: #151517; box-shadow: 0 28px 75px rgba(26,20,18,.14); }
.contact-v6 .cv4-location-copy { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 100% 0,rgba(181,13,36,.18),transparent 38%),#151517; }
.contact-v6 .cv4-location-copy::after { content: "31"; position: absolute; right: -7px; bottom: -47px; color: rgba(255,255,255,.035); font: 600 12rem/1 "Teko",sans-serif; pointer-events: none; }
.contact-v6 .cv4-location-copy h2 { position: relative; z-index: 1; color: #fff; }
.contact-v6 .cv4-location-copy > p:not(.cv4-kicker) { position: relative; z-index: 1; color: #99989d; }
.contact-v6 .cv4-location-copy > div,.contact-v6 .cv4-location-copy > a { position: relative; z-index: 1; }
.contact-v6 .cv4-location-copy > div span { border-color: rgba(255,255,255,.14); color: #aaa9ad; background: rgba(255,255,255,.035); }
.contact-v6 .cv4-location-copy > a { border-bottom-color: #d7192d; color: #fff; }
.contact-v6 .cv4-location-copy > a span { color: #e21934; }

@media (max-width: 760px) {
  .contact-v6 .cv4-request { background: linear-gradient(180deg,#151517 0 315px,#eee9e2 315px 100%); }
  .contact-v6 .cv4-request::before { top: 45px; font-size: 8rem; }
}

@media (max-width: 460px) {
  .contact-v6 .cv4-request { background: linear-gradient(180deg,#151517 0 300px,#eee9e2 300px 100%); }
}

/* Contact — restore the complete shared footer context */
.contact-v6 .site-footer {
  --footer-red: #d80d28;
  --footer-muted: #96969b;
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #f7f7f7;
  border-top: 0;
  background: radial-gradient(900px 440px at 90% 36%,rgba(142,6,24,.16),transparent 62%),#08080a;
}
.contact-v6 .site-footer::before {
  content: "CHRIS & TOIT";
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: auto;
  height: auto;
  margin: 0;
  color: rgba(255,255,255,.018);
  background: none;
  font: 700 clamp(8rem,21vw,19rem)/.7 "Teko",sans-serif;
  letter-spacing: -.035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-v6 .site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
}
.contact-v6 .site-footer .container {
  position: relative;
  z-index: 1;
  width: min(1180px,92vw);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}
/* ========================================================================== 
   LEGAL V2 — shared editorial system
   ========================================================================== */
.legal-v2 { --legal-red:#c80f29; --legal-ink:#171719; --legal-paper:#f1ede7; overflow-x:clip; padding-left:0; color:var(--legal-ink); background:var(--legal-paper); }
.legal-v2 .container { width:min(1160px,92vw); max-width:1160px; margin-inline:auto; padding-inline:0; }
.legal-v2 .site-bg-pattern { display:none; }
.legal-v2 .site-header { position:sticky; top:0; z-index:40; background:rgba(8,8,9,.97); backdrop-filter:blur(18px); }
.legal-v2 .header-top { background:#810617; }
.legal-v2 .brand,.legal-v2 .main-nav a,.legal-v2 .header-cta { color:#fff; }
.legal-v2 .menu-btn span { background:#fff; }
.legal-v2 .header-top-inner p,.legal-v2 .header-top-inner a { margin:0; }
.legal-v2 .header-cta-group { gap:7px; }
.legal-v2 .header-cta-alt,.legal-v2 .header-cta-whatsapp { display:none; }
.legal-v2 .header-cta { border-radius:2px; }
.legal-v2 .quick-call-tag { display:none; }
@media (min-width:1041px) {
  .legal-v2 .site-header { position:sticky; inset:auto; top:0; width:auto; display:block; border-right:0; border-bottom:1px solid rgba(255,255,255,.08); }
  .legal-v2 .site-header .container { width:min(1140px,92vw); max-width:1140px; margin-inline:auto; }
  .legal-v2 .header-top { display:block; }
  .legal-v2 .nav-wrap { min-height:78px; width:auto; padding:0; flex-direction:row; align-items:center; justify-content:space-between; gap:16px; }
  .legal-v2 .brand { margin-left:0; flex-direction:row; justify-content:flex-start; gap:9px; color:#fff; text-align:left; font-size:1.18rem; }
  .legal-v2 .brand-logo { width:67px; height:67px; margin:0; }
  .legal-v2 .main-nav { flex-direction:row; gap:18px; border:0; }
  .legal-v2 .main-nav a { padding:8px 0; border:0; font-size:.88rem; text-align:left; text-transform:none; letter-spacing:0; }
  .legal-v2 .main-nav a::after { display:block; }
  .legal-v2 .header-cta-group { width:auto; margin:0; padding:0; flex-direction:row; align-items:center; }
  .legal-v2 .header-cta { display:inline-flex; width:auto; min-height:0; margin:0; }
  .legal-v2 .header-cta-alt,.legal-v2 .header-cta-whatsapp { display:none; }
}

.legal-hero { position:relative; isolation:isolate; overflow:hidden; padding-top:clamp(68px,8vw,112px); color:#fff; background:radial-gradient(circle at 83% 28%,rgba(177,9,34,.22),transparent 28%),#111113; }
.legal-hero::before { content:"DOCUMENTS"; position:absolute; z-index:-1; right:-10px; top:-30px; color:rgba(255,255,255,.025); font:700 clamp(9rem,20vw,18rem)/1 "Teko",sans-serif; letter-spacing:-.04em; pointer-events:none; }
.legal-hero::after { content:""; position:absolute; z-index:-1; inset:0; opacity:.3; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(90deg,#000,transparent 62%); }
.legal-hero-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(300px,.55fr); gap:clamp(55px,9vw,125px); align-items:end; padding-bottom:clamp(52px,6vw,82px); }
.legal-eyebrow { display:flex; align-items:center; gap:11px; margin:0 0 15px; color:#e01934; font-size:.65rem; font-weight:800; letter-spacing:.19em; text-transform:uppercase; }
.legal-eyebrow span { width:30px; height:2px; background:currentColor; }
.legal-hero h1 { margin:0; font:600 clamp(4.5rem,7vw,7.2rem)/.8 "Teko",sans-serif; letter-spacing:-.025em; text-transform:uppercase; }
.legal-hero h1 em { color:#df1731; font-style:normal; }
.legal-hero-grid > p { margin:0 0 5px; padding-left:24px; border-left:1px solid rgba(255,255,255,.2); color:#aaa9ae; font-size:.97rem; line-height:1.7; }
.legal-tabs { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.12); }
.legal-tabs a { display:flex; align-items:center; gap:14px; min-height:78px; padding:17px 24px; color:#85848a; border-left:1px solid rgba(255,255,255,.1); font-size:.67rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; transition:color .2s ease,background .2s ease; }
.legal-tabs a:first-child { border-left:0; }
.legal-tabs b { color:#df1731; font:600 1.2rem "Teko",sans-serif; }
.legal-tabs a:hover,.legal-tabs a.active { color:#fff; background:#a80920; }
.legal-tabs a.active b { color:#fff; }

.legal-v2 .legal-section { padding:clamp(68px,8vw,110px) 0; background:var(--legal-paper); }
.legal-layout { display:grid; grid-template-columns:245px minmax(0,1fr); gap:clamp(48px,7vw,95px); align-items:start; }
.legal-summary { position:sticky; top:125px; padding:24px 22px; color:#fff; border-top:4px solid var(--legal-red); background:#181719; box-shadow:0 24px 55px rgba(40,31,28,.15); }
.legal-summary > p { margin:0 0 16px; color:#db1730; font-size:.59rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.legal-summary nav { display:grid; }
.legal-summary nav a { padding:10px 0; color:#9a999e; border-top:1px solid rgba(255,255,255,.1); font-size:.73rem; transition:color .2s ease,padding .2s ease; }
.legal-summary nav a:hover { padding-left:5px; color:#fff; }
.legal-summary > span { display:block; margin-top:20px; padding-top:18px; color:#6f6e73; border-top:1px solid rgba(255,255,255,.12); font-size:.56rem; line-height:1.5; letter-spacing:.08em; text-transform:uppercase; }
.legal-summary > span strong { color:#c9c8cb; }
.legal-v2 .legal-content { display:grid; gap:14px; max-width:none; }
.legal-v2 .legal-alert { position:relative; margin:0 0 10px; padding:18px 20px 18px 55px; color:#5e3500; border:1px solid #dfb978; background:#fff4de; font-size:.78rem; line-height:1.55; }
.legal-v2 .legal-alert::before { content:"!"; position:absolute; left:18px; top:17px; display:grid; place-items:center; width:23px; height:23px; color:#fff; border-radius:50%; background:#b86a00; font-weight:800; }
.legal-v2 .legal-card { position:relative; scroll-margin-top:125px; margin:0; padding:clamp(27px,3.5vw,43px); overflow:hidden; color:#252326; border:1px solid #d5cec5; border-radius:0; background:#fff; }
.legal-v2 .legal-card::after { content:attr(data-legal-index); position:absolute; right:13px; top:-18px; color:rgba(23,23,25,.035); font:600 7rem/1 "Teko",sans-serif; pointer-events:none; }
.legal-v2 .legal-card h2 { position:relative; z-index:1; margin:0 0 18px; padding-left:14px; color:#1b1a1c; font:600 clamp(1.8rem,3vw,2.45rem)/1 "Teko",sans-serif; border-left:3px solid var(--legal-red); text-transform:uppercase; }
.legal-v2 .legal-card p { position:relative; z-index:1; color:#69645f; font-size:.88rem; line-height:1.72; }
.legal-v2 .legal-card p:last-child { margin-bottom:0; }
.legal-v2 .legal-card ul { position:relative; z-index:1; margin:0; padding-left:19px; color:#69645f; line-height:1.75; }
.legal-v2 .legal-card a { color:#a80820; text-decoration:underline; text-underline-offset:4px; }
.legal-v2 .legal-card dl { position:relative; z-index:1; margin:0; }
.legal-v2 .legal-card dl > div { display:grid; grid-template-columns:190px 1fr; gap:20px; padding:12px 0; border-top:1px solid #e2ddd7; }
.legal-v2 .legal-card dt { color:#77716c; font-size:.68rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.legal-v2 .legal-card dd { margin:0; color:#292729; font-size:.85rem; overflow-wrap:anywhere; }
.legal-missing { width:fit-content; padding:3px 7px; color:#8f5000!important; background:#fff0d4; font-weight:700; }

.legal-v2 .site-footer { --footer-red:#d80d28; --footer-muted:#96969b; margin:0; overflow:hidden; color:#fff; background:#08080a; }
.legal-v2 .site-footer .container { width:min(1160px,92vw); max-width:1160px; margin-inline:auto; padding-inline:0; }
.legal-v2 .footer-bottom { min-height:86px; padding:20px 0; }
.legal-v2 .footer-legal-links { gap:8px; }
.legal-v2 .footer-legal-links a { border-radius:0; color:#999; border-color:rgba(255,255,255,.12); background:transparent; }
.legal-v2 .footer-legal-links a:hover,.legal-v2 .footer-legal-links a[aria-current="page"] { color:#fff; border-color:#b50d25; background:#8f0719; }

@media (max-width:760px) {
  .legal-v2 { padding-bottom:0; }
  .legal-v2 .brand { margin-left:0; color:#fff; font-size:1.12rem; }
  .legal-v2 .brand-logo { width:58px; height:58px; }
  .legal-v2 .menu-btn { display:inline-block; margin-left:auto; }
  .legal-v2 .header-cta-group { display:none; }
  .legal-hero { padding-top:56px; }
  .legal-hero-grid { grid-template-columns:1fr; gap:26px; padding-bottom:40px; }
  .legal-hero h1 { font-size:clamp(3.5rem,15vw,5rem); }
  .legal-hero-grid > p { max-width:620px; padding-left:17px; }
  .legal-tabs { grid-template-columns:repeat(2,1fr); width:100%; }
  .legal-tabs a { min-height:68px; padding:12px 13px; font-size:.57rem; }
  .legal-layout { grid-template-columns:1fr; gap:28px; }
  .legal-summary { position:static; }
  .legal-summary nav { grid-template-columns:repeat(2,1fr); column-gap:18px; }
  .legal-v2 .legal-card dl > div { grid-template-columns:1fr; gap:5px; }
  .legal-v2 .footer-bottom { grid-template-columns:1fr; }
}
@media (max-width:460px) {
  .legal-v2 .container { width:min(100% - 32px,1160px); }
  .legal-hero h1 { font-size:clamp(3rem,14vw,3.7rem); }
  .legal-tabs { grid-template-columns:1fr; width:100%; }
  .legal-tabs a { min-height:54px; border-left:0; border-top:1px solid rgba(255,255,255,.1); }
  .legal-v2 .legal-card { padding:24px 20px; }
  .legal-summary nav { grid-template-columns:1fr; }
}
/* ========================================================================== 
   SERVICE DETAIL V2 — shared premium service system
   ========================================================================== */
.service-detail-v2 { --sd-red:#d7192d; --sd-dark:#101012; --sd-paper:#f0ece6; overflow-x:clip; padding-left:0; color:#1a191b; background:var(--sd-paper); }
.service-detail-v2 .site-bg-pattern { display:none; }
.service-detail-v2 .container { width:min(1160px,92vw); max-width:1160px; margin-inline:auto; padding-inline:0; }
.service-detail-v2 .site-header { position:sticky; top:0; z-index:40; background:rgba(8,8,9,.97); backdrop-filter:blur(18px); }
.service-detail-v2 .header-top { background:#810617; }
.service-detail-v2 .brand,.service-detail-v2 .main-nav a,.service-detail-v2 .header-cta { color:#fff; }
.service-detail-v2 .menu-btn span { background:#fff; }
.service-detail-v2 .header-top-inner p,.service-detail-v2 .header-top-inner a { margin:0; }
.service-detail-v2 .header-cta-alt,.service-detail-v2 .header-cta-whatsapp { display:none; }
.service-detail-v2 .quick-call-tag { display:none; }

@media (min-width:1041px) {
  .service-detail-v2 .site-header { inset:auto; width:auto; display:block; border-right:0; border-bottom:1px solid rgba(255,255,255,.08); }
  .service-detail-v2 .site-header .container { width:min(1140px,92vw); max-width:1140px; margin-inline:auto; }
  .service-detail-v2 .header-top { display:block; }
  .service-detail-v2 .nav-wrap { min-height:78px; width:auto; padding:0; flex-direction:row; align-items:center; justify-content:space-between; gap:16px; }
  .service-detail-v2 .brand { margin-left:0; flex-direction:row; justify-content:flex-start; gap:9px; font-size:1.18rem; text-align:left; }
  .service-detail-v2 .brand-logo { width:67px; height:67px; margin:0; }
  .service-detail-v2 .main-nav { flex-direction:row; gap:18px; border:0; }
  .service-detail-v2 .main-nav a { padding:8px 0; border:0; font-size:.88rem; text-align:left; text-transform:none; letter-spacing:0; }
  .service-detail-v2 .main-nav a::after { display:block; }
  .service-detail-v2 .header-cta-group { width:auto; margin:0; padding:0; flex-direction:row; align-items:center; }
  .service-detail-v2 .header-cta { display:inline-flex; width:auto; min-height:0; margin:0; border-radius:2px; }
  .service-detail-v2 .header-cta-alt,.service-detail-v2 .header-cta-whatsapp { display:none; }
}

.service-detail-v2 .service-detail-page { overflow:hidden; color:#fff; background:var(--sd-dark); }
.service-detail-v2 .service-detail-page > .service-detail-hero { position:relative; isolation:isolate; min-height:760px; padding:clamp(68px,7vw,100px) 0 clamp(62px,7vw,92px); background:radial-gradient(circle at 86% 22%,rgba(168,7,31,.18),transparent 28%),#0e0e10; }
.service-detail-v2 .service-detail-hero::before { content:""; position:absolute; z-index:-2; right:0; top:0; width:54%; height:100%; background-image:linear-gradient(90deg,#0e0e10 0%,rgba(14,14,16,.18) 47%,rgba(14,14,16,.04)),linear-gradient(0deg,rgba(5,5,6,.78),transparent 48%),var(--service-image); background-position:center,center,center; background-size:cover; background-repeat:no-repeat; }
.service-detail-v2 .service-detail-hero::after { content:"EXPERTISE"; position:absolute; z-index:-1; left:-10px; top:5px; color:rgba(255,255,255,.025); font:700 clamp(10rem,19vw,17rem)/1 "Teko",sans-serif; letter-spacing:-.04em; pointer-events:none; }
.service-detail-v2 .service-detail-hero > .section-heading { position:relative; z-index:2; display:block; max-width:1160px; margin:0 auto; padding-right:48%; }
.service-detail-v2 .service-back-link { width:fit-content; min-height:38px; margin:0 0 45px; padding:8px 13px; border-color:rgba(255,255,255,.23); border-radius:0; color:#aaa9ae; background:rgba(255,255,255,.03); font-size:.61rem; letter-spacing:.08em; text-transform:uppercase; }
.service-detail-v2 .service-back-link::before { content:"←"; margin-right:8px; color:var(--sd-red); }
.service-detail-v2 .service-detail-hero .kicker { display:flex; align-items:center; gap:11px; margin:0 0 15px; color:#e11934; font-size:.65rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; }
.service-detail-v2 .service-detail-hero .kicker::before { content:""; width:30px; height:2px; background:currentColor; }
.service-detail-v2 .service-detail-hero h1 { max-width:710px; margin:0; color:#fff; font:600 clamp(3.7rem,5.1vw,5.55rem)/.82 "Teko",sans-serif; letter-spacing:-.025em; text-transform:uppercase; text-wrap:balance; }
.service-detail-v2 .service-detail-hero .section-heading > p:last-child { max-width:600px; margin:25px 0 0; color:#aaa9ae; font-size:1rem; line-height:1.7; }
.service-detail-v2 .service-detail-grid { position:relative; z-index:3; display:grid; grid-template-columns:minmax(0,1.2fr) minmax(280px,.6fr); gap:0; margin-top:58px; padding-right:31%; }
.service-detail-v2 .service-detail-card { min-height:270px; padding:30px; border:1px solid rgba(255,255,255,.13); border-radius:0; color:#fff; background:rgba(18,18,20,.94); box-shadow:none; backdrop-filter:blur(15px); }
.service-detail-v2 .service-detail-card + .service-detail-card { border-left:0; background:#a90a21; }
.service-detail-v2 .service-detail-card h2,.service-detail-v2 .service-detail-card h3 { margin:0 0 14px; color:#fff; font:600 1.7rem/1 "Teko",sans-serif; text-transform:uppercase; }
.service-detail-v2 .service-detail-card p { color:#8e8d92; font-size:.8rem; line-height:1.6; }
.service-detail-v2 .service-detail-card + .service-detail-card p { color:#efc1c7; }
.service-detail-v2 .service-detail-card + .service-detail-card strong { color:#fff; }
.service-detail-v2 .service-check-list { display:grid; gap:0; margin:20px 0 0; padding:0; list-style:none; }
.service-detail-v2 .service-check-list li { position:relative; padding:10px 0 10px 23px; border-top:1px solid rgba(255,255,255,.1); color:#b2b1b5; font-size:.72rem; line-height:1.45; }
.service-detail-v2 .service-check-list li::before { content:"✓"; position:absolute; left:0; color:#e11934; font-weight:800; }

.service-detail-v2 .service-detail-page > .sd2-formulas-section { position:relative; padding:clamp(76px,8vw,112px) 0; color:#1b1a1c; background:var(--sd-paper); }
.service-detail-v2 .service-detail-page > .sd2-formulas-section::after { content:"SOLUTIONS"; position:absolute; right:-12px; bottom:-55px; color:rgba(23,23,25,.03); font:700 clamp(9rem,18vw,16rem)/1 "Teko",sans-serif; pointer-events:none; }
.service-detail-v2 .service-detail-page > .sd2-formulas-section .section-heading { position:relative; z-index:1; max-width:1160px; margin:0 auto 38px; text-align:left; }
.service-detail-v2 .service-detail-page > .sd2-formulas-section .kicker,.service-detail-v2 .service-detail-page > .sd2-process-section .kicker { margin:0 0 11px; color:#af0b22; font-size:.65rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; }
.service-detail-v2 .service-detail-page > .sd2-formulas-section h2,.service-detail-v2 .service-detail-page > .sd2-process-section h2 { margin:0; font:600 clamp(3.2rem,5vw,4.9rem)/.87 "Teko",sans-serif; letter-spacing:-.02em; text-transform:uppercase; }
.service-detail-v2 .service-formulas { position:relative; z-index:1; display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.service-detail-v2 .service-formula { min-height:285px; padding:31px 29px; border:1px solid #cec7bf; border-right:0; border-radius:0; color:#222124; background:rgba(255,255,255,.48); box-shadow:none; transition:transform .25s ease,background .25s ease,box-shadow .25s ease; }
.service-detail-v2 .service-formula:last-child { border-right:1px solid #cec7bf; }
.service-detail-v2 .service-formula:hover { z-index:2; transform:translateY(-7px); color:#fff; background:#171719; box-shadow:0 25px 55px rgba(40,31,28,.14); }
.service-detail-v2 .service-formula h3 { margin:0 0 55px; color:#a90a21; font:600 1.8rem "Teko",sans-serif; text-transform:uppercase; }
.service-detail-v2 .service-price { display:block; color:#1d1c1e; font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.service-detail-v2 .service-formula p { color:#706b66; font-size:.82rem; line-height:1.65; }
.service-detail-v2 .service-formula:hover :is(h3,.service-price) { color:#fff; }
.service-detail-v2 .service-formula:hover p { color:#99989d; }

.service-detail-v2 .service-detail-page > .sd2-process-section { position:relative; padding:clamp(76px,8vw,112px) 0; color:#fff; background:radial-gradient(circle at 12% 80%,rgba(170,8,32,.16),transparent 28%),#111113; }
.service-detail-v2 .service-detail-page > .sd2-process-section .section-heading { max-width:1160px; margin:0 auto 38px; text-align:left; }
.service-detail-v2 .service-mini-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.service-detail-v2 .service-mini-steps article { min-height:235px; padding:28px 25px; border:1px solid rgba(255,255,255,.12); border-right:0; border-radius:0; color:#fff; background:rgba(255,255,255,.015); }
.service-detail-v2 .service-mini-steps article:last-child { border-right:1px solid rgba(255,255,255,.12); }
.service-detail-v2 .service-mini-steps span { display:block; margin-bottom:57px; color:#df1731; font:600 1.3rem "Teko",sans-serif; }
.service-detail-v2 .service-mini-steps h4 { margin:0 0 8px; color:#fff; font:600 1.55rem "Teko",sans-serif; text-transform:uppercase; }
.service-detail-v2 .service-mini-steps p { margin:0; color:#858489; font-size:.77rem; line-height:1.55; }
.service-detail-v2 .service-detail-cta { display:flex; align-items:stretch; justify-content:flex-end; gap:10px; margin-top:34px; }
.service-detail-v2 .service-detail-cta .btn { min-height:52px; padding:12px 18px; border-radius:0; font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; }
.service-detail-v2 .service-detail-cta .btn-primary { background:#bd0d26; }

.service-detail-v2 .site-footer { --footer-red:#d80d28; --footer-muted:#96969b; margin:0; color:#fff; background:#08080a; }
.service-detail-v2 .site-footer .container { width:min(1160px,92vw); max-width:1160px; margin-inline:auto; padding-inline:0; }
.service-detail-v2 .footer-bottom { min-height:82px; padding:20px 0; }

@media (max-width:900px) {
  .service-detail-v2 .service-detail-hero > .section-heading { padding-right:39%; }
  .service-detail-v2 .service-detail-grid { padding-right:12%; }
  .service-detail-v2 .service-detail-hero::before { width:46%; }
}
@media (max-width:760px) {
  .service-detail-v2 .brand { margin-left:0; font-size:1.12rem; }
  .service-detail-v2 .brand-logo { width:58px; height:58px; }
  .service-detail-v2 .menu-btn { display:inline-block; margin-left:auto; }
  .service-detail-v2 .header-cta-group { display:none; }
  .service-detail-v2 .service-detail-page > .service-detail-hero { min-height:0; padding-top:50px; }
  .service-detail-v2 .service-detail-hero::before { position:absolute; display:block; inset:0 0 auto; width:100%; height:430px; margin:0; opacity:.34; background-image:linear-gradient(180deg,rgba(14,14,16,.2),#0e0e10 94%),var(--service-image); background-position:center,center; background-size:cover; }
  .service-detail-v2 .service-detail-hero > .section-heading { padding-right:0; }
  .service-detail-v2 .service-back-link { margin-bottom:34px; }
  .service-detail-v2 .service-detail-hero h1 { font-size:clamp(3.4rem,14vw,5rem); }
  .service-detail-v2 .service-detail-grid { grid-template-columns:1fr; margin-top:45px; padding-right:0; }
  .service-detail-v2 .service-detail-card + .service-detail-card { border-top:0; border-left:1px solid rgba(255,255,255,.13); }
  .service-detail-v2 .service-formulas,.service-detail-v2 .service-mini-steps { grid-template-columns:1fr; }
  .service-detail-v2 .service-formula { min-height:215px; border-right:1px solid #cec7bf; border-bottom:0; }
  .service-detail-v2 .service-formula:last-child { border-bottom:1px solid #cec7bf; }
  .service-detail-v2 .service-formula h3 { margin-bottom:35px; }
  .service-detail-v2 .service-mini-steps article { min-height:180px; border-right:1px solid rgba(255,255,255,.12); border-bottom:0; }
  .service-detail-v2 .service-mini-steps article:last-child { border-bottom:1px solid rgba(255,255,255,.12); }
  .service-detail-v2 .service-mini-steps span { margin-bottom:30px; }
  .service-detail-v2 .service-detail-cta { display:grid; grid-template-columns:1fr; }
  .service-detail-v2 .service-detail-cta .btn { width:100%; }
}
@media (max-width:460px) {
  .service-detail-v2 .container { width:min(100% - 32px,1160px); }
  .service-detail-v2 .service-detail-hero h1 { font-size:clamp(3rem,13vw,3.7rem); }
  .service-detail-v2 .service-detail-hero::before { height:390px; }
  .service-detail-v2 .service-detail-card { padding:25px 21px; }
}
/* Service detail V2 — visual proof, expertise, FAQ and related services */
.sd2-gallery { padding:clamp(76px,8vw,112px) 0; color:#1b1a1c; background:#f0ece6; }
.service-detail-v2 .sd2-gallery .reveal,
.service-detail-v2 .sd2-expertise .reveal,
.service-detail-v2 .sd2-closing .reveal { opacity:1; transform:none; }
.sd2-section-head { display:grid; grid-template-columns:1fr minmax(280px,.5fr); gap:55px; align-items:end; margin-bottom:35px; }
.sd2-section-head p,.sd2-kicker,.sd2-related-head p { margin:0 0 10px; color:#ad0a21; font-size:.65rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; }
.sd2-section-head h2,.sd2-expertise h2,.sd2-faq-heading h2,.sd2-related-head h2,.sd2-final h2 { margin:0; font:600 clamp(3.2rem,5vw,4.9rem)/.87 "Teko",sans-serif; letter-spacing:-.02em; text-transform:uppercase; }
.sd2-section-head > span { max-width:450px; color:#716c67; font-size:.86rem; line-height:1.65; }
.sd2-gallery-grid { display:grid; grid-template-columns:minmax(0,1.42fr) minmax(280px,.58fr); min-height:560px; }
.sd2-gallery figure { position:relative; margin:0; overflow:hidden; background:#ccc4ba; }
.sd2-gallery img { width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .35s ease; }
.sd2-gallery figure:hover img { transform:scale(1.025); filter:saturate(1.05); }
.sd2-gallery-main::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(5,5,6,.72),transparent 43%); }
.sd2-gallery-main figcaption { position:absolute; z-index:2; left:25px; bottom:24px; display:grid; padding-left:13px; color:#fff; border-left:3px solid #df1731; text-transform:uppercase; }
.sd2-gallery-main figcaption small { color:#cbc9cc; font-size:.55rem; font-weight:800; letter-spacing:.14em; }
.sd2-gallery-main figcaption strong { margin-top:4px; font:600 1.55rem/1 "Teko",sans-serif; }
.sd2-gallery-side { display:grid; grid-template-rows:1fr 1fr; border-left:1px solid #f0ece6; }
.sd2-gallery-side figure + figure { border-top:1px solid #f0ece6; }
.sd2-proof-strip { display:grid; grid-template-columns:repeat(4,1fr); color:#fff; background:#171719; }
.sd2-proof-strip span { display:flex; align-items:center; gap:12px; min-height:82px; padding:17px 22px; border-left:1px solid rgba(255,255,255,.1); font-size:.59rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.sd2-proof-strip span:first-child { border-left:0; }
.sd2-proof-strip b { color:#df1731; font:600 1.2rem "Teko",sans-serif; }

.sd2-expertise { padding:clamp(76px,8vw,112px) 0; color:#fff; background:radial-gradient(circle at 10% 80%,rgba(172,8,32,.16),transparent 30%),#111113; }
.sd2-expertise-grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(380px,.75fr); gap:clamp(55px,9vw,120px); align-items:center; }
.sd2-expertise-copy > p:not(.sd2-kicker) { max-width:580px; color:#8d8c91; line-height:1.7; }
.sd2-expertise-copy ul { display:grid; margin:26px 0 0; padding:0; list-style:none; }
.sd2-expertise-copy li { display:grid; grid-template-columns:35px 1fr; gap:14px; padding:15px 0; border-top:1px solid rgba(255,255,255,.11); }
.sd2-expertise-copy li > span { display:grid; place-items:center; width:26px; height:26px; color:#fff; border-radius:50%; background:#a90a21; font-size:.65rem; }
.sd2-expertise-copy li div { display:grid; }
.sd2-expertise-copy li strong { font-size:.82rem; }
.sd2-expertise-copy li small { margin-top:4px; color:#77767b; font-size:.71rem; }
.sd2-expertise-image { position:relative; min-height:520px; margin:0; }
.sd2-expertise-image::before { content:""; position:absolute; inset:17px -17px -17px 17px; border:1px solid rgba(218,16,44,.45); }
.sd2-expertise-image img { position:absolute; z-index:1; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.82) contrast(1.04); }
.sd2-expertise-image::after { content:""; position:absolute; z-index:2; inset:0; background:linear-gradient(0deg,rgba(5,5,6,.64),transparent 43%); }
.sd2-expertise-image figcaption { position:absolute; z-index:3; right:-17px; bottom:-17px; display:flex; align-items:center; gap:10px; min-width:155px; padding:14px 17px; color:#fff; background:#bd0d26; text-transform:uppercase; }
.sd2-expertise-image figcaption span { font:600 2.9rem/.8 "Teko",sans-serif; }
.sd2-expertise-image figcaption small { font-size:.55rem; font-weight:800; line-height:1.3; letter-spacing:.07em; }

.sd2-closing { color:#1b1a1c; background:#f0ece6; }
.sd2-faq-grid { display:grid; grid-template-columns:minmax(280px,.65fr) minmax(0,1.15fr); gap:clamp(55px,9vw,120px); padding-top:clamp(76px,8vw,112px); padding-bottom:clamp(76px,8vw,112px); }
.sd2-faq-heading > p:not(.sd2-kicker) { max-width:400px; color:#716c67; line-height:1.65; }
.sd2-faq-list { border-top:1px solid #cfc8c0; }
.sd2-faq-list details { border-bottom:1px solid #cfc8c0; }
.sd2-faq-list summary { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:72px; padding:16px 5px; color:#232124; font-size:.84rem; font-weight:800; cursor:pointer; list-style:none; }
.sd2-faq-list summary::-webkit-details-marker { display:none; }
.sd2-faq-list summary span { display:grid; flex:0 0 28px; width:28px; height:28px; place-items:center; color:#a90a21; border:1px solid #c7bdb5; font-size:1rem; transition:transform .2s ease,background .2s ease,color .2s ease; }
.sd2-faq-list details[open] summary span { color:#fff; background:#a90a21; transform:rotate(45deg); }
.sd2-faq-list details p { max-width:680px; margin:-4px 45px 20px 5px; color:#736e69; font-size:.8rem; line-height:1.65; }
.sd2-related { padding-bottom:clamp(76px,8vw,112px); }
.sd2-related-head { display:flex; align-items:end; justify-content:space-between; gap:35px; margin-bottom:30px; }
.sd2-related-head h2 { font-size:clamp(2.8rem,4.4vw,4.2rem); }
.sd2-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.sd2-related-card { position:relative; min-height:310px; overflow:hidden; color:#fff; background:#171719; }
.sd2-related-card::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(5,5,6,.94),transparent 67%); }
.sd2-related-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.75); transition:transform .7s ease,filter .35s ease; }
.sd2-related-card:hover img { transform:scale(1.04); filter:saturate(1); }
.sd2-related-card > span { position:absolute; z-index:2; left:22px; right:20px; bottom:20px; display:grid; grid-template-columns:1fr auto; align-items:end; }
.sd2-related-card small { grid-column:1; color:#e31934; font-size:.54rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.sd2-related-card strong { grid-column:1; margin-top:4px; font:600 1.55rem/1 "Teko",sans-serif; text-transform:uppercase; }
.sd2-related-card b { grid-column:2; grid-row:1/3; display:grid; width:34px; height:34px; place-items:center; border:1px solid rgba(255,255,255,.32); }
.sd2-final { position:relative; overflow:hidden; padding:clamp(62px,7vw,90px) 0; color:#fff; background:linear-gradient(115deg,#730513,#b40c24); }
.sd2-final::after { content:""; position:absolute; right:-150px; top:-260px; width:550px; height:550px; border:1px solid rgba(255,255,255,.12); border-radius:50%; box-shadow:0 0 0 75px rgba(255,255,255,.025),0 0 0 150px rgba(255,255,255,.018); }
.sd2-final > .container { position:relative; z-index:1; display:grid; grid-template-columns:1fr auto; gap:65px; align-items:center; }
.sd2-final small { color:#efb8c0; font-size:.57rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.sd2-final > .container > div:last-child { display:grid; gap:12px; min-width:265px; }
.sd2-final a:first-child { display:flex; justify-content:space-between; gap:25px; padding:15px 17px; color:#8b0719; background:#fff; font-size:.65rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.sd2-final a:last-child { display:grid; color:#fff; }
.sd2-final a:last-child strong { font:600 1.7rem/1 "Teko",sans-serif; }

@media (max-width:760px) {
  .sd2-section-head,.sd2-expertise-grid,.sd2-faq-grid,.sd2-final > .container { grid-template-columns:1fr; gap:34px; }
  .sd2-gallery-grid { grid-template-columns:1fr; min-height:0; }
  .sd2-gallery-main { min-height:410px; }
  .sd2-gallery-side { grid-template-columns:1fr 1fr; grid-template-rows:245px; border-left:0; border-top:1px solid #f0ece6; }
  .sd2-gallery-side figure + figure { border-top:0; border-left:1px solid #f0ece6; }
  .sd2-proof-strip { grid-template-columns:1fr 1fr; }
  .sd2-proof-strip span:nth-child(3) { border-left:0; border-top:1px solid rgba(255,255,255,.1); }
  .sd2-proof-strip span:nth-child(4) { border-top:1px solid rgba(255,255,255,.1); }
  .sd2-expertise-image { min-height:400px; }
  .sd2-related-grid { grid-template-columns:1fr; }
  .sd2-related-card { min-height:270px; }
  .sd2-final > .container > div:last-child { min-width:0; }
}
@media (max-width:460px) {
  .sd2-gallery-main { min-height:340px; }
  .sd2-gallery-side { grid-template-columns:1fr; grid-template-rows:220px 220px; }
  .sd2-gallery-side figure + figure { border-left:0; border-top:1px solid #f0ece6; }
  .sd2-proof-strip { grid-template-columns:1fr; }
  .sd2-proof-strip span { border-left:0; border-top:1px solid rgba(255,255,255,.1); }
  .sd2-proof-strip span:first-child { border-top:0; }
  .sd2-expertise-image { min-height:330px; }
  .sd2-related-head { display:block; }
}

/* Service detail V3 — stronger, photo-led hero */
.service-detail-v2 .service-detail-page > .service-detail-hero {
  min-height:850px;
  padding:clamp(72px,7vw,105px) 0 clamp(68px,7vw,96px);
  background-color:#0a0a0c;
  background-image:
    linear-gradient(90deg,rgba(8,8,10,.98) 0%,rgba(8,8,10,.91) 34%,rgba(8,8,10,.5) 58%,rgba(8,8,10,.13) 100%),
    linear-gradient(0deg,rgba(8,8,10,.97) 0%,transparent 47%,rgba(8,8,10,.18) 100%),
    var(--sd2-hero-photo);
  background-position:center,center,center 43%;
  background-size:cover;
  background-repeat:no-repeat;
}
.service-detail-v2 .service-detail-hero::before {
  display:none;
  z-index:0;
  inset:0;
  width:100%;
  height:100%;
  opacity:1;
  background-image:
    linear-gradient(90deg,rgba(8,8,10,.98) 0%,rgba(8,8,10,.91) 34%,rgba(8,8,10,.5) 58%,rgba(8,8,10,.13) 100%),
    linear-gradient(0deg,rgba(8,8,10,.97) 0%,transparent 47%,rgba(8,8,10,.18) 100%),
    var(--service-image);
  background-position:center,center,center 43%;
  background-size:cover;
}
.service-detail-v2 .service-detail-hero::after {
  content:"SAVOIR-FAIRE";
  z-index:1;
  left:-14px;
  top:0;
  color:rgba(255,255,255,.032);
  font-size:clamp(10rem,18vw,16rem);
}
.service-detail-v2 .service-detail-hero > .section-heading {
  padding-right:43%;
}
.service-detail-v2 .service-back-link {
  margin-bottom:36px;
  border-color:rgba(255,255,255,.28);
  color:#d0cfd2;
  background:rgba(8,8,10,.34);
  backdrop-filter:blur(10px);
}
.service-detail-v2 .service-detail-hero h1 {
  max-width:760px;
  font-size:clamp(4.3rem,6.2vw,6.65rem);
  line-height:.78;
  text-shadow:0 8px 35px rgba(0,0,0,.28);
}
.service-detail-v2 .service-detail-hero .section-heading > p:last-of-type {
  max-width:620px;
  margin-top:25px;
  color:#c0bec2;
  font-size:1rem;
  line-height:1.65;
}
.sd2-hero-actions {
  display:flex;
  align-items:stretch;
  gap:10px;
  margin-top:30px;
}
.sd2-hero-actions a { min-height:62px; }
.sd2-hero-primary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-width:255px;
  padding:15px 18px;
  color:#fff;
  background:#c70e28;
  box-shadow:0 16px 40px rgba(156,4,27,.25);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
  transition:transform .2s ease,background .2s ease;
}
.sd2-hero-primary b { font-size:1.25rem; }
.sd2-hero-primary:hover { transform:translateY(-2px); background:#df1731; }
.sd2-hero-phone {
  display:grid;
  align-content:center;
  min-width:190px;
  padding:10px 17px;
  color:#fff;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(8,8,10,.45);
  backdrop-filter:blur(12px);
}
.sd2-hero-phone small { color:#aaa9ad; font-size:.55rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.sd2-hero-phone strong { margin-top:3px; font:600 1.55rem/1 "Teko",sans-serif; letter-spacing:.03em; }
.sd2-hero-trust {
  display:flex;
  flex-wrap:wrap;
  gap:9px 23px;
  margin-top:21px;
  color:#cfced1;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.03em;
}
.sd2-hero-trust span { display:flex; align-items:center; gap:7px; }
.sd2-hero-trust b { display:grid; width:17px; height:17px; place-items:center; color:#fff; border-radius:50%; background:#a90920; font-size:.58rem; }
.sd2-hero-showcase {
  position:absolute;
  z-index:2;
  top:clamp(112px,11vw,160px);
  right:max(4vw,calc((100vw - 1160px)/2));
  width:clamp(270px,25vw,330px);
  min-height:365px;
  padding:25px;
  color:#fff;
  border:1px solid rgba(255,255,255,.3);
  border-top:4px solid #cf102a;
  background:linear-gradient(160deg,rgba(15,15,17,.32),rgba(8,8,10,.78));
  box-shadow:0 28px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(8px);
}
.sd2-hero-showcase::before,.sd2-hero-showcase::after { content:""; position:absolute; width:27px; height:27px; pointer-events:none; }
.sd2-hero-showcase::before { top:13px; right:13px; border-top:1px solid rgba(255,255,255,.45); border-right:1px solid rgba(255,255,255,.45); }
.sd2-hero-showcase::after { left:13px; bottom:13px; border-left:1px solid rgba(255,255,255,.25); border-bottom:1px solid rgba(255,255,255,.25); }
.sd2-hero-location { display:flex; align-items:center; gap:9px; color:#d6d4d7; font-size:.58rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.sd2-hero-location span { width:7px; height:7px; border-radius:50%; background:#e21934; box-shadow:0 0 0 5px rgba(226,25,52,.14); }
.sd2-hero-service { position:absolute; left:25px; right:25px; bottom:111px; padding-left:17px; border-left:3px solid #d61931; }
.sd2-hero-service small { color:#bbb9bd; font-size:.57rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.sd2-hero-service strong { display:block; margin-top:7px; font:600 clamp(2.4rem,3.4vw,3.6rem)/.82 "Teko",sans-serif; text-transform:uppercase; }
.sd2-hero-service p { max-width:230px; margin:12px 0 0; color:#c0bec2; font-size:.67rem; line-height:1.5; }
.sd2-hero-number { position:absolute; right:25px; bottom:24px; display:flex; align-items:center; gap:9px; }
.sd2-hero-number strong { color:#fff; font:600 4rem/.7 "Teko",sans-serif; }
.sd2-hero-number span { padding-left:9px; color:#cccacf; border-left:1px solid rgba(255,255,255,.3); font-size:.55rem; font-weight:800; line-height:1.25; letter-spacing:.09em; text-transform:uppercase; }
.service-detail-v2 .service-detail-grid {
  grid-template-columns:minmax(0,1.5fr) minmax(290px,.65fr);
  margin-top:68px;
  padding-right:0;
}
.service-detail-v2 .service-detail-card {
  min-height:255px;
  background:rgba(12,12,14,.88);
  backdrop-filter:blur(18px);
}
.service-detail-v2 .service-detail-card + .service-detail-card { background:rgba(170,8,32,.94); }

@media (max-width:1000px) {
  .service-detail-v2 .service-detail-hero > .section-heading { padding-right:36%; }
  .sd2-hero-showcase { right:4vw; width:275px; }
  .sd2-hero-actions { flex-wrap:wrap; }
}
@media (max-width:760px) {
  .service-detail-v2 .service-detail-page > .service-detail-hero {
    min-height:0;
    padding:50px 0 64px;
    background-image:linear-gradient(180deg,rgba(8,8,10,.38) 0%,rgba(8,8,10,.9) 39%,#0a0a0c 67%),var(--sd2-hero-photo);
    background-position:center,center top;
    background-size:cover,auto 500px;
  }
  .service-detail-v2 .service-detail-hero::before {
    inset:0;
    width:100%;
    height:100%;
    opacity:1;
    background-image:linear-gradient(180deg,rgba(8,8,10,.38) 0%,rgba(8,8,10,.9) 39%,#0a0a0c 67%),var(--service-image);
    background-position:center,center top;
    background-size:cover,auto 500px;
  }
  .service-detail-v2 .service-detail-hero > .section-heading { padding-right:0; }
  .service-detail-v2 .service-detail-hero h1 { max-width:620px; font-size:clamp(3.8rem,15vw,5.4rem); }
  .service-detail-v2 .service-detail-hero .section-heading > p:last-of-type { color:#d0cfd2; }
  .sd2-hero-showcase { display:none; }
  .sd2-hero-actions { display:grid; grid-template-columns:1fr; }
  .sd2-hero-primary,.sd2-hero-phone { width:100%; min-width:0; }
  .sd2-hero-trust { gap:10px 15px; }
  .service-detail-v2 .service-detail-grid { grid-template-columns:1fr; margin-top:46px; }
  .service-detail-v2 .service-detail-grid > * { min-width:0; overflow:hidden; }
  .service-detail-v2 .service-detail-card :is(h2,h3,p,li) { overflow-wrap:anywhere; }
  .service-detail-v2 .service-detail-card h2 { font-size:1.48rem; }
}
@media (max-width:460px) {
  .service-detail-v2 .service-back-link { margin-bottom:56px; }
  .service-detail-v2 .service-detail-hero h1 { font-size:clamp(3.35rem,14.5vw,4.35rem); }
  .sd2-hero-trust { display:grid; grid-template-columns:1fr 1fr; }
  .sd2-hero-trust span:last-child { grid-column:1/-1; }
}
