@import url("./reset.css");
@import url("./variables.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

body {
  font-family: var(--font-main);
  background: #f4f5f6;
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 96px;
  background: rgba(56, 62, 66, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a {
  position: relative;
  transition: 0.3s ease;
  white-space: nowrap;
}

.nav-group {
  position: relative;
}

.nav-group button {
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-group button::after {
  content: "▶";
  color: var(--orange);
  font-size: 9px;
  transition: transform 0.22s ease;
}

.nav-group.is-open button::after {
  content: "▼";
}

.nav-group > div {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  padding: 14px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(37, 42, 45, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.nav-group.is-open > div {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-group > div a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-actions {
  display: none;
}

.main-nav a:hover,
.main-nav a.active,
.nav-group button:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  min-height: 46px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.28s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.98), rgba(255, 133, 42, 0.78));
  color: white;
  box-shadow: 0 18px 44px rgba(255, 106, 0, 0.24);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
  background: linear-gradient(135deg, rgba(37, 42, 45, 0.68), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(18px);
}

.btn-outline.dark {
  color: var(--ral-7016);
  border-color: rgba(56, 62, 66, 0.22);
}

.mobile-toggle {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(56, 62, 66, 0.96) 0%, rgba(56, 62, 66, 0.72) 42%, rgba(56, 62, 66, 0.18) 82%),
    url("../assets/images/hero-atelier.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 106, 0, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.28), transparent 65%);
  filter: blur(20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 520px) 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 0.88;
  font-weight: 900;
  color: white;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
  display: block;
}

.hero p {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  max-width: 490px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-panel {
  justify-self: end;
  width: 330px;
  padding: 26px;
  color: white;
  background: rgba(56, 62, 66, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.hero-panel span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-panel strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-panel p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

/* BADGES */

.hero-badges {
  background: linear-gradient(135deg, #343a3e, #252a2d);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.badge-item {
  display: flex;
  gap: 14px;
  color: white;
  align-items: center;
  min-width: 0;
}

.badge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.55);
  color: var(--orange);
  border-radius: 999px;
  flex: 0 0 auto;
}

.badge-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.badge-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* SECTIONS */

.section {
  padding: 104px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 26%),
    #f4f5f6;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #383e42, #252a2d);
  color: white;
}

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

.section-title {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.section-desc {
  max-width: 560px;
  color: #6b737a;
  font-size: 17px;
  line-height: 1.7;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

/* PARTNERS */

.partners {
  background: linear-gradient(
    180deg,
    #f1f1f1 0%,
    #e6e6e6 100%
  );
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.partners-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.partner-title {
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--ral-7016);
}

.partner-title span {
  color: var(--orange);
  display: block;
  margin-top: 4px;
}

/* Marquee fluide */

.logo-marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  cursor: grab;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 0 22px;
}

.logo-marquee.is-dragging {
  cursor: grabbing;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
  will-change: transform;
}

.logo-track.is-paused {
  animation-play-state: paused;
}

.partner-logo {
  flex: 0 0 auto;
  min-width: 140px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.partner-logo img {
  max-height: 42px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.15) brightness(0.72);
  opacity: 0.82;
  transition: all 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

.mechanic-equipment {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.07), transparent 28%),
    #f7f7f7;
}

.mechanic-equipment-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.mechanic-equipment-main {
  min-height: 190px;
  padding: 28px;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(56, 62, 66, 0.1);
  box-shadow: 0 24px 64px rgba(18, 25, 31, 0.1);
}

.mechanic-equipment-main span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mechanic-equipment-main img {
  max-width: 180px;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.mechanic-equipment-content {
  min-width: 0;
}

.mechanic-logo-marquee {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(56, 62, 66, 0.1);
  border-bottom: 1px solid rgba(56, 62, 66, 0.1);
}

.mechanic-logo-marquee::before,
.mechanic-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.mechanic-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f7f7f7, transparent);
}

.mechanic-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f7f7f7, transparent);
}

.mechanic-logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.mechanic-equipment-logo {
  flex: 0 0 auto;
  width: 178px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0) 76%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mechanic-equipment-logo img {
  max-width: 154px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(35%) contrast(1.2) brightness(0.9) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.22));
  opacity: 0.92;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.mechanic-equipment-logo img:hover {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.05) brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.14));
  opacity: 1;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PROCESS */

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

.process-card {
  position: relative;
  min-height: 260px;
  padding: 34px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 22px 60px rgba(18, 25, 31, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 62%);
}

.process-card:hover {
  transform: translateY(-8px);
}

.process-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 28px;
  font-size: 30px;
  color: var(--ral-7016);
}

.process-card p {
  margin-top: 14px;
  color: #6b737a;
  line-height: 1.7;
}

/* CINEMATIC */

