* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #17212b;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}


/* HEADER */

.header {
  background: white;
  border-bottom: 1px solid #e9eef2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  width: 210px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: #0f75b5;
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 7px;
  border: 2px solid #0f75b5;
  background: #0f75b5;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #17212b;
  border-color: #d9e0e5;
}

.btn-small {
  padding: 11px 18px;
  font-size: 14px;
}


/* HERO */

.hero {
  padding: 90px 0;
  background:
    linear-gradient(
      135deg,
      #f5f9fc 0%,
      #ffffff 65%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0f75b5;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -2px;
  max-width: 760px;
}

.hero h1 span {
  color: #0f75b5;
}

.hero-text {
  margin-top: 26px;
  max-width: 650px;
  font-size: 18px;
  color: #55616c;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  color: #3f4b55;
  font-size: 14px;
  font-weight: 600;
}


/* HERO IMAGE */

.image-placeholder {
  min-height: 490px;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      #0f75b5,
      #17212b
    );
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 25px 60px rgba(20, 50, 75, 0.15);
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(20, 50, 75, 0.15);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* COMMON SECTIONS */

.services,
.zone,
.contact {
  padding: 100px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading h2,
.zone h2,
.contact h2,
.traceability h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-heading p,
.zone p,
.contact p,
.traceability p {
  margin-top: 18px;
  color: #66727c;
  font-size: 17px;
}


/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  grid-column: span 2;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
grid-column: span 2;
  border: 1px solid #e5eaee;
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition: 0.2s ease;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
}

.service-content {
  padding: 32px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(30, 60, 80, 0.08);
}

.service-number {
  color: #0f75b5;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #66727c;
}

/* BEFORE / AFTER */

.results {
  padding: 100px 0;
  background: #f6f8fa;
}

.results-grid {
  display: grid;
  gap: 30px;
}

.before-after-card {
  background: white;
  border: 1px solid #e5eaee;
  border-radius: 18px;
  padding: 30px;
  overflow: hidden;
}

.before-after-card h3 {
  font-size: 24px;
  margin-bottom: 22px;
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.before-after-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.photo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 6px;
  background: #17212b;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.photo-label.after {
  background: #0f75b5;
}

.before-after-description {
  margin-top: 20px;
  color: #66727c;
}


/* TRACEABILITY */

.traceability {
  padding: 85px 0;
  background: #17212b;
  color: white;
}

.traceability-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.eyebrow.light {
  color: #73bce8;
}

.traceability p {
  color: #cad1d6;
}

.traceability-list {
  display: grid;
  gap: 16px;
}

.traceability-list div {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 5px;
}

.traceability-list strong {
  color: white;
  font-size: 16px;
}

.traceability-list span {
  color: #aeb8c0;
  font-size: 14px;
  line-height: 1.5;
}


/* ZONE */

.zone {
  background: #f6f8fa;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.departments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.departments span {
  padding: 16px 18px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e0e5e8;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.departments strong {
  color: #0f75b5;
  font-size: 20px;
}

.zone-box {
  background: white;
  padding: 42px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(20, 50, 75, 0.08);
  border-top: 4px solid #0f75b5;
}

.zone-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #0f75b5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zone-box strong {
  display: block;
  font-size: 25px;
  line-height: 1.25;
}

.zone-box .btn {
  margin-top: 25px;
}


/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 700;
}

.contact-details a {
  color: #0f75b5;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: #f6f8fa;
  padding: 38px;
  border-radius: 18px;
}

.contact-form label {
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #d8e0e5;
  border-radius: 8px;
  font: inherit;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #0f75b5;
}

.form-note {
  margin-top: -5px;
  font-size: 12px;
  color: #7a858e;
}

.contact-form textarea {
  resize: vertical;
}


/* FOOTER */

.footer {
  padding: 65px 0 25px;
  background: #11191f;
  color: #cbd2d7;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 330px;
  color: #9faab2;
  font-size: 14px;
}

.footer-logo {
  width: 180px;
  display: block;
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-column strong {
  color: white;
  margin-bottom: 7px;
}

.footer-column a,
.footer-column span {
  color: #aeb8c0;
  font-size: 14px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #87939c;
  font-size: 13px;
}

/* MENU MOBILE */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #17212b;
}

.mobile-menu {
  display: none;
}


/* RESPONSIVE */

