:root {
  --green-950: #050d2f;
  --green-900: #071b57;
  --green-800: #0b2f83;
  --green-700: #0759bb;
  --green-500: #21a9e8;
  --green-200: #d8ecff;
  --green-100: #eef7ff;
  --cream: #f5f8fd;
  --yellow: #ffd400;
  --yellow-deep: #f3b900;
  --ink: #09183f;
  --muted: #5f6f91;
  --white: #ffffff;
  --border: rgba(7, 27, 87, .13);
  --shadow: 0 24px 70px rgba(5, 22, 72, .16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

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

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--green-900);
}

.brand-mark svg { width: 25px; fill: var(--yellow); }

.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.08rem; line-height: 1.1; letter-spacing: -.02em; }
.brand small { margin-top: 3px; color: var(--muted); font-size: .75rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
}

.main-nav a:not(.btn):hover { color: var(--green-700); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--green-100);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green-800);
  box-shadow: 0 12px 28px rgba(18, 55, 42, .22);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(18, 55, 42, .24);
  color: var(--green-900);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--green-900);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 75% 10%, rgba(244, 201, 93, .18), transparent 23%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -160px;
  top: 160px;
  background: rgba(104, 163, 111, .14);
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  left: -70px;
  top: 40px;
  background: rgba(244, 201, 93, .12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow-light { color: #cce8d2; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.27rem;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #43564d;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}

.trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-700);
}

.hero-panel {
  padding: 18px;
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 6px 16px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: #47a465;
  box-shadow: 0 0 0 5px rgba(71, 164, 101, .12);
}

.panel-visual {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #eff8ef, #fff8df);
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
}

.panel-tags span,
.about-points span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
}

.stats {
  border-block: 1px solid var(--border);
  background: var(--white);
}

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

.stats-grid > div {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
}

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

.stats strong {
  color: var(--green-900);
  font-size: 1.55rem;
  line-height: 1.2;
}

.stats span { color: var(--muted); font-size: .9rem; }

.section { padding: 100px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact { margin-bottom: 34px; }

.section-heading p,
.about-copy p,
.zone-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 97, 73, .28);
  box-shadow: 0 20px 50px rgba(14, 54, 39, .10);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 15px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 1.25rem;
}

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

.service-card a {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: none;
}

.service-card a::after { content: " →"; }

.section-dark {
  background: var(--green-950);
  color: var(--white);
}

.section-dark p { color: #c5d2cc; }

.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 84px;
  align-items: center;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.steps li:last-child { border-bottom: 0; }

.steps li > span {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .08em;
}

.steps strong { display: block; margin-bottom: 3px; font-size: 1.08rem; }
.steps p { margin: 0; }

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 78px;
  align-items: center;
}

.about-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(12,42,32,.05), rgba(12,42,32,.70)),
    radial-gradient(circle at 60% 20%, rgba(244,201,93,.55), transparent 25%),
    linear-gradient(145deg, #a9d4ad, #194936);
  color: var(--white);
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 2rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.about-card strong { display: block; font-size: 1.4rem; }
.about-card span { color: #dce7e1; }

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.zone-section { background: var(--green-100); }

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}

.note {
  padding-left: 16px;
  border-left: 3px solid var(--green-500);
  font-size: .92rem !important;
}

.map-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 55, 42, .10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(45deg, rgba(255,255,255,.4) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.4) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.4) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.4) 75%),
    #dfeee0;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0px;
  background-size: 32px 32px;
}

.map-rings {
  position: relative;
  width: 330px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border: 2px solid rgba(18, 55, 42, .16);
  border-radius: 999px;
}

.ring-one { inset: 34%; }
.ring-two { inset: 20%; }
.ring-three { inset: 5%; }

.map-pin {
  position: relative;
  z-index: 2;
  padding: 13px 17px;
  border-radius: 12px 12px 12px 2px;
  background: var(--green-900);
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18,55,42,.28);
}

.testimonials { background: var(--cream); }

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

blockquote {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(14, 54, 39, .06);
}

blockquote p { font-size: 1.05rem; }
blockquote footer { color: var(--muted); font-size: .84rem; }