.cinematic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.cinematic-image {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28)),
    url("../assets/images/atelier-resine.jpg") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cinematic-copy p {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 17px;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.tech-card {
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(18, 25, 31, 0.14);
}

.card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.tech-card-content {
  padding: 22px;
}

.tech-card h3 {
  font-size: 18px;
  line-height: 1.1;
  color: var(--ral-7016);
  text-transform: uppercase;
}

.tech-card h3 span {
  color: var(--orange);
  display: block;
}

.tech-card p {
  margin-top: 12px;
  color: #6b737a;
  line-height: 1.65;
  font-size: 14px;
}

/* COMMITMENTS */

.commitments {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.commitment-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: 999px;
  margin-bottom: 18px;
}

.commitment-item h3 {
  font-size: 15px;
  text-transform: uppercase;
}

.commitment-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  font-size: 14px;
}

/* CTA */

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 70px;
  background:
    linear-gradient(90deg, rgba(56, 62, 66, 0.96), rgba(56, 62, 66, 0.84)),
    url("../assets/images/carrosserie-ext.jpeg") center / cover no-repeat;
  color: white;
  box-shadow: 0 28px 80px rgba(18, 25, 31, 0.18);
}

.cta-final::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.25), transparent 65%);
}

.cta-final h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta-final p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

/* INNER PAGES */

.services-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.contact-card,
.contact-form {
  background: white;
  padding: 32px;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 20px 60px rgba(18, 25, 31, 0.09);
}

.service-card h3,
.contact-card h3,
.contact-form h3 {
  font-size: 24px;
  color: var(--ral-7016);
  margin-bottom: 14px;
}