@media (max-width: 900px) {

.menu-toggle {
  display: block;
}

.mobile-menu {
  display: none;
  padding: 20px 5%;
  background: white;
  border-top: 1px solid #e9eef2;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a:not(.btn) {
  font-weight: 700;
  font-size: 16px;
}

.mobile-menu .btn {
  width: 100%;
}

.footer-content {
  grid-template-columns: 1fr 1fr;
}

  .desktop-nav {
    display: none;
  }

  .nav .btn-small {
    display: none;
  }

  .hero-grid,
  .traceability-grid,
  .zone-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-grid {
    gap: 45px;
  }

  .services-grid {
  grid-template-columns: 1fr 1fr;
}

.service-card {
  grid-column: auto;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: auto;
}

  .image-placeholder {
    min-height: 350px;
  }

}


@media (max-width: 600px) {

.before-after-images {
  grid-template-columns: 1fr;
}

.before-after-image img {
  height: 260px;
}

.before-after-card {
  padding: 18px;
}

.departments {
  grid-template-columns: 1fr;
}

.zone-box {
  padding: 30px 24px;
}

  .services-grid {
    grid-template-columns: 1fr;
  }

.service-card,
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: auto;
}

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-content {
  grid-template-columns: 1fr;
  gap: 30px;
}

}

/* =========================
   PAGE HOTTES PROFESSIONNELLES
========================= */

.service-hero {
  padding: 90px 0;
  background: #ffffff;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.back-link {
  display: block;
  margin-bottom: 24px;
  color: #66727c;
  font-size: 14px;
  font-weight: 700;
}

.back-link:hover {
  color: #0f75b5;
}

.service-hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -2px;
  margin: 14px 0 22px;
}

.service-hero h1 span {
  color: #0f75b5;
}

.service-hero p {
  max-width: 650px;
  color: #66727c;
  font-size: 18px;
}

.service-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(20, 50, 75, 0.15);
}

.service-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}


/* PRESTATION */

.service-details {
  padding: 100px 0;
  background: #f6f8fa;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.equipment-card {
  background: white;
  border: 1px solid #e5eaee;
  border-radius: 16px;
  padding: 30px;
}

.equipment-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.equipment-card span {
  color: #66727c;
}


/* AVANT / APRES */

.service-results {
  padding: 100px 0;
  background: white;
}

.service-results .before-after-images {
  margin-top: 45px;
}


/* METHODE */

.service-method {
  padding: 100px 0;
  background: #17212b;
  color: white;
}

.service-method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.service-method h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.service-method p {
  color: #b8c2ca;
  max-width: 500px;
}

.method-list {
  display: grid;
  gap: 16px;
}

.method-list > div {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.method-list strong {
  color: #4fb2ee;
  font-size: 18px;
}

.method-list span {
  font-weight: 700;
}


/* DOCUMENTS */

.service-documents {
  padding: 100px 0;
  background: #f6f8fa;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.documents-grid > div {
  background: white;
  border: 1px solid #e5eaee;
  border-radius: 16px;
  padding: 32px;
}

.documents-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.documents-grid p {
  color: #66727c;
}


/* CTA BAS DE PAGE */

.service-cta {
  padding: 70px 0;
  background: #0f75b5;
  color: white;
}

.service-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.service-cta h2 {
  font-size: 38px;
  line-height: 1.15;
  margin: 10px 0 14px;
  max-width: 700px;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow.light {
  color: white;
}

.service-cta .btn {
  background: white;
  color: #0f75b5;
  border-color: white;
  white-space: nowrap;
}

.service-cta .btn:hover {
  background: #f3f6f8;
}


/* RESPONSIVE PAGE SERVICE */

@media (max-width: 900px) {

  .service-hero-grid,
  .service-method-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 65px 0;
  }

  .service-hero-grid {
    gap: 45px;
  }

  .service-hero-image img {
    height: 380px;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .service-hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .service-hero-image img {
    height: 300px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .service-method h2,
  .service-cta h2 {
    font-size: 32px;
  }

  .method-list > div {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* DETAILS PRESTATION HOTTE */

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin-top: 55px;
}

.service-detail-row.reverse .service-detail-text {
  order: 2;
}

.service-detail-row.reverse .service-detail-photo {
  order: 1;
}

.service-detail-text {
  padding: 20px 0;
}

.detail-number {
  display: inline-block;
  margin-bottom: 14px;
  color: #0f75b5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-detail-text h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.service-detail-text p {
  color: #66727c;
  margin-bottom: 14px;
  max-width: 520px;
}

.service-detail-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 50, 75, 0.10);
}

.service-detail-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {

  .service-detail-row,
  .service-detail-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-row.reverse .service-detail-text,
  .service-detail-row.reverse .service-detail-photo {
    order: initial;
  }

  .service-detail-photo img {
    height: 300px;
  }
}

/* METHODE VISUELLE - PAGE HOTTE */

.method-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.method-heading h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.method-heading p {
  color: #b8c2ca;
  max-width: 680px;
}

.method-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.method-visual-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.method-photo {
  overflow: hidden;
}

.method-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.method-card-content {
  padding: 26px;
}

.method-card-content > span {
  display: block;
  color: #4fb2ee;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.method-card-content h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: white;
}

.method-card-content p {
  color: #b8c2ca;
  font-size: 15px;
}


/* RESPONSIVE METHODE */

@media (max-width: 900px) {

  .method-visual-grid {
    grid-template-columns: 1fr;
  }

  .method-photo img {
    height: 300px;
  }
}

@media (max-width: 600px) {

  .method-heading h2 {
    font-size: 32px;
  }

  .method-photo img {
    height: 240px;
  }
}

/* RESULTAT INTERVENTION HOTTE */

.hotte-result-box {
  margin-top: 45px;
  padding: 24px;
  background: #f6f8fa;
  border: 1px solid #e5eaee;
  border-radius: 20px;
}

.hotte-result-info {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 35px 10px 10px;
}

.hotte-result-text h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hotte-result-text p {
  color: #66727c;
  max-width: 600px;
}

.result-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 24px;
}

.result-points span {
  font-size: 14px;
  font-weight: 700;
  color: #394752;
}

.hotte-result-extra {
  overflow: hidden;
  background: white;
  border: 1px solid #e5eaee;
  border-radius: 14px;
}

.hotte-result-extra img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f6f8fa;
  display: block;
}