.contact-section {
  background: var(--green-900);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.contact-copy p { color: #d1ddd7; }

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

.contact-links a {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
}

.contact-links span { color: #bbcbc3; font-size: .8rem; }
.contact-links strong { font-size: 1.04rem; }

.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 16px;
  font-size: .88rem;
  font-weight: 780;
}

input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(18, 55, 42, .18);
  border-radius: 11px;
  background: #fbfdfb;
  color: var(--ink);
  outline: none;
}

input, select { height: 48px; padding: 0 13px; }
textarea { padding: 13px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(104, 163, 111, .13);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.site-footer {
  padding: 60px 0 24px;
  background: #081d16;
  color: #d9e4de;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 60px;
}

.brand-footer { color: var(--white); margin-bottom: 18px; }
.brand-footer small { color: #aebeb6; }

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--yellow); }

.footer-grid p {
  max-width: 420px;
  color: #aebeb6;
}

.footer-grid strong { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #91a49b;
  font-size: .82rem;
}

.mobile-cta { display: none; }

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

  .hero-grid { gap: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { min-height: 360px; }
  .contact-grid { gap: 38px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }

  .hero { padding: 62px 0 52px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .stats-grid > div:last-child { border-bottom: 0; }

  .section { padding: 76px 0; }
  .services-grid,
  .testimonial-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .service-card { min-height: 260px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { gap: 34px; }
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 72px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 120;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    background: rgba(8,29,22,.92);
    box-shadow: 0 15px 45px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--yellow);
    color: var(--green-950);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:last-child {
    background: var(--white);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   IDENTITÉ VISUELLE COURANT VERT — VERSION BLEU / JAUNE
   ========================================================= */

body {
  background:
    linear-gradient(180deg, rgba(233, 245, 255, .34), transparent 440px),
    var(--white);
}

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(7, 27, 87, .12);
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 49px;
  height: 49px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 212, 0, .92);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(5, 22, 72, .18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: block;
  color: #0c2b78;
  font-family: "Arial Black", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.03rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name > span {
  color: var(--yellow-deep);
  text-shadow: 0 1px 0 #fff;
}

.brand small {
  max-width: 270px;
  color: #5f6d8e;
  font-size: .67rem;
  letter-spacing: .01em;
}

.main-nav a:not(.btn):hover {
  color: var(--green-700);
}

.menu-toggle {
  background: var(--green-100);
}

.btn {
  background: linear-gradient(135deg, var(--yellow), #ffbd00);
  color: #071542;
  box-shadow: 0 8px 24px rgba(255, 196, 0, .18);
}

.btn:hover {
  background: linear-gradient(135deg, #ffe34a, var(--yellow));
  color: #071542;
  box-shadow: 0 14px 30px rgba(255, 190, 0, .28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 86px 0 76px;
  background:
    linear-gradient(113deg, rgba(3, 11, 46, .98) 0%, rgba(7, 27, 87, .96) 48%, rgba(6, 69, 156, .90) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: -100px;
  width: 690px;
  height: 155px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, .82), transparent);
  filter: blur(1px);
  opacity: .7;
}

.hero::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: -150px;
  width: 520px;
  height: 260px;
  transform: rotate(-21deg);
  background: rgba(24, 159, 232, .14);
  filter: blur(18px);
}

.hero-glow-one {
  background: rgba(31, 164, 232, .20);
}

.hero-glow-two {
  background: rgba(255, 212, 0, .18);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  color: var(--white);
  text-shadow: 0 8px 34px rgba(0, 0, 0, .18);
}

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

.hero-lead {
  color: #dce9ff;
}

.trust-list {
  color: #cfddf6;
}

.trust-list li::before {
  color: var(--yellow);
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .30);
}

.panel-top {
  color: #e4edff;
}

.status-dot::before {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 212, 0, .18);
}

.panel-photo {
  position: relative;
  min-height: 430px;
  background: #071b57;
}

.panel-photo > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 10, 40, .74) 100%),
    linear-gradient(90deg, rgba(4, 17, 66, .15), transparent 50%);
}

.panel-branding {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.panel-branding > img {
  width: 64px;
  height: 64px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.panel-branding .brand-name {
  color: var(--white);
  font-size: 1.42rem;
  text-shadow: 0 3px 15px rgba(0, 0, 0, .4);
}

.panel-branding small {
  display: block;
  margin-top: 4px;
  color: #e9f1ff;
  font-size: .75rem;
  font-weight: 700;
}

.panel-tags span,
.about-points span {
  background: rgba(255, 212, 0, .14);
  color: #fff0a8;
  border: 1px solid rgba(255, 212, 0, .25);
}

.stats {
  border-block: 0;
  background: linear-gradient(90deg, #071b57, #0a3287);
  color: var(--white);
}

.stats-grid > div {
  border-right-color: rgba(255, 255, 255, .15);
}

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

.stats span {
  color: #d6e2f8;
}

.section-heading .eyebrow,
.about-copy .eyebrow,
.zone-section .eyebrow {
  color: var(--green-700);
}

.service-card {
  overflow: hidden;
  border-top: 4px solid transparent;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 18px;
  right: -18px;
  top: 22px;
  transform: rotate(-35deg);
  background: rgba(255, 212, 0, .14);
}

.service-card:hover {
  border-top-color: var(--yellow);
}

.service-icon {
  background: linear-gradient(145deg, #e6f5ff, #d5e8ff);
  color: var(--green-800);
  box-shadow: inset 0 0 0 1px rgba(7, 56, 151, .08);
}

.service-card a {
  color: var(--green-700);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #030a29 0%, #071b57 56%, #0758ad 155%);
}

.section-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 110px;
  width: 520px;
  height: 38px;
  transform: rotate(-28deg);
  background: var(--yellow);
  opacity: .15;
}

.steps li > span {
  color: var(--yellow);
}

.btn-light {
  background: var(--yellow);
  color: #071542;
}

.about-photo-card {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #071b57;
}

.about-photo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.about-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 30, .05), rgba(3, 10, 38, .87)),
    linear-gradient(90deg, rgba(2, 12, 52, .20), transparent 58%);
}