.service-card p,
.contact-line {
  color: #6b737a;
  line-height: 1.7;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-line strong {
  display: block;
  color: var(--ral-7016);
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.input,
.textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: #f4f5f6;
  border: 1px solid #e5e7eb;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-item {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(18, 25, 31, 0.12);
}

.gallery-item:first-child {
  min-height: 520px;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  background: rgba(56, 62, 66, 0.78);
  color: white;
  border-left: 3px solid var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

/* FOOTER */

.site-footer {
  background: #252a2d;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 34px;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 26px 30px;
  align-items: center;
  width: 100%;
  padding-inline: clamp(18px, 3vw, 40px);
}

.footer-links {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 15px;
}

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

.footer-signature {
  display: contents;
}

.footer-brand-social {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  min-width: 0;
}

.footer-brand-social strong {
  font-size: 20px;
  line-height: 1;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}

.footer-socials img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.footer-copy,
.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
  font-size: 14px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-copy {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
}

.footer-credit {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  text-align: right;
}

.footer-credit a {
  color: white;
  font-weight: 900;
}

.footer-credit a:hover {
  color: var(--orange);
}

.recruitment-title {
  color: var(--orange);
  text-shadow: 0 20px 54px rgba(255, 106, 0, 0.22);
}

.recruitment-title-sm {
  color: var(--orange);
}

.recruitment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.recruitment-intro {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruitment-form input[type="file"] {
  padding-top: 20px;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1200;
  width: min(980px, calc(100% - 32px));
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: white;
  background: rgba(37, 42, 45, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-consent p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent-actions,
.cookie-modal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent button,
.cookie-modal button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent button:last-child,
.cookie-modal-actions button:last-child,
.cookie-modal-actions button[data-cookie-save] {
  background: var(--orange);
  border-color: var(--orange);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 25, 31, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  color: var(--ral-7016);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  min-height: 38px;
  padding: 0;
  color: var(--ral-7016);
  background: rgba(56, 62, 66, 0.08);
}

.cookie-modal-panel > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-modal-panel h2 {
  margin: 8px 0 10px;
  font-size: 30px;
}

.cookie-modal-panel p {
  color: #66717a;
  line-height: 1.65;
}

.cookie-option {
  margin-top: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #f5f6f6;
  border: 1px solid rgba(56, 62, 66, 0.1);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 4px;
  color: #66717a;
  line-height: 1.45;
}

.cookie-option.is-disabled {
  opacity: 0.72;
}

.cookie-modal-actions {
  margin-top: 20px;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* MAIL */

.form-help {
  margin: -4px 0 4px;
  color: rgba(35, 42, 45, 0.68);
  font-size: 14px;
  line-height: 1.55;
}
.form-message {
  font-weight: 700;
  font-size: 14px;
  color: var(--ral-7016);
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #b91c1c;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled,
.btn[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.uppercase {
  text-transform: uppercase;
}

/* Animation légère mobile */

@keyframes logoPulse {
  from {
    filter: grayscale(100%) contrast(1.15) brightness(0.72);
    opacity: 0.7;
  }
  to {
    filter: grayscale(90%) contrast(1.12) brightness(0.86);
    opacity: 0.9;
  }
}

@media (max-width: 720px) {
  .logo-track img {
    animation: logoPulse 4s infinite alternate;
  }
}

/* PREMIUM CONVERSION ADDITIONS */

.hero-premium {
  min-height: 620px;
}

.hero-grid-refined {
  align-items: start;
  padding-top: 18px;
}

.hero-grid-refined .hero-copy {
  margin-top: -18px;
}

.quick-actions {
  position: relative;
  z-index: 4;
  margin-top: -28px;
  padding-bottom: 30px;
}

.quick-actions-grid {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: min(6vw, 82px);
}

.quick-action {
  min-height: 52px;
  min-width: 176px;
  padding: 9px 18px;
  color: white;
  background: linear-gradient(135deg, rgba(37, 42, 45, 0.72), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 16px 38px rgba(18, 25, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.quick-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.58);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(37, 42, 45, 0.68));
  box-shadow:
    0 20px 48px rgba(18, 25, 31, 0.22),
    0 0 24px rgba(255, 106, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.quick-action-devis {
  min-width: 188px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.92), rgba(255, 133, 42, 0.72)),
    rgba(37, 42, 45, 0.78);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 18px 44px rgba(255, 106, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.quick-action-devis:hover {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 1), rgba(255, 145, 56, 0.82)),
    rgba(37, 42, 45, 0.78);
  box-shadow:
    0 22px 54px rgba(255, 106, 0, 0.34),
    0 0 24px rgba(255, 106, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.quick-action-devis span,
.quick-action-devis small {
  color: white;
}

.quick-action span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  grid-row: 1 / span 2;
}

.quick-action strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.quick-action small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.15;
}

.prestations-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prestations-category {
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 24px 68px rgba(18, 25, 31, 0.1);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.prestations-category:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 84px rgba(18, 25, 31, 0.16);
}

.category-media {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.category-content {
  padding: 30px;
}

.category-content span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.category-content h3 {
  margin-top: 16px;
  color: var(--ral-7016);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-content p {
  margin-top: 16px;
  color: #6b737a;
  line-height: 1.7;
}

.category-content a,
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split-copy p {
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 17px;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.level-grid span {
  padding: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.before-after {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.before-after img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.before-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0 49.8%, rgba(255, 255, 255, 0.82) 49.8% 50.2%, rgba(0, 0, 0, 0.02) 50.2%);
}

.before-after-labels {
  position: absolute;
  inset: auto 22px 22px;
  display: flex;
  justify-content: space-between;
}

.before-after-labels span {
  padding: 10px 14px;
  background: rgba(37, 42, 45, 0.82);
  color: white;
  border-left: 3px solid var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.covering-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr;
  gap: 22px;
}

.covering-card {
  padding: 34px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 22px 60px rgba(18, 25, 31, 0.09);
}

.covering-card h3 {
  color: var(--ral-7016);
  font-size: 26px;
  text-transform: uppercase;
}

.covering-card ul {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: #5d656c;
}

.covering-card li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.covering-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-height: 360px;
}

.covering-visual div {
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 60px rgba(18, 25, 31, 0.12);
}

.realisation-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  display: grid;
  grid-template-rows: 420px 1fr;
  transition: transform 0.28s ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-card:first-child img {
  height: 100%;
}

.comparison-card div {
  padding: 22px;
}

.comparison-card strong {
  display: block;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

.comparison-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.insurance-partners {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 28%),
    #fff;
  border-block: 1px solid #e5e7eb;
}

.insurance-head {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.insurance-head h2 {
  color: var(--ral-7016);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.insurance-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #6b737a;
  font-size: 17px;
  line-height: 1.7;
}

.insurance-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.insurance-logo-card {
  min-height: 118px;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(56, 62, 66, 0.1);
  box-shadow: 0 20px 52px rgba(18, 25, 31, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.18s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insurance-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 28px 72px rgba(18, 25, 31, 0.12);
}

.insurance-logo-card img {
  width: auto;
  max-width: 170px;
  height: 46px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.78;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.insurance-logo-card:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.03);
}

.insurance-note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: rgba(244, 245, 246, 0.78);
  border: 1px solid rgba(56, 62, 66, 0.1);
}

.insurance-note p {
  color: var(--ral-7016);
  font-weight: 800;
  line-height: 1.55;
}

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

.faq-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
}

.faq-card h3 {
  color: var(--ral-7016);
  font-size: 20px;
  line-height: 1.2;
}

.faq-card p {
  margin-top: 14px;
  color: #6b737a;
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-detail-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
}

.service-detail-card h3 {
  color: var(--ral-7016);
  font-size: 22px;
  line-height: 1.15;
}

.service-detail-card h4 {
  margin-top: 18px;
  color: var(--ral-7016);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-card p {
  margin-top: 13px;
  color: #6b737a;
  line-height: 1.7;
}

.service-detail-card .btn {
  margin-top: 18px;
}

.price-note {
  padding: 26px;
  background: rgba(255, 106, 0, 0.1);
  border-left: 4px solid var(--orange);
  color: var(--ral-7016);
  font-weight: 800;
  line-height: 1.65;
}

.recruitment-form .input[type="file"] {
  padding: 15px;
}

.trust-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card,
.review-card {
  padding: 30px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 20px 58px rgba(18, 25, 31, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trust-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 74px rgba(18, 25, 31, 0.14);
}

.trust-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.trust-card h3,
.review-card h3 {
  color: var(--ral-7016);
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.trust-card p,
.review-card p {
  margin-top: 12px;
  color: #6b737a;
  line-height: 1.7;
}

.section-dark .review-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.section-dark .review-card h3 {
  color: white;
}

.section-dark .review-card p {
  color: rgba(255, 255, 255, 0.72);
}

.reviews-summary {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 6px 18px;
  align-items: center;
  padding: 18px 24px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.reviews-summary span {
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
}

.reviews-summary small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.62);
}

.stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: transparent;
  color: white;
  border: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.accordion-item button::after {
  content: "+";
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.accordion-item.is-open button::after {
  content: "-";
}

.accordion-item > div {
  display: none;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.accordion-item.is-open > div {
  display: block;
}

.contact-premium {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-map {
  min-height: 430px;
  display: grid;
  place-items: end start;
  padding: 34px;
  color: white;
  background:
    linear-gradient(180deg, rgba(56, 62, 66, 0.12), rgba(37, 42, 45, 0.86)),
    url("../assets/images/carrosserie-ext.jpeg") center / cover no-repeat;
  box-shadow: 0 26px 74px rgba(18, 25, 31, 0.14);
}

.contact-map div {
  padding: 22px;
  background: rgba(37, 42, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.contact-map span {
  color: var(--orange);
  font-size: 28px;
}

.contact-map strong,
.contact-map small {
  display: block;
  margin-top: 6px;
}

.contact-panel {
  padding: 42px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 22px 64px rgba(18, 25, 31, 0.1);
}

.contact-premium-lines {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-premium-lines a,
.contact-premium-lines div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  color: var(--ral-7016);
}

.contact-premium-lines strong {
  text-transform: uppercase;
  font-size: 12px;
}

.contact-premium-lines span {
  color: #6b737a;
  text-align: right;
}

.home-contact-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.home-contact-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 29, 31, .92) 0%, rgba(24, 29, 31, .72) 43%, rgba(24, 29, 31, .22) 100%),
    url("../assets/images/carrosserie-ext.jpeg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(18, 25, 31, .18);
}

.home-contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 86%, rgba(255, 106, 0, .24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 28%);
  pointer-events: none;
}

.home-contact-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
}

.home-contact-content .section-title {
  color: #fff;
  max-width: 760px;
}

.home-contact-content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.7;
}

.home-contact-lines {
  margin-top: 30px;
  padding: 10px 0;
}

.home-contact-lines a,
.home-contact-lines div {
  border-bottom-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.home-contact-lines strong {
  color: rgba(255, 255, 255, .92);
}

.home-contact-lines span {
  color: rgba(255, 255, 255, .72);
}

.home-contact-content .cta-bubble-actions {
  margin-top: 28px;
  max-width: 760px;
}

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

/* REALISATIONS ULTRA PREMIUM */

.realisation-hero {
  padding: 86px 0 72px;
  overflow: hidden;
}

.realisation-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.featured-ba {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.featured-ba-caption {
  padding: 22px 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.featured-ba-caption strong {
  font-size: 16px;
  text-transform: uppercase;
}

.featured-ba-caption span {
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.realisation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.realisation-tabs a {
  padding: 12px 16px;
  color: var(--ral-7016);
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 14px 34px rgba(18, 25, 31, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.realisation-tabs a:hover {
  color: white;
  background: var(--orange);
  transform: translateY(-2px);
}

.result-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-proof {
  padding: 28px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
}

.result-proof span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.result-proof strong {
  display: block;
  margin-top: 16px;
  color: var(--ral-7016);
  font-size: 18px;
  text-transform: uppercase;
}

.result-proof p {
  margin-top: 12px;
  color: #6b737a;
  line-height: 1.65;
}

.realisation-category {
  display: grid;
  gap: 30px;
}

.realisation-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.work-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 24px 68px rgba(18, 25, 31, 0.12);
}

.section-dark .work-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.work-card-content {
  padding: 24px;
}

.work-card-content span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card-content h3 {
  margin-top: 10px;
  color: var(--ral-7016);
  font-size: 24px;
  text-transform: uppercase;
}

.section-dark .work-card-content h3 {
  color: white;
}

.work-card-content p {
  margin-top: 10px;
  color: #6b737a;
  line-height: 1.65;
}

.section-dark .work-card-content p {
  color: rgba(255, 255, 255, 0.68);
}

.ba-slider {
  --position: 50%;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  background: #1f2427;
  cursor: ew-resize;
}

.work-card .ba-slider {
  min-height: 330px;
}

.ba-slider img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  z-index: 2;
}

.ba-before img {
  filter: saturate(0.56) contrast(1.08) brightness(0.72);
}

.ba-before::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.ba-slider input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.ba-handle::before {
  content: "↔";
  color: white;
  font-weight: 900;
}

.ba-tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 10px 13px;
  color: white;
  background: rgba(37, 42, 45, 0.8);
  border-left: 3px solid var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ba-tag-before {
  left: 18px;
}

.ba-tag-after {
  right: 18px;
}

.category-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.premium-gallery-item {
  min-height: 310px;
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 68px rgba(18, 25, 31, 0.12);
}

.premium-gallery-item:first-child {
  min-height: 430px;
}

.premium-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.premium-gallery-item:hover img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.05);
}

.trust-statement {
  padding: 64px;
  color: white;
  background:
    linear-gradient(90deg, rgba(56, 62, 66, 0.95), rgba(56, 62, 66, 0.82)),
    url("../assets/images/hero-atelier.jpg") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(18, 25, 31, 0.18);
}

.trust-statement h2 {
  max-width: 980px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.trust-statement p {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

/* PRESTATIONS HUB AND DETAIL PAGES */

.prestations-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prestation-mini-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 18%;
  position: relative;
  min-height: 174px;
  padding: 30px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 248, 0.96)),
    #fff;
  border: 1px solid rgba(18, 25, 31, 0.08);
  border-radius: 18px;
  box-shadow:
    0 22px 54px rgba(18, 25, 31, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.prestation-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 106, 0, 0.32), transparent 34%),
    linear-gradient(120deg, transparent 0 64%, rgba(255, 255, 255, 0.96) 76%, transparent 92%);
  opacity: 0.66;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.12s ease;
}

.prestation-mini-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.62), rgba(255, 106, 0, 0.08), transparent);
  opacity: 0;
  transform: translateY(5px) translateZ(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.prestation-mini-card:hover,
.prestation-mini-card.is-tilting {
  transform: perspective(680px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-9px) scale(1.035);
  border-color: rgba(255, 106, 0, 0.22);
  box-shadow:
    calc(var(--shadow-x, 0px) * -1) calc(34px + var(--shadow-y, 0px)) 86px rgba(18, 25, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.prestation-mini-card:hover::before,
.prestation-mini-card.is-tilting::before {
  opacity: 1;
  transform: scale(1.08) translateZ(1px);
}

.prestation-mini-card:hover::after,
.prestation-mini-card.is-tilting::after {
  opacity: 1;
  transform: translateY(0) translateZ(22px);
}

.prestation-mini-card span {
  width: fit-content;
  padding: 8px 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 106, 0, 0.075);
  border: 1px solid rgba(255, 106, 0, 0.12);
  border-radius: 999px;
  transform: translateZ(18px);
}

.prestation-mini-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ral-7016);
  font-size: 20px;
  line-height: 1.12;
  text-transform: uppercase;
  transform: translateZ(14px);
  transition: transform 0.28s ease;
}

.prestation-mini-card:hover strong,
.prestation-mini-card.is-tilting strong {
  transform: translateZ(46px) translateY(-4px);
}

.prestation-mini-card small {
  width: fit-content;
  color: #65717a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateZ(12px);
  transition: color 0.28s ease, transform 0.28s ease;
}

.prestation-mini-card small::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.prestation-mini-card:hover small,
.prestation-mini-card.is-tilting small {
  color: var(--orange);
  transform: translateZ(38px) translateX(5px);
}

.prestation-mini-card:hover small::after,
.prestation-mini-card.is-tilting small::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .prestation-mini-card,
  .prestation-mini-card::before,
  .prestation-mini-card::after,
  .prestation-mini-card strong,
  .prestation-mini-card small,
  .prestation-mini-card small::after {
    transition: none;
  }

  .prestation-mini-card:hover,
  .prestation-mini-card.is-tilting,
  .prestation-mini-card:hover::before,
  .prestation-mini-card.is-tilting::before,
  .prestation-mini-card:hover strong,
  .prestation-mini-card.is-tilting strong,
  .prestation-mini-card:hover small,
  .prestation-mini-card.is-tilting small {
    transform: none;
  }
}
.service-hero {
  padding: 84px 0;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.service-hero-image {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.service-hero-compare {
  min-height: 440px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.service-page-main,
.service-page-side {
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 22px 60px rgba(18, 25, 31, 0.09);
}

.service-page-main {
  padding: 42px;
}

.service-page-main h2 {
  margin-top: 34px;
  color: var(--ral-7016);
  font-size: 28px;
  line-height: 1.1;
}

.service-page-main h2:first-child {
  margin-top: 0;
}

.service-page-main p,
.service-page-main li {
  color: #5f6870;
  line-height: 1.75;
}

.service-page-main p {
  margin-top: 14px;
}

.service-page-main ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.service-page-main li {
  padding-left: 18px;
  position: relative;
}

.service-page-main li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.service-page-side {
  position: sticky;
  top: 116px;
  padding: 26px;
  display: grid;
  gap: 14px;
}

.service-page-side strong {
  color: var(--ral-7016);
  font-size: 22px;
}

.service-page-side span {
  color: #6b737a;
  line-height: 1.65;
}

.service-side-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.side-action {
  min-height: 52px;
  min-width: 176px;
  padding: 9px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: white;
  background: linear-gradient(135deg, rgba(37, 42, 45, 0.72), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 16px 38px rgba(18, 25, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.side-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.58);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(37, 42, 45, 0.68));
  box-shadow:
    0 20px 48px rgba(18, 25, 31, 0.2),
    0 0 24px rgba(255, 106, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.side-action span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.side-action strong {
  color: white;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.side-action small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.15;
}

.side-action-devis {
  min-width: 188px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.92), rgba(255, 133, 42, 0.72)),
    rgba(37, 42, 45, 0.78);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 18px 44px rgba(255, 106, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.side-action-devis:hover {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 1), rgba(255, 145, 56, 0.82)),
    rgba(37, 42, 45, 0.78);
  box-shadow:
    0 22px 54px rgba(255, 106, 0, 0.32),
    0 0 24px rgba(255, 106, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.side-action-devis span,
.side-action-devis small {
  color: white;
}

.hero-bubble-actions {
  align-items: center;
}

.hero-bubble-actions .side-action {
  min-width: 176px;
  min-height: 52px;
}

.cta-bubble-actions {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.cta-bubble-actions .side-action {
  width: auto;
}

.service-page-main .cta-bubble-actions,
.contact-panel .cta-bubble-actions {
  justify-content: flex-start;
}

.page-hero .hero-bubble-actions {
  position: absolute;
  left: min(6vw + 15px, 112px);
  bottom: -28px;
  z-index: 6;
  width: min(100% - 64px, 820px);
  margin-top: 0;
  transform: none;
  justify-content: flex-start;
}

.related-head {
  margin-top: 52px;
}

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

.related-card {
  padding: 22px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 16px 42px rgba(18, 25, 31, 0.07);
}

.related-card span,
.related-card small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  display: block;
  margin: 10px 0 16px;
  color: var(--ral-7016);
  font-size: 18px;
  text-transform: uppercase;
}

/* DESKTOP SIDEBAR NAVIGATION */

@media (min-width: 1181px) {
  body {
    padding-left: 78px;
  }

  .site-header {
    position: fixed;
    inset: 0 auto 0 0;
    width: 78px;
    height: 100vh;
    background: rgba(37, 42, 45, 0.96);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    box-shadow: 18px 0 60px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease;
  }

  .site-header:hover,
  .site-header:focus-within {
    width: 340px;
    box-shadow: 24px 0 86px rgba(0, 0, 0, 0.28);
  }

  .header-inner {
    width: auto;
    height: 100%;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
  }

  .logo {
    width: 100%;
    min-height: 72px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 16px;
  }

  .logo-img {
    height: 74px;
    max-width: 86px;
    transform: translateX(-3px);
    transition: height 0.28s ease, max-width 0.28s ease, transform 0.28s ease;
  }

  .site-header:hover .logo-img,
  .site-header:focus-within .logo-img {
    height: 68px;
    max-width: 172px;
    transform: translateX(0);
  }

  .site-header:hover .logo,
  .site-header:focus-within .logo {
    min-height: 62px;
    padding-bottom: 10px;
  }

  .main-nav {
    width: 100%;
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 106, 0, 0.28) transparent;
  }

  .main-nav > a[href*="recrutement"]::before {
    content: "\1F4BC";
  }

  .main-nav > a,
  .nav-group > button {
    min-height: 44px;
    width: 100%;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
  }

  .main-nav > a::before,
  .nav-group > button::before {
    width: 24px;
    flex: 0 0 24px;
    color: var(--orange);
    font-size: 15px;
    text-align: center;
  }

  .main-nav > a:nth-of-type(1)::before {
    content: "⌂";
  }

  .nav-group:nth-of-type(1) > button::before {
    content: "◇";
  }

  .nav-group:nth-of-type(2) > button::before {
    content: "◆";
  }

  .nav-group:nth-of-type(3) > button::before {
    content: "◈";
  }

  .main-nav > a[href*="realisations"]::before {
    content: "◩";
  }

  .main-nav > a[href*="faq"]::before {
    content: "?";
  }

  .main-nav > a[href*="contact"]::before {
    content: "☎";
  }

  .main-nav > a,
  .nav-group > button,
  .menu-actions {
    opacity: 0.98;
  }

  .site-header:not(:hover):not(:focus-within) .main-nav > a,
  .site-header:not(:hover):not(:focus-within) .nav-group > button {
    color: transparent;
  }

  .site-header:not(:hover):not(:focus-within) .main-nav > a::before,
  .site-header:not(:hover):not(:focus-within) .nav-group > button::before,
  .site-header:not(:hover):not(:focus-within) .nav-group > button::after {
    color: var(--orange);
  }

  .main-nav > a:hover,
  .main-nav > a.active,
  .nav-group > button:hover,
  .nav-group.is-open > button {
    color: white;
    background: rgba(255, 255, 255, 0.075);
  }

  .nav-group {
    width: 100%;
    position: relative;
  }

  .nav-group button::after {
    margin-left: auto;
  }

  .site-header .main-nav .nav-group > div {
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease;
  }

  .site-header .main-nav .nav-group.is-open > div {
    max-height: 260px;
    margin: 6px 0 8px;
    padding: 8px 8px 8px 52px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(15, 18, 20, 0.48);
    border-left: 1px solid rgba(255, 106, 0, 0.24);
    border-radius: 10px;
    transform: none;
  }

  .site-header:not(:hover):not(:focus-within) .nav-group > div {
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header .main-nav .nav-group > div a {
    width: 100%;
    min-height: 30px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 0;
    border-radius: 7px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    white-space: normal;
    overflow: visible;
    overflow-wrap: normal;
    text-overflow: clip;
  }

  .nav-group > div a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--orange);
    opacity: 0.85;
  }

  .nav-group > div a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
  }

  .main-nav::-webkit-scrollbar {
    width: 6px;
  }

  .main-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.28);
    border-radius: 999px;
  }

  .btn-header {
    display: none;
  }

  .menu-actions {
    margin-top: auto;
    padding-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-actions a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.95);
    color: white;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .menu-actions a:last-child {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-header:not(:hover):not(:focus-within) .menu-actions a {
    color: transparent;
    padding: 0;
  }

  .site-header:not(:hover):not(:focus-within) .menu-actions a::before {
    color: white;
    font-size: 15px;
  }

  .site-header:not(:hover):not(:focus-within) .menu-actions a:first-child::before {
    content: "☎";
  }

  .site-header:not(:hover):not(:focus-within) .menu-actions a:last-child::before {
    content: "↗";
  }
}

/* FINAL PREMIUM SIMPLIFICATION */

.hero-refined {
  min-height: 500px;
}

.hero-refined .hero-content {
  padding-left: min(6vw, 82px);
  padding-top: 52px;
  padding-bottom: 52px;
}

.hero-refined .hero-copy {
  max-width: 720px;
}

.hero-refined h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.1vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-refined p {
  margin-top: 18px;
}

.hero-refined .hero-actions {
  margin-top: 24px;
}

.hero-refined .hero-grid {
  display: block;
}

.hero-refined .hero-panel {
  display: none;
}

.page-hero {
  min-height: 430px;
  overflow: visible;
  margin-bottom: 42px;
}

.page-hero .hero-content {
  padding-top: 62px;
  padding-bottom: 62px;
}

.page-hero .hero-copy {
  max-width: 820px;
  padding-bottom: 72px;
}

.intro-premium {
  background: #f7f7f7;
}

.intro-premium-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-text {
  padding-top: 14px;
}

.intro-text p {
  color: #5f6870;
  font-size: 19px;
  line-height: 1.85;
}

.intro-text p + p {
  margin-top: 18px;
}

.home-prestations {
  grid-template-columns: repeat(3, 1fr);
}

.insurance-marquee-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 30%),
    #fff;
  overflow: hidden;
}

.insurance-logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 18px 0;
}

.insurance-logo-marquee::before,
.insurance-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.insurance-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.insurance-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.insurance-logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: scrollLogos 36s linear infinite;
}

.insurance-logo {
  width: 190px;
  height: 86px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(56, 62, 66, 0.1);
  box-shadow: 0 18px 44px rgba(18, 25, 31, 0.07);
}

.insurance-logo img {
  width: auto;
  max-width: 138px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.82;
}

.insurance-logo img.thelem-logo {
  width: 92px;
  height: 92px;
  max-width: 92px;
  object-fit: contain;
}

.insurance-logo:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}

.google-review-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.google-review-shell strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.google-review-shell span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-link-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
}

.faq-link-card strong {
  display: block;
  color: var(--ral-7016);
  font-size: 22px;
  line-height: 1.18;
}

.faq-link-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.local-seo-intro {
  max-width: 1180px;
}

.local-seo-text {
  max-width: 920px;
  color: rgba(32, 39, 42, .78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.8;
}

.local-focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.local-focus-grid span {
  border: 1px solid rgba(255, 106, 0, .28);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 42px rgba(30, 35, 38, .08);
  color: var(--color-dark);
  font-weight: 800;
}

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

.local-service-card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.local-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, .48);
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 106, 0, .08));
}

