:root {
  --navy: #0d1238;
  --navy-2: #171d4d;
  --blue: #1c4ddb;
  --blue-dark: #163eae;
  --mint: #94ffcc;
  --mint-ink: #075b42;
  --ink: #141a32;
  --muted: #667085;
  --surface: #f5f7fb;
  --white: #ffffff;
  --line: #e2e7f0;
  --shadow: 0 20px 50px rgba(13, 18, 56, 0.1);
  --shadow-soft: 0 10px 30px rgba(13, 18, 56, 0.07);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(28, 77, 219, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--surface);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading > div {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
  content: "";
}

.section--navy .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0 0 18px;
}

.lead {
  max-width: 760px;
  color: #d7dcf2;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn--primary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(28, 77, 219, 0.28);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--mint {
  background: var(--mint);
  color: var(--navy);
}

.btn--mint:hover {
  box-shadow: 0 12px 28px rgba(148, 255, 204, 0.2);
}

.btn--outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.kicker {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(148, 255, 204, 0.18);
  color: var(--mint-ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  color: var(--navy);
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.045em;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 27px;
  color: #39415d;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: #168659;
  content: "✓";
  font-weight: 900;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 18, 56, 0.97);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 190px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 750;
}

.nav > a:not(.btn) {
  opacity: 0.86;
}

.nav > a:not(.btn):hover,
.nav > a[aria-current="page"] {
  color: var(--mint);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  overflow: hidden;
  padding: 88px 0 94px;
  background:
    radial-gradient(circle at 80% 18%, rgba(148, 255, 204, 0.14), transparent 30%),
    radial-gradient(circle at 65% 75%, rgba(28, 77, 219, 0.28), transparent 35%),
    var(--navy);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: center;
  gap: 54px;
}

.hero h1,
.page-hero h1,
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c8cee9;
  font-size: 0.92rem;
}

.hero-price {
  padding: 30px;
  color: var(--ink);
}

.hero-price .price {
  display: block;
  margin-top: 18px;
}

