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

.main-nav a:hover,
.main-nav a.active {
  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;
  transition: 0.28s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.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: 82px 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);
}

@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: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

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

/* 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-message {
  font-weight: 700;
  font-size: 14px;
  color: var(--ral-7016);
}

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

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

.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: -30px;
  padding-bottom: 18px;
}

.quick-actions-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-action {
  min-height: 58px;
  min-width: 142px;
  padding: 10px 16px;
  color: white;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow:
    0 18px 44px rgba(18, 25, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  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(-4px);
  border-color: rgba(255, 106, 0, 0.58);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.24), rgba(255, 255, 255, 0.09));
  box-shadow:
    0 22px 54px rgba(18, 25, 31, 0.24),
    0 0 34px rgba(255, 106, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.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: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

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

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

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

.comparison-card:first-child img {
  height: 390px;
}

.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: 28px 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: center;
}

.insurance-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.insurance-list span {
  min-height: 56px;
  display: grid;
  place-items: center;
  background: #f4f5f6;
  border: 1px solid #e5e7eb;
  color: var(--ral-7016);
  font-weight: 900;
  font-size: 13px;
  filter: grayscale(1);
}

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

.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(4, 1fr);
  gap: 16px;
}

.prestation-mini-card {
  min-height: 190px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  background: white;
  border: 1px solid rgba(56, 62, 66, 0.12);
  box-shadow: 0 18px 48px rgba(18, 25, 31, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

.prestation-mini-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ral-7016);
  font-size: 19px;
  line-height: 1.12;
  text-transform: uppercase;
}

.prestation-mini-card small {
  color: #6b737a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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