.local-service-card strong {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.local-service-card span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.local-communes-details {
  border: 1px solid rgba(32, 39, 42, .12);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 30px 80px rgba(30, 35, 38, .08);
}

.local-communes-details summary {
  cursor: pointer;
  padding: 24px 28px;
  color: var(--color-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.local-communes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(32, 39, 42, .08);
}

.local-communes-grid li {
  min-height: 68px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.local-communes-grid span {
  color: var(--color-dark);
  font-weight: 800;
}

.local-communes-grid small {
  margin-top: 4px;
  color: rgba(32, 39, 42, .54);
  font-weight: 700;
}










/* ASSISTANT CHAT */

.site-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1180;
  font-family: inherit;
}

.site-chat-toggle {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.98), rgba(196, 82, 12, 0.92));
  box-shadow: 0 18px 45px rgba(255, 106, 0, 0.28), 0 16px 45px rgba(0, 0, 0, 0.26);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.site-chat-toggle span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.site-chat-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  display: none;
  border: 2px solid #252a2d;
  border-radius: 999px;
  background: white;
}

.site-chat-badge.is-visible {
  display: block;
}

.site-chat-toggle:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 58px rgba(255, 106, 0, 0.36), 0 18px 48px rgba(0, 0, 0, 0.28);
}

.site-chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(370px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto minmax(160px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(37, 42, 45, 0.96), rgba(24, 28, 31, 0.94)),
    rgba(37, 42, 45, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(18px);
}

.site-chat.is-open .site-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-chat-header {
  position: relative;
  padding: 20px 56px 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-chat-header span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-chat-header strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.site-chat-header button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.site-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
}

.site-chat-updates {
  display: grid;
  gap: 8px;
  margin: 14px 18px 0;
  padding: 12px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.1);
}

