/* ==========================================================================
   PRO BAT — Entreprise Générale du Bâtiment
   Feuille de style principale
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette extraite du logo PRO BAT */
  --navy: #0b4f93;
  --navy-dark: #073b70;
  --navy-darker: #052747;
  --steel: #aeb4bb;
  --steel-light: #eef1f4;
  --accent: #f5a623;
  --accent-dark: #d98c0f;
  --ink: #17242f;
  --ink-soft: #4a5762;
  --white: #ffffff;
  --success: #2e9e5b;
  --star: #f5a623;

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 79, 147, 0.12);
  --shadow-sm: 0 4px 14px rgba(11, 79, 147, 0.10);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-darker);
  line-height: 1.2;
  font-weight: 700;
}

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

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--steel-light); }
.section--navy {
  background: linear-gradient(135deg, var(--navy-darker), var(--navy));
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(245, 166, 35, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--accent); background: rgba(245,166,35,0.18); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section--navy .section-head p { color: #d7e4f2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--navy-darker); box-shadow: 0 8px 20px rgba(245,166,35,0.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-darker); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-darker);
  color: #cfe0f2;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #cfe0f2; }
.topbar a:hover { color: var(--accent); }
.topbar-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(11,79,147,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-darker); border-radius: 3px; }

.nav-call-mobile {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(5,39,71,0.92), rgba(11,79,147,0.85)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 26px);
  color: var(--white);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: 1.15rem; color: #dce8f5; margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; }
.hero-trust svg { flex-shrink: 0; color: var(--accent); }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--steel), #7f8b96);
}
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--accent);
  color: var(--navy-darker);
  padding: 16px 22px;
  border-radius: var(--radius) 0 var(--radius) 0;
  font-family: var(--font-head);
  line-height: 1.15;
}
.hero-badge strong { display: block; font-size: 1.7rem; }
.hero-badge span { font-size: 0.78rem; font-weight: 600; }

/* ---------- Illustration tile (brand placeholder until real photos/videos are added) ---------- */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(245,166,35,0.35), transparent 55%),
    linear-gradient(150deg, var(--navy-darker), var(--navy) 70%);
  color: #fff;
  text-align: center;
  padding: 24px;
  border-radius: inherit;
}
.media-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.media-placeholder .ph-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.media-placeholder strong {
  position: relative; z-index: 1;
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.media-placeholder small {
  position: relative; z-index: 1;
  font-size: 0.76rem;
  max-width: 230px;
  color: #cfe0f2;
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  text-align: center;
}
.stat-card strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--navy); }
.stat-card span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Cards grid (services) ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf1f4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card ul { margin-top: 14px; }
.card ul li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 8px; }
.card ul li svg { flex-shrink: 0; color: var(--success); margin-top: 3px; }
.card .btn { margin-top: 18px; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #eaeef1;
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-row-media { order: 2; }
.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.service-row-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-row > div > p { color: var(--ink-soft); margin-bottom: 18px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.tag {
  background: var(--steel-light);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }
.section--navy .step p { color: #cfe0f2; }

/* ---------- Gallery (réalisations) ---------- */
.gallery-filters { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--steel-light);
  background: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(5,39,71,0.88), transparent);
  color: var(--white);
  padding: 30px 18px 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

.video-block {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
  background: var(--navy-darker);
}
.video-block video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.stars { display: flex; gap: 3px; color: var(--star); margin-bottom: 14px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf1f4;
}
.testi-card p.quote { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--ink-soft); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 36px;
  margin: 0 auto 56px;
  max-width: 620px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.rating-summary .score { font-family: var(--font-head); font-size: 3rem; color: var(--navy); font-weight: 800; }
.rating-summary .divider { width: 1px; background: #e3e8ec; align-self: stretch; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-darker), var(--navy));
  border-radius: var(--radius);
  padding: 52px 44px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.cta-banner p { color: #cfe0f2; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-darker);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.16); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.contact-item a, .contact-item span { color: #cfe0f2; font-size: 0.92rem; }
.contact-item a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--accent); color: var(--navy-darker); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #edf1f4;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #dde3e9;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--steel-light);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: #e7f6ec;
  border: 1.5px solid var(--success);
  color: #1f6e3d;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
  aspect-ratio: 16/8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.zone-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid #edf1f4;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--navy-darker);
}
.faq-q svg { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--ink-soft); font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-darker); color: #cfe0f2; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 50px; margin-bottom: 16px; background: var(--white); padding: 8px 14px; border-radius: 8px; }
.footer-brand p { font-size: 0.88rem; color: #a9c0d6; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; font-size: 0.88rem; }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.8rem; color: #93aec6; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--accent); }

.back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--navy-darker);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.whatsapp-float {
  position: fixed; left: 24px; bottom: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 90;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all 0.25s ease;
}
.whatsapp-float.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(120deg, var(--navy-darker), var(--navy));
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.page-header p { color: #d7e4f2; max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; color: #a9c0d6; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Blog listing ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf1f4;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-media { aspect-ratio: 16/10; }
.blog-card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em;
}
.blog-meta .tag { padding: 4px 12px; font-size: 0.72rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.blog-card .read-more { font-weight: 700; color: var(--navy); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card:hover .read-more { color: var(--accent-dark); }

/* ---------- Article page ---------- */
.article-hero {
  background: linear-gradient(120deg, var(--navy-darker), var(--navy));
  color: var(--white);
  padding: 56px 0 48px;
}
.article-hero .breadcrumb { justify-content: flex-start; }
.article-hero .blog-meta { color: #cfe0f2; margin-bottom: 18px; }
.article-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3.6vw, 2.5rem); max-width: 780px; }

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 0;
}
.article-body .lead-p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.article-body h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 18px; color: var(--ink); line-height: 1.75; }
.article-body .cta-banner p { color: #cfe0f2; margin-bottom: 0; }
.article-body .cta-banner h3 { color: var(--white); }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; color: var(--ink); }
.article-body li { margin-bottom: 10px; line-height: 1.65; }
.article-body strong { color: var(--navy-darker); }
.article-tip {
  background: var(--steel-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.article-tip strong { display: block; margin-bottom: 6px; color: var(--navy-darker); font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; }
.article-share {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px; margin-top: 36px;
  border-top: 1px solid #eaeef1;
}
.article-share span { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.article-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px; padding: 22px 24px;
  background: var(--steel-light);
  border-radius: var(--radius);
}
.article-author .testi-avatar { width: 50px; height: 50px; font-size: 1.1rem; }
.article-author strong { display: block; font-size: 0.95rem; }
.article-author span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-row-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-navy { display: none; }
  .nav-toggle { display: flex; }
  .nav-call-mobile { display: flex; }
  .topbar { display: none; }
  .hero { padding: 28px 0 64px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 14px; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: -40px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 40px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rating-summary { flex-direction: column; }
  .rating-summary .divider { display: none; }
  .back-to-top { width: 44px; height: 44px; right: 16px; bottom: 16px; }
  .whatsapp-float { width: 50px; height: 50px; left: 16px; bottom: 16px; }
  .article-body { padding: 40px 0; }
  .article-hero { padding: 40px 0 36px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    gap: 18px;
  }
  .nav-cta.open { display: flex !important; justify-content: center; padding: 0 24px 24px; }
  .nav-cta.open .btn-navy { display: inline-flex !important; }
}
