/* ============================================
   TALISMA — Stylesheet
   Palette : bleu nuit → vert frais (logo)
   Inspiration : lac d'Annecy, fraîcheur alpine
============================================ */

:root {
  /* Couleurs principales (issues du logo) */
  --blue-deep: #0d3b66;
  --blue-mid: #1a5da3;
  --blue-light: #4f8fc7;
  --green-mid: #4ea34c;
  --green-fresh: #7BBF6A;
  --green-light: #a8d99a;

  /* Neutres */
  --ink: #0a1a2f;
  --ink-soft: #3b4a5e;
  --ink-light: #6b7a8e;
  --paper: #fafbfc;
  --cream: #f5f7f4;
  --white: #ffffff;
  --line: #e5ebe8;

  /* Dégradé signature */
  --gradient-main: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 45%, var(--green-mid) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(13,59,102,0.05) 0%, rgba(123,191,106,0.08) 100%);
  --gradient-text: linear-gradient(120deg, var(--blue-deep) 0%, var(--green-mid) 100%);

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacements */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.06);
  --shadow-md: 0 8px 30px rgba(13, 59, 102, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 59, 102, 0.12);
}

/* ============================================
   RESET & BASE
============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHIE
============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }

h1 em, h2 em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.6;
}
.lead-small {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--green-fresh);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(123, 191, 106, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(123, 191, 106, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(123, 191, 106, 0); }
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--green-fresh);
}
.section-tag--light {
  color: var(--green-light);
  border-bottom-color: var(--green-light);
}

.section-head { margin-bottom: 60px; max-width: 700px; }
.section-head--centered { margin: 0 auto 60px; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.1rem; }

/* ============================================
   BOUTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 20px rgba(13, 59, 102, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 59, 102, 0.35);
}
.btn-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue-mid);
  color: var(--blue-deep);
}
.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
  margin-top: 24px;
}
.btn-outline:hover {
  background: var(--blue-deep);
  color: white;
}
.btn-full { width: 100%; }

/* ============================================
   HEADER
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 251, 252, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 48px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-desktop a:not(.nav-cta):hover { color: var(--blue-deep); }
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  background: var(--ink);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gradient-main); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  background: white;
  border-top: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border: none; color: var(--blue-deep); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb--blue {
  width: 600px; height: 600px;
  background: var(--blue-mid);
  top: -200px; left: -200px;
  opacity: 0.18;
}
.hero-orb--green {
  width: 500px; height: 500px;
  background: var(--green-fresh);
  bottom: -150px; right: -100px;
  opacity: 0.2;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(13,59,102,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content .lead { margin-bottom: 36px; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  height: 500px;
}
.hero-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 80%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(13, 59, 102, 0.15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   MARQUEE
============================================ */
.marquee {
  background: var(--ink);
  color: white;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
}
.marquee-track span:nth-child(even) {
  color: var(--green-fresh);
  font-style: normal;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
============================================ */
.services {
  padding: 120px 0;
  background: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-fresh);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  color: white;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 12px; }
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  font-size: 0.78rem;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--ink-soft);
  border-radius: 999px;
  font-weight: 500;
}
.service-card--feature {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
}
.service-card--feature h3 { color: white; }
.service-card--feature p { color: rgba(255,255,255,0.85); }
.service-card--feature .service-icon {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.service-card--feature .service-tags li {
  background: rgba(255,255,255,0.18);
  color: white;
}
.service-card--feature::before { display: none; }
.service-card--feature:hover { transform: translateY(-6px); }

.services-note {
  text-align: center;
  margin-top: 48px;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.services-note a {
  color: var(--blue-deep);
  font-weight: 600;
  border-bottom: 2px solid var(--green-fresh);
  padding-bottom: 2px;
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-fresh) 0%, transparent 70%);
  opacity: 0.15;
}
.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-quote {
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border-left: 4px solid var(--green-fresh);
}
.about-quote svg {
  color: var(--green-fresh);
  margin-bottom: 16px;
  opacity: 0.4;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.about-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue-deep);
}
.about-stats span {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--ink-soft); margin-bottom: 16px; }

/* ============================================
   ZONES
============================================ */
.zones {
  padding: 120px 0;
  background: var(--paper);
}
.zones-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.zones-map {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  z-index: 1;
}
.zones-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #eef3f1;
  font-family: var(--font-body);
}
/* Marqueur custom Talisma */
.talisma-marker {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.talisma-marker::after {
  content: '';
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
}
.talisma-marker--main {
  width: 42px;
  height: 42px;
  background: var(--green-mid);
  z-index: 100;
}
.talisma-marker--main::after { width: 14px; height: 14px; }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}
.leaflet-popup-content {
  font-weight: 600;
  color: var(--blue-deep);
  margin: 10px 14px;
}

.zones-list h3 { margin-bottom: 24px; }
.zones-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.zones-list li {
  padding: 10px 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.zones-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-fresh);
  border-radius: 50%;
  flex-shrink: 0;
}
.zones-list li:hover {
  border-color: var(--green-fresh);
  transform: translateX(4px);
}
.zones-note {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-style: italic;
}

/* ============================================
   WHY
============================================ */
.why {
  padding: 120px 0;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--blue-mid) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
.why .section-head h2 { color: white; }
.why .section-tag { color: var(--green-fresh); border-color: var(--green-fresh); }
.why .section-head p { color: rgba(255,255,255,0.7); }

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: all 0.3s;
}
.why-item:hover {
  border-top-color: var(--green-fresh);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--green-fresh);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.why-item h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.why-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  padding: 120px 0;
  background: var(--gradient-main);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 30px 30px;
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: white; margin-bottom: 20px; }
.contact-info h2 em { -webkit-text-fill-color: var(--green-light); background: none; }
.contact-info .lead-small { color: rgba(255,255,255,0.85); }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.contact-method:not(.contact-method--static):hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(4px);
  border-color: var(--green-light);
}
.cm-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--green-light);
}
.cm-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-method strong {
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.contact-form h3 {
  margin-bottom: 28px;
  font-size: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: all 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 93, 163, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--ink-light);
  text-align: center;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.6; }
.footer-logo {
  height: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--green-fresh); }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   MODAL
============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 47, 0.7);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--line); }
.modal-content h2 {
  margin-bottom: 24px;
  font-size: 1.8rem;
}
.modal-content h3 {
  margin: 24px 0 12px;
  font-size: 1.1rem;
  color: var(--blue-deep);
}
.modal-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS AU SCROLL
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
============================================ */
@media (max-width: 968px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 320px; order: -1; }
  .hero-logo { max-width: 240px; }

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

  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .zones { padding: 80px 0; }
  .zones-grid { grid-template-columns: 1fr; gap: 40px; }
  .zones-map { max-width: 500px; margin: 0 auto; }

  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .contact { padding: 80px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE
============================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .logo { height: 38px; }

  .hero { padding: 90px 0 50px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-trust { gap: 24px; }
  .trust-item strong { font-size: 1.5rem; }

  .hero-visual { height: 260px; }
  .hero-logo { max-width: 180px; }

  .btn { padding: 12px 22px; font-size: 0.92rem; }
  .marquee-track { font-size: 1.1rem; gap: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  .about-quote { padding: 28px; }
  .about-quote p { font-size: 1.15rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); padding: 16px; }
  .about-stats strong { font-size: 1.3rem; }

  .zones-list ul { grid-template-columns: 1fr; }

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

  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer { padding: 60px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .modal-content { padding: 32px 24px; }
}