.about-photo-caption {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.about-photo-caption > img {
  width: 66px;
  height: 66px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
}

.about-photo-caption strong {
  display: block;
  color: var(--white);
  font-size: 1.36rem;
}

.about-photo-caption span {
  color: #d8e5fb;
}

.about-points span {
  background: var(--green-100);
  color: var(--green-800);
  border-color: rgba(8, 66, 156, .12);
}

.zone-section {
  background:
    linear-gradient(180deg, #edf7ff 0%, #dceeff 100%);
}

.map-card {
  border-color: rgba(8, 52, 134, .13);
  background:
    linear-gradient(45deg, rgba(255,255,255,.42) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.42) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.42) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.42) 75%),
    #cbe7ff;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0;
  background-size: 32px 32px;
}

.ring {
  border-color: rgba(7, 49, 133, .20);
}

.map-pin {
  background: var(--yellow);
  color: #071542;
  box-shadow: 0 14px 30px rgba(5, 34, 107, .24);
}

.note {
  border-left-color: var(--yellow-deep);
}

.testimonials {
  background: #f5f8fd;
}

blockquote {
  border-top: 4px solid var(--yellow);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 164, 232, .20), transparent 26%),
    linear-gradient(125deg, #030a29 0%, #071b57 62%, #075bb7 155%);
}

.contact-section::after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: 60px;
  width: 430px;
  height: 35px;
  transform: rotate(-24deg);
  background: var(--yellow);
  opacity: .18;
}

.contact-grid {
  position: relative;
  z-index: 2;
}

.contact-links a {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .05);
}

.contact-form {
  border: 1px solid rgba(255, 212, 0, .24);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #208fd5;
  box-shadow: 0 0 0 4px rgba(33, 169, 232, .14);
}

.site-footer {
  background: #02071e;
}

.brand-footer .brand-name {
  color: var(--white);
}

.mobile-cta {
  background: rgba(3, 10, 41, .94);
}

.mobile-cta a {
  background: var(--yellow);
  color: #071542;
}

@media (max-width: 760px) {
  .brand small {
    max-width: 190px;
    font-size: .58rem;
  }

  .hero {
    min-height: auto;
  }

  .panel-photo,
  .panel-photo > img {
    min-height: 320px;
  }

  .panel-branding {
    left: 15px;
    right: 15px;
    bottom: 14px;
  }

  .panel-branding > img {
    width: 52px;
    height: 52px;
  }

  .panel-branding .brand-name {
    font-size: 1.05rem;
  }

  .panel-branding small {
    font-size: .62rem;
  }
}


/* =========================================================
   VERSION 3 — CONTENU FINALISÉ
   ========================================================= */

.realizations-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

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

.gallery-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 45px rgba(5, 22, 72, .08);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 4;
}

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

.gallery-card.tall img {
  height: 520px;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
}

.real-reviews .stars {
  margin-bottom: 10px;
  color: var(--yellow-deep);
  font-size: 1.15rem;
  letter-spacing: .08em;
}

.real-reviews blockquote {
  border-top: 4px solid var(--yellow);
}

.contact-links a:first-child strong {
  line-height: 1.35;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 1;
  }

  .gallery-card.tall {
    grid-row: auto;
  }

  .gallery-card img,
  .gallery-card.tall img {
    height: 320px;
  }
}

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

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 1;
  }
}


/* Correctif carte de zone — affichage local, sans chargement externe */
.map-card.map-illustration {
  position: relative;
  min-height: 430px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 52, 134, .15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eef8ff, #cce8ff);
  box-shadow: 0 20px 55px rgba(5, 34, 107, .10);
}

.map-illustration svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 430px;
}

.map-city circle {
  fill: #0b5eb4;
  stroke: #ffffff;
  stroke-width: 3;
}

.map-city text {
  fill: #092255;
  font-size: 17px;
  font-weight: 780;
}

.map-city-small text {
  font-size: 15px;
}

.map-external-link {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 12px;
  background: rgba(255, 255, 255, .91);
  color: #071b57;
  box-shadow: 0 10px 28px rgba(5, 34, 107, .13);
  font-size: .82rem;
  font-weight: 820;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.map-external-link:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .map-card.map-illustration {
    min-height: 390px;
  }

  .map-illustration svg {
    min-height: 390px;
  }

  .map-city text {
    font-size: 19px;
  }

  .map-city-small text {
    font-size: 17px;
  }

  .map-external-link {
    left: 14px;
    bottom: 14px;
  }
}