.site-chat-updates[hidden] {
  display: none;
}

.site-chat-updates strong,
.site-chat-updates span {
  font-size: 12px;
}

.site-chat-updates span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  text-transform: uppercase;
}

.site-chat-updates p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.site-chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.site-chat-message.is-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.site-chat-message.is-user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(255, 106, 0, 1), rgba(255, 145, 56, 0.86));
  color: white;
  font-weight: 700;
}

.site-chat-report {
  width: fit-content;
  align-self: flex-start;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.site-chat-report:hover {
  color: var(--orange);
}

.site-chat-feedback,
.site-chat-notice {
  margin: 0 18px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.site-chat-feedback {
  padding: 9px 10px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.site-chat-feedback[hidden] {
  display: none;
}

.site-chat-pre-messages {
  display: grid;
  gap: 8px;
  padding: 0 18px 14px;
}

.site-chat-pre-messages > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-chat-suggestions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.site-chat-suggestions button:hover {
  background: rgba(255, 106, 0, 0.22);
  transform: translateY(-1px);
}

.site-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 4px;
}

.site-chat-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 0, 0.46);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-chat-actions a:hover {
  background: rgba(255, 106, 0, 0.22);
  transform: translateY(-1px);
}

.site-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-chat-form input {
  min-width: 0;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 14px;
  outline: none;
}

.site-chat-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.site-chat-form button {
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
  text-transform: uppercase;
}

.site-chat-optout {
  margin: -4px 14px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.site-chat-optout:disabled {
  cursor: default;
  opacity: 0.72;
}

@media (max-width: 640px) {
  .site-chat {
    right: 14px;
    bottom: 14px;
  }

  .site-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .site-chat-panel {
    right: -2px;
    bottom: 68px;
    width: calc(100vw - 28px);
    max-height: min(560px, calc(100vh - 96px));
    border-radius: 18px;
  }

  .site-chat-form {
    grid-template-columns: 1fr;
  }
}
/* RESPIRATION DES TITRES */

:where(.hero h1, .section-title, .insurance-head h2, .trust-statement h2, .cta-final h2) {
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  margin-bottom: 26px;
}

.hero-refined h1 {
  line-height: 1.06;
  max-width: 820px;
}

.section-title {
  max-width: 980px;
  margin-bottom: 22px;
}

.section-head .section-title {
  margin-bottom: 0;
}

:where(.process-card h3, .tech-card h3, .service-card h3, .contact-card h3, .contact-form h3, .category-content h3, .covering-card h3, .faq-card h3, .service-detail-card h3, .trust-card h3, .review-card h3, .work-card-content h3, .service-page-main h2) {
  line-height: 1.24;
  text-wrap: balance;
}

.service-page-main h2 {
  margin-top: 42px;
  margin-bottom: 14px;
}

.work-card-content h3,
.service-detail-card h3,
.faq-card h3 {
  margin-bottom: 10px;
}

.kicker,
.eyebrow {
  line-height: 1.45;
  margin-bottom: 14px;
}

.page-hero .hero-copy {
  max-width: 880px;
}

@media (max-width: 760px) {
  :where(.hero h1, .section-title, .insurance-head h2, .trust-statement h2, .cta-final h2) {
    line-height: 1.12;
  }

  .section-title {
    margin-bottom: 18px;
  }

  :where(.process-card h3, .tech-card h3, .service-card h3, .contact-card h3, .contact-form h3, .category-content h3, .covering-card h3, .faq-card h3, .service-detail-card h3, .trust-card h3, .review-card h3, .work-card-content h3, .service-page-main h2) {
    line-height: 1.28;
  }
}
