:root {
  --navy: #0d2033;
  --gold: #b88a3d;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --border: #e6e0d6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 20px; }
.brand img { width: 138px; display: block; }
nav { display: flex; gap: 22px; align-items: center; font-weight: 700; color: var(--navy); }
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(184,138,61,0.18);
}
.btn.secondary { background: var(--navy); }
.btn.small { padding: 10px 16px; font-size: 14px; }
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162d46 55%, #203a56 100%);
  color: var(--white);
  padding: 76px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 900; font-size: 13px; }
h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.02; margin: 0 0 20px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.12; margin: 0 0 18px; color: var(--navy); }
h3 { color: var(--navy); margin-top: 0; font-size: 22px; }
.lead { font-size: 21px; color: #e7edf3; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card { background: var(--white); color: var(--navy); border-radius: 30px; padding: 32px; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.hero-card img { width: 100%; max-width: 360px; }
.hero-card p { font-weight: 900; color: var(--gold); }
.section { padding: 80px 0; }
.section.alt { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.card { border: 1px solid var(--border); border-radius: 24px; padding: 28px; background: var(--white); box-shadow: 0 14px 35px rgba(13,32,51,0.06); }
.note { margin-top: 26px; padding: 18px 22px; background: var(--cream); border-left: 4px solid var(--gold); border-radius: 14px; color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.checklist { background: var(--white); border-radius: 24px; padding: 28px; box-shadow: 0 14px 35px rgba(13,32,51,0.06); font-weight: 700; }
.narrow { max-width: 820px; }
.narrow p { font-size: 20px; color: var(--muted); }
.contact { background: var(--navy); }
.contact-box { background: var(--white); border-radius: 32px; padding: 44px; text-align: center; }
.contact-box p { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--muted); }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.contact-actions .btn { min-width: 220px; text-align: center; }
.fineprint { font-size: 13px; }
footer { background: #081522; color: #c8d2dc; padding: 28px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 850px) {
  nav a:not(.btn) { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .contact-box { padding: 30px 20px; }
}


.contact-intro { text-align: center; }
@media (max-width: 850px) {
  .contact-actions .btn { width: 100%; text-align: center; }
}

.service-zone {
  padding: 46px 0 28px;
  background: var(--white);
}
.service-zone h2 {
  margin-bottom: 10px;
}
.service-zone p:last-child {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .service-zone { padding: 34px 0 18px; }
}

/* Update: homepage En savoir plus link and clearer service-page arrows */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 2px;
  opacity: 0.96;
}
.learn-more-link:hover { opacity: 1; }
.page-arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  font-weight: 900;
  transition: transform 0.18s ease;
}
.service-page-card:hover .page-arrow { transform: translateX(4px); }
.service-page-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
@media (max-width: 850px) {
  .learn-more-link { width: 100%; justify-content: center; }
}
