:root {
  --black: #050505;
  --white: #ffffff;
  --soft-white: #f4f4f4;
  --yellow: #2bb8ff;
  --yellow-deep: #0b73d9;
  --navy: #062b4f;
  --blue-soft: #eaf7ff;
  --line: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  color: var(--white);
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(4, 28, 52, 0.95) 0%, rgba(5, 42, 78, 0.82) 35%, rgba(5, 43, 80, 0.28) 68%, rgba(5, 43, 80, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 20, 39, 0.48) 0%, rgba(0, 20, 39, 0.04) 34%, rgba(0, 22, 43, 0.28) 100%),
    url("assets/hero-nettoie-tout.png");
  background-size: cover;
  background-position: center center;
}

.topbar {
  min-height: 84px;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 31, 58, 0.76);
  backdrop-filter: blur(10px);
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  color: var(--white);
  background: rgba(43, 184, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-icon::after {
  display: none;
}

.brand {
  position: relative;
}

.brand-icon svg {
  width: 25px;
  height: 25px;
  color: var(--yellow);
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong span {
  color: var(--yellow);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--soft-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.95;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.top-call,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.top-call {
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 12px 28px rgba(43, 184, 255, 0.24);
}

.top-call svg,
.button svg,
.top-call .lucide,
.button .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.hero-content {
  width: 100%;
  min-height: calc(760px - 84px);
  padding: 76px 8% 52px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(590px, 100%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.3vw, 74px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 21px;
  line-height: 1.45;
}

.hero-note {
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.hero-note span {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.button {
  min-width: 206px;
  padding: 0 24px;
  font-size: 17px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 16px 34px rgba(43, 184, 255, 0.24);
}

.button-outline {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.trust-row {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.trust-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  border: 1px solid rgba(43, 184, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.trust-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.25;
}

main {
  background: var(--white);
}

.services-section,
.mission-section,
.sectors-section,
.quote-section {
  padding: 76px 8%;
}

.services-section {
  color: var(--navy);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-deep);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.section-head h2,
.mission-copy h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 310px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(6, 43, 79, 0.08);
}

.service-card-wide,
.service-card-action {
  grid-column: span 2;
  min-height: 230px;
}

.service-card-action {
  grid-column: span 4;
  min-height: 220px;
  color: var(--white);
  border-color: rgba(43, 184, 255, 0.34);
  background:
    radial-gradient(circle at 92% 16%, rgba(43, 184, 255, 0.32) 0%, rgba(43, 184, 255, 0) 32%),
    linear-gradient(135deg, #062b4f 0%, #0a5d9d 100%);
}

.service-card-action .service-icon,
.service-card-action h3,
.service-card-action p {
  color: var(--white) !important;
}

.service-card-action p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.service-card-action a {
  width: fit-content;
  margin-top: auto;
  padding: 14px 18px;
  color: #062b4f;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  font-size: 15px;
  font-weight: 950;
}

.service-card-action .service-icon {
  opacity: 0.95;
}

.service-card-action,
.service-card-action *,
.service-card-action svg,
.service-card-action .lucide {
  color: var(--white);
  stroke: currentColor;
}

.service-card-action a,
.service-card-action a * {
  color: #062b4f;
}

.service-card-action h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.service-card-action p {
  max-width: 760px;
  font-size: 17px;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-deep);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.75;
}

.service-card h3 {
  margin: 26px 0 0;
  color: #041f3a;
  font-size: 20px;
  line-height: 1.15;
}

.service-card p {
  margin: 14px 0 0;
  color: #425669;
  font-size: 15px;
  line-height: 1.58;
}

.service-strip {
  margin-top: 28px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.service-strip span {
  padding: 10px 14px;
  color: #123552;
  border-radius: 999px;
  background: #f4fbff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

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

.situations-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(6, 43, 79, 0.06);
}

.situations-grid svg {
  width: 30px;
  height: 30px;
  color: var(--yellow-deep);
  stroke-width: 1.75;
}

.situations-grid strong,
.situations-grid span {
  display: block;
}

.situations-grid strong {
  margin-top: 16px;
  color: #123552;
  font-size: 17px;
  line-height: 1.15;
}

.situations-grid span {
  margin-top: 8px;
  color: #425669;
  font-size: 14px;
  line-height: 1.4;
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 56px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(43, 184, 255, 0.2) 0%, rgba(43, 184, 255, 0) 38%),
    linear-gradient(135deg, #062b4f 0%, #041a31 100%);
}

.mission-section .eyebrow,
.mission-section .mission-copy h2 {
  color: var(--white);
}

.mission-text {
  display: grid;
  gap: 18px;
}

.mission-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.58;
}

.sectors-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 58px;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 72%, #ffffff 100%);
}

.sectors-copy h2 {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
}

.sectors-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #425669;
  font-size: 18px;
  line-height: 1.58;
}

.sectors-panel {
  padding: 18px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.88));
  box-shadow: 0 28px 70px rgba(6, 43, 79, 0.12);
}

.sector-photo {
  height: 330px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe4f2;
  border-radius: 8px;
  background: #062b4f;
  box-shadow: 0 20px 48px rgba(6, 43, 79, 0.14);
}

.sector-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sector-local-note {
  margin-top: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.sector-local-note svg {
  width: 34px;
  height: 34px;
  color: var(--yellow-deep);
  stroke-width: 1.75;
}

.sector-local-note strong,
.sector-local-note span {
  display: block;
}

.sector-local-note strong {
  color: #123552;
  font-size: 16px;
  line-height: 1.15;
}

.sector-local-note span {
  margin-top: 5px;
  color: #425669;
  font-size: 14px;
  line-height: 1.35;
}

.sector-area-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sector-area-list span {
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123552;
  border: 1px solid #d6eaf8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(6, 43, 79, 0.04);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sector-area-list span:hover {
  border-color: #9fdcff;
  background: #ffffff;
  transform: translateY(-2px);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  gap: 52px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(43, 184, 255, 0.22) 0%, rgba(43, 184, 255, 0) 36%),
    linear-gradient(135deg, #062b4f 0%, #041a31 100%);
}

.quote-section .eyebrow,
.quote-intro h2 {
  color: var(--white);
}

.quote-intro h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
}

.quote-intro p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.photo-whatsapp-note {
  max-width: 560px;
  margin-top: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-whatsapp-note svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  stroke-width: 1.75;
}

.photo-whatsapp-note span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.quote-contact-card {
  margin-top: 28px;
  padding: 24px 0 0;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
}

.quote-contact-card h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.quote-contact-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  stroke-width: 1.75;
}

.contact-name,
.contact-location {
  margin: 0;
}

.contact-name {
  margin-top: 22px;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-location {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.contact-address {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
}

.contact-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.contact-links a {
  width: fit-content;
  padding: 0;
  display: inline-block;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(43, 184, 255, 0.6);
  border-radius: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.contact-links a:hover {
  color: var(--yellow);
}

.quote-form {
  padding: 28px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label > span {
  color: #123552;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #102f4a;
  border: 1px solid #cfe4f2;
  border-radius: 6px;
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.quote-form textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(43, 184, 255, 0.16);
}

.consent-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--yellow-deep);
}

.consent-line span {
  color: #425669;
  font-size: 13px;
  line-height: 1.4;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.quote-form .button {
  border: 0;
  cursor: pointer;
}

.form-whatsapp {
  color: var(--yellow-deep);
  border: 1px solid #bee7ff;
  background: var(--blue-soft);
}

@media (max-width: 980px) {
  .hero {
    min-height: 720px;
    background-position: 63% center;
  }

  .topbar {
    padding: 16px 5%;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    min-height: calc(720px - 78px);
    padding: 64px 5% 44px;
  }

  .services-section,
  .mission-section,
  .sectors-section,
  .quote-section {
    padding: 64px 5%;
  }

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

  .mission-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sectors-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sector-area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    max-width: 420px;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 700px;
    background-image:
      linear-gradient(90deg, rgba(4, 28, 52, 0.96) 0%, rgba(5, 42, 78, 0.82) 58%, rgba(5, 43, 80, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 20, 39, 0.62) 0%, rgba(0, 20, 39, 0.08) 34%, rgba(0, 22, 43, 0.48) 100%),
      url("assets/hero-nettoie-tout.png");
    background-position: 68% center;
  }

  .topbar {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 7px;
    font-size: 12px;
  }

  .top-call {
    width: 44px;
    min-width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    gap: 0;
  }

  .top-call svg {
    color: var(--white);
    flex: 0 0 20px;
  }

  .hero-content {
    min-height: calc(700px - 74px);
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 56px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .hero-note span {
    display: none;
  }

  .services-section,
  .mission-section,
  .sectors-section,
  .quote-section {
    padding: 52px 5%;
  }

  .section-head {
    text-align: left;
  }

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

  .service-card,
  .service-card-wide,
  .service-card-action {
    grid-column: auto;
    min-height: 0;
    padding: 26px 22px;
  }

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

  .sector-photo {
    height: 260px;
  }

  .quote-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

}
