/* Pages services — Material Expressive */

/* ── En-tête ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 92px) 0 92px;
  background: #f5f4ff;
}
.page-hero::after { content: ''; position: absolute; width: 520px; height: 280px; right: -170px; bottom: -170px; border-radius: 50%; background: #d7f3f6; transform: rotate(-12deg); }
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(46px, 7vw, 90px);
  align-items: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--on-surface-var);
  margin-bottom: 24px;
}
.breadcrumb a { transition: color var(--dur-1); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--outline-var); }
.breadcrumb .cur { color: var(--primary); font-weight: 600; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--display-md);
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--on-surface);
  max-width: 560px;
  margin-bottom: 16px;
}
.page-hero .page-intro {
  font-size: var(--body-lg);
  line-height: 1.75;
  color: var(--on-surface-var);
  max-width: 500px;
}

.page-hero-photo {
  border-radius: 56px 18px 56px 56px;
  overflow: hidden;
  box-shadow: 18px 18px 0 #d9e5ff;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(.9);
}

/* ── Offres ── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 56px;
}
.offer-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--outline-var);
  border-radius: 0;
  padding: 28px 0 0;
}
.offer-card:nth-child(2), .offer-card:nth-child(3), .offer-card:nth-child(4) { background: transparent; border-radius: 0; }
.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.offer-icon svg { width: 21px; height: 21px; }
.offer-card h3 {
  font-family: var(--font-display);
  font-size: var(--title-lg);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.offer-card > p {
  font-size: var(--body-md);
  line-height: 1.7;
  color: var(--on-surface-var);
  margin-bottom: 16px;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: var(--body-md);
  color: var(--on-surface);
}
.offer-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transform: translateY(-2px);
}

/* ── Méthode ── */
.steps-section { background: #f7f6ff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 12px;
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px 16px 16px 5px;
  background: #dde7ff;
  font-size: var(--label-md);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 10px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: var(--title-md);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 6px;
}
.step p {
  font-size: var(--body-md);
  line-height: 1.7;
  color: var(--on-surface-var);
}

/* ── Bande CTA ── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #12314f, #23567d);
  border-radius: 48px 18px 48px 48px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.cta-band::after { content: ''; position: absolute; width: 220px; height: 220px; right: 18%; top: -150px; border-radius: 50%; background: rgba(84,220,230,.18); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--headline-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 8px;
}
.cta-band p {
  font-size: var(--body-md);
  color: rgba(255,255,255,.65);
  max-width: 420px;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover {
  background: #1FB558;
  color: #fff;
}
.cta-band .link-arrow { color: #fff; }
.cta-band .link-arrow:hover { color: rgba(255,255,255,.85); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-photo { max-width: 540px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .offers-grid { grid-template-columns: 1fr; gap: 18px; }
  .cta-band { padding: 40px 28px; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}