.hero-price .price-caption {
  display: block;
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pack-highlight {
  margin: 24px 0 18px;
  padding: 20px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
}

.pack-highlight span,
.pack-highlight strong {
  display: block;
}

.pack-highlight span {
  color: #b9c1df;
  font-size: 0.9rem;
}

.pack-highlight strong {
  margin-top: 3px;
  color: var(--mint);
  font-size: 1.7rem;
}

.hero-price p {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-grid div:last-child {
  border-right: 0;
}

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

.trust-grid strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.services-grid,
.steps,
.pack-grid,
.list-grid {
  margin-top: 38px;
}

.service-card {
  padding: 26px;
}

.service-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 16px;
  background: var(--surface);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step {
  padding: 8px 18px 8px 0;
}

.step > span {
  display: block;
  color: #dce3fa;
  font-size: 2.8rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.step p {
  color: var(--muted);
}

.price-card,
.pack-card {
  padding: 30px;
}

.price-card .price {
  margin: 16px 0 10px;
}

.price-card p,
.pack-card p {
  color: var(--muted);
}

.price-card--featured,
.pack-card--featured {
  border-color: rgba(148, 255, 204, 0.9);
  background: linear-gradient(145deg, #ffffff 0%, #f1fff8 100%);
}

.pack-card--featured {
  position: relative;
}

.pack-card--featured::after {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--mint);
  content: "Le plus choisi";
  font-size: 0.72rem;
  font-weight: 850;
}

.pack-hours {
  margin-top: 13px;
  color: var(--navy);
  font-size: 2.55rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.pack-price {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 900;
}

.pro-grid,
.zone-grid,
.about-grid,
.contact-grid,
.page-hero-grid {
  display: grid;
  align-items: center;
  gap: 46px;
}

.pro-grid,
.page-hero-grid {
  grid-template-columns: 1.22fr 0.78fr;
}

.zone-grid {
  grid-template-columns: 1.18fr 0.82fr;
}

.about-grid {
  grid-template-columns: 1.28fr 0.72fr;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1.24fr 0.76fr;
  align-items: start;
  gap: 32px;
}

.pro-copy .section-lead {
  margin-bottom: 28px;
  color: #c3cae5;
}

.pro-rate,
.zone-card,
.values,
.contact-side,
.notice-card {
  padding: 30px;
}

.pro-rate {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.pro-rate span {
  color: #aeb7d8;
}

.pro-rate strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2rem;
}

.pro-rate strong:last-child {
  color: var(--mint);
}

.zone-card strong {
  color: var(--navy);
  font-size: 1.4rem;
}

.zone-card p {
  margin-top: 10px;
  color: var(--muted);
}

.zone-card a {
  color: var(--blue);
  font-weight: 850;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
}

.cta-box h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-box p {
  margin: 0;
  color: #dfe5ff;
}

.cta-box .eyebrow {
  color: var(--mint);
}

.page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 88% 25%, rgba(148, 255, 204, 0.1), transparent 27%),
    var(--navy);
}

.page-hero .lead {
  margin-bottom: 0;
}

.rate-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
}

.rate-card span,
.rate-card strong {
  display: block;
}

.rate-card span {
  color: #b9c1df;
}

.rate-card strong {
  margin: 4px 0 20px;
  color: var(--white);
  font-size: 2rem;
}

.rate-card strong.mint {
  color: var(--mint);
}

.rate-card hr {
  margin: 0 0 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rate-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 38px;
}

.rate-line > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.rate-line > div.accent {
  border-color: var(--navy);
  background: var(--navy);
}

.rate-line strong,
.rate-line span {
  display: block;
}

.rate-line strong {
  color: var(--navy);
  font-size: 2rem;
}

.rate-line span {
  color: var(--muted);
}

.rate-line .accent strong {
  color: var(--mint);
}

.rate-line .accent span {
  color: #c7cde7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th {
  background: #f7f9fd;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:last-child {
  color: var(--blue);
  font-weight: 900;
}

.info-box {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid #dfe6fb;
  border-radius: 16px;
  background: #f5f8ff;
}

.info-box p {
  margin: 4px 0 0;
  color: var(--muted);
}

.service-line {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 750;
}

.boundary-card {
  max-width: 900px;
  padding: 34px;
}

.boundary-card p {
  color: var(--muted);
}

.contact-form {
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d6dcea;
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 77, 219, 0.1);
}

.form-help {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 750;
}

.form-status.is-success {
  display: block;
  border: 1px solid #8ce5b8;
  background: #effcf5;
  color: #0f6948;
}

.form-status.is-error {
  display: block;
  border: 1px solid #f0b2ae;
  background: #fff5f4;
  color: #8d2921;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-side {
  margin-bottom: 18px;
}

.contact-side p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-side a,
.legal a {
  color: var(--blue);
  font-weight: 800;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 46px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found .error-code {
  color: var(--blue);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.site-footer {
  padding: 56px 0 24px;
  background: #090d2d;
  color: #d8ddf2;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(12, 65, 36, 0.28);
  color: #092b19;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(12, 65, 36, 0.34);
}

.whatsapp-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #11833f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.btn--whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #092b19;
  box-shadow: 0 12px 28px rgba(12, 65, 36, 0.2);
}

.btn--whatsapp:hover {
  background: #20bd5b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #c7cde5;
}

.site-footer a:hover {
  color: var(--mint);
}

.site-footer p {
  max-width: 460px;
  color: #adb5d4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #8f99bd;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 68px 0;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 90px);
    overflow: auto;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: var(--navy);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    flex-direction: column;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid,
  .pro-grid,
  .zone-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .rate-line {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-points {
    gap: 7px;
    flex-direction: column;
  }

  .cta-box {
    align-items: stretch;
    padding: 30px 24px;
    flex-direction: column;
  }

  .pack-card--featured::after {
    position: static;
    display: inline-block;
    margin: 14px 0 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 9px;
  }

  .whatsapp-float .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
