/* ============================================================
   /achat-locatif-expatrie/ — Page service Achat Locatif
   Expat' Immo — design system teal #229FA8 / navy #1a2b4a
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────────── */
.achat-hero {
  background: linear-gradient(135deg, #1a2b4a 0%, #0f1e36 100%);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.achat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,159,168,.18) 0%, transparent 70%);
  pointer-events: none;
}
.achat-hero .section-label { color: #5cdee6; }
.achat-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; margin: .5rem 0 1.2rem; }
.achat-hero h1 span { color: #5cdee6; }
.achat-hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.achat-hero-cta {
  display: inline-block;
  background: #229FA8;
  color: #fff;
  font-weight: 600;
  padding: .9rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.achat-hero-cta:hover { background: #1a7f87; transform: translateY(-2px); }

/* ── SECTION INTRO ──────────────────────────────────────────── */
.achat-intro {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px 60px;
}
.achat-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.achat-intro-text h2 { color: #1a2b4a; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 1rem; }
.achat-intro-text p { color: #444; line-height: 1.75; margin-bottom: 1rem; }
.achat-intro-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  aspect-ratio: 4/3;
}
.achat-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .achat-intro-grid { grid-template-columns: 1fr; }
  .achat-intro-img { order: -1; }
}

/* ── AVANTAGES ──────────────────────────────────────────────── */
.achat-avantages {
  background: #f7f9fc;
  padding: 72px 24px;
}
.achat-avantages-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.achat-avantages-inner h2 { color: #1a2b4a; font-size: clamp(1.4rem,2.5vw,1.9rem); text-align:center; margin-bottom: .5rem; }
.achat-avantages-inner > p { text-align:center; color:#555; margin-bottom: 2.5rem; }
.achat-av-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.achat-av-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 3px solid #229FA8;
  transition: transform .2s, box-shadow .2s;
}
.achat-av-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(34,159,168,.15); }
.achat-av-icon {
  width: 48px; height: 48px;
  background: rgba(34,159,168,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.achat-av-card h3 { color: #1a2b4a; font-size: 1.05rem; margin-bottom: .5rem; }
.achat-av-card p { color: #555; font-size: .93rem; line-height: 1.65; }
@media (max-width: 800px) { .achat-av-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .achat-av-grid { grid-template-columns: 1fr; } }

/* ── PROCESSUS ──────────────────────────────────────────────── */
.achat-processus {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}
.achat-processus h2 { color: #1a2b4a; font-size: clamp(1.4rem,2.5vw,1.9rem); text-align: center; margin-bottom: 2.5rem; }
.achat-steps { display: flex; flex-direction: column; gap: 0; }
.achat-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}
.achat-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #229FA8, rgba(34,159,168,.1));
}
.achat-step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #229FA8, #1a7f87);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(34,159,168,.3);
}
.achat-step-body h3 { color: #1a2b4a; font-size: 1.05rem; margin: .8rem 0 .4rem; }
.achat-step-body p { color: #555; font-size: .93rem; line-height: 1.65; }

/* ── VILLES ─────────────────────────────────────────────────── */
.achat-villes {
  background: #f7f9fc;
  padding: 64px 24px;
  text-align: center;
}
.achat-villes h2 { color: #1a2b4a; font-size: clamp(1.3rem,2.5vw,1.8rem); margin-bottom: .5rem; }
.achat-villes > p { color: #555; margin-bottom: 2rem; }
.achat-villes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.achat-ville-pill {
  background: #fff;
  border: 1.5px solid #229FA8;
  color: #1a2b4a;
  font-weight: 600;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.achat-ville-pill:hover { background: #229FA8; color: #fff; }

/* ── STATS ──────────────────────────────────────────────────── */
.achat-stats {
  background: linear-gradient(135deg, #1a2b4a 0%, #0f1e36 100%);
  padding: 60px 24px;
}
.achat-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.achat-stat-val { font-size: 2rem; font-weight: 700; color: #5cdee6; display: block; }
.achat-stat-label { color: rgba(255,255,255,.75); font-size: .88rem; margin-top: .3rem; display: block; }
@media (max-width: 600px) { .achat-stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ── RÉALISATIONS ───────────────────────────────────────────── */
.achat-reals {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
}
.achat-reals h2 { color: #1a2b4a; font-size: clamp(1.4rem,2.5vw,1.9rem); text-align: center; margin-bottom: .5rem; }
.achat-reals > p { text-align: center; color: #555; margin-bottom: 2rem; }
.achat-reals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
}
.achat-real-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.09);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}
.achat-real-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.achat-real-img { height: 180px; background: #e5e9f0 center/cover no-repeat; }
.achat-real-body { padding: 16px; }
.achat-real-city { font-size: .78rem; font-weight: 600; color: #229FA8; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.achat-real-title { color: #1a2b4a; font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.achat-real-meta { display: flex; gap: 8px; font-size: .82rem; color: #666; flex-wrap: wrap; }
.achat-real-meta span { background: #f0f4f8; padding: .2rem .6rem; border-radius: 4px; }
.achat-reals-cta { text-align: center; }
.achat-reals-cta a {
  display: inline-block;
  border: 2px solid #229FA8;
  color: #229FA8;
  font-weight: 600;
  padding: .8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.achat-reals-cta a:hover { background: #229FA8; color: #fff; }
@media (max-width: 700px) { .achat-reals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .achat-reals-grid { grid-template-columns: 1fr; } }

/* ── CTA FINAL ──────────────────────────────────────────────── */
.achat-cta-final {
  background: linear-gradient(135deg, #229FA8 0%, #1a7f87 100%);
  padding: 72px 24px;
  text-align: center;
}
.achat-cta-final h2 { color: #fff; font-size: clamp(1.4rem,2.5vw,1.9rem); margin-bottom: .8rem; }
.achat-cta-final p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.achat-cta-final a {
  display: inline-block;
  background: #fff;
  color: #229FA8;
  font-weight: 700;
  padding: .9rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.achat-cta-final a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