.hotte-result-extra div {
  padding: 18px 20px;
}

.hotte-result-extra strong {
  display: block;
  margin-bottom: 3px;
}

.hotte-result-extra span {
  color: #66727c;
  font-size: 14px;
}


/* MOBILE RESULTAT HOTTE */

@media (max-width: 900px) {

  .hotte-result-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .hotte-result-box {
    padding: 14px;
  }

  .hotte-result-info {
    padding: 25px 5px 5px;
  }

  .result-points {
    grid-template-columns: 1fr;
  }

  .hotte-result-text h3 {
    font-size: 24px;
  }
}

/* POURQUOI ENTRETENIR - PAGE HOTTE */

.service-benefits {
  padding: 100px 0;
  background: #ffffff;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.benefits-intro h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.benefits-intro p {
  color: #66727c;
  max-width: 520px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefit-item {
  padding: 26px;
  border: 1px solid #e5eaee;
  border-radius: 16px;
  background: #f6f8fa;
}

.benefit-item > span {
  display: block;
  color: #0f75b5;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.benefit-item h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 9px;
}

.benefit-item p {
  color: #66727c;
  font-size: 14px;
}


/* MOBILE POURQUOI ENTRETENIR */

@media (max-width: 900px) {

  .service-benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-intro h2 {
    font-size: 32px;
  }
}

/* CLIENTS - PAGE HOTTE */

.service-clients {
  padding: 100px 0;
  background: #ffffff;
}

.service-clients-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}

.service-clients-heading h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-top: 15px;
}

.service-clients-heading > p {
  color: #66727c;
  max-width: 520px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 90px;
  padding: 22px 25px;
  border: 1px solid #e5eaee;
  border-radius: 14px;
  background: #f6f8fa;
  transition: 0.2s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 15px 35px rgba(20, 50, 75, 0.08);
}

.client-card span {
  color: #0f75b5;
  font-size: 13px;
  font-weight: 800;
}

.client-card strong {
  font-size: 17px;
}


/* MOBILE CLIENTS */

@media (max-width: 900px) {

  .service-clients-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .service-clients-heading h2 {
    font-size: 32px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PAGES LÉGALES
========================= */

.legal-page {
  padding: 120px 0 80px;
  background: #f6f8fa;
}

.legal-container {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-intro {
  margin-bottom: 40px;
  color: #66727c;
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 28px;
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(20, 50, 75, 0.08);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #5f6b75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: #0f75b5;
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-back {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 90px 0 60px;
  }

  .legal-section {
    padding: 24px 20px;
  }

  .legal-section h2 {
    font-size: 21px;
  }

  .legal-intro {
    font-size: 16px;
  }
}

.legal-section a.btn {
  color: #ffffff;
}

.legal-section a.btn:hover {
  color: #ffffff;
  text-decoration: none;
}