/* ===========================================
   Macbook24.fr by OrdiSmile — Stylesheet v3
=========================================== */

/* ─── VARIABLES ─── */
:root {
  --dark: #0f0f0f;
  --mid: #374151;
  --light: #6b7280;
  --bg: #ffffff;
  --section-bg: #f8f9fb;
  --accent: #e05a00;
  --accent-hover: #c24d00;
  --accent-soft: #fff4ed;
  --success: #16a34a;
  --border: #e5e7eb;
  --card-bg: #ffffff;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── BASE ─── */
body {
  font-family: 'Familjen Grotesk', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--dark);
  color: #d6cfc7;
  font-size: 16px;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar a { color: #f5ede4; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar-sep { color: #57534e; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 17px;
  color: var(--mid);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  background-size: cover;
  background-position: center top;
  color: #fff;
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,10,5,0.72);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(224,90,0,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,90,0,0.18);
  border: 1px solid rgba(224,90,0,0.38);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeDown .5s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.76rem, 3.5vw, 2.57rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  animation: fadeDown .5s .1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: #fb923c;
  font-size: 1.25em;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(251,146,60,0.35);
}
.hero-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #a8a29e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeDown .5s .15s ease both;
}
.hero-sub {
  font-size: 17px;
  color: #a8a29e;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeDown .5s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .5s .3s ease both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  font-family: 'Familjen Grotesk', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,90,0,0.4); }
.btn-ghost {
  background: #25d366;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Familjen Grotesk', sans-serif;
}
.btn-ghost:hover { background: #1da851; transform: translateY(-2px); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--mid);
}
.trust-item .icon { font-size: 16px; }

/* ─── MONDIAL RELAY STRIP ─── */
.mr-strip {
  display: block;
  text-decoration: none;
  background: #f0f7ff;
  border-top: 2px solid #599AD7;
  border-bottom: 1px solid #d1e8f7;
  padding: 16px 24px;
  transition: background .2s;
}
.mr-strip:hover { background: #e3f1fb; }
.mr-strip-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mr-strip-left { display: flex; align-items: center; gap: 14px; }
.mr-pin { flex-shrink: 0; }
.mr-strip-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1c4f82;
}
.mr-strip-sub {
  display: block;
  font-size: 16px;
  color: #4a7fa8;
  margin-top: 2px;
}
.mr-strip-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #599AD7;
  white-space: nowrap;
  border: 1.5px solid #599AD7;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mr-strip:hover .mr-strip-cta { background: #599AD7; color: #fff; }

/* ─── MONDIAL RELAY BUTTON ─── */
.btn-mr-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(89,154,215,0.1);
  border: 1px solid rgba(89,154,215,0.3);
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  margin-top: 14px;
  transition: background .2s, border-color .2s;
  width: fit-content;
}
.btn-mr-hero:hover { background: rgba(89,154,215,0.18); border-color: rgba(89,154,215,0.55); }
.btn-mr-text { display: flex; flex-direction: column; text-align: left; }
.btn-mr-label { font-size: 17px; font-weight: 600; color: #78716c; text-transform: uppercase; letter-spacing: .06em; }
.btn-mr-sub { font-size: 17px; font-weight: 700; color: #fff; margin-top: 1px; }

/* ─── MONDIAL RELAY STANDALONE ─── */
.mondial-relay-btn-standalone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #599AD7;
  border: 1.5px solid #599AD7;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s, color .2s;
  font-family: 'Familjen Grotesk', sans-serif;
  width: fit-content;
}
.mondial-relay-btn-standalone:hover { background: #599AD7; color: #fff; }

/* ─── SECTIONS ─── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: auto; }
.section-label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.29rem, 2.9vw, 1.76rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-desc {
  color: var(--light);
  font-size: 17px;
  max-width: 580px;
  line-height: 1.8;
}

/* ─── SERVICE CARDS ─── */
#services { background: var(--section-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-card.featured { background: var(--dark); color: #fff; border-color: transparent; }
.service-card.featured .svc-desc { color: #a8a29e; }
.service-card.featured .svc-price { color: #fff; }
.svc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.svc-tag {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.service-card.featured .svc-tag { background: rgba(251,146,60,0.15); color: #fb923c; }
.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-desc { font-size: 17px; color: var(--light); line-height: 1.72; margin-bottom: 20px; }
.svc-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
}
.svc-price small { font-size: 16px; font-weight: 400; color: var(--light); }

/* ─── EXPLAINER ─── */
.explainer { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.explainer.reverse { direction: rtl; }
.explainer.reverse > * { direction: ltr; }
.explainer-visual {
  background: var(--dark);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.explainer-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(224,90,0,0.2), transparent 60%);
}
.explainer ul { list-style: none; margin: 20px 0; }
.explainer ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--mid);
}
.explainer ul li:last-child { border-bottom: none; }
.check { color: var(--success); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }

/* ─── PROCESS ─── */
#process { background: var(--section-bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
}
.step { padding: 32px 20px; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 1.4rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 16px;
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--dark);
}
.step-desc { font-size: 17px; color: var(--light); line-height: 1.7; }

/* ─── TARIFS ─── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 40px;
}
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.tarif-name { font-weight: 500; color: var(--dark); font-size: 17px; }
.tarif-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
  white-space: nowrap;
  margin-left: 12px;
}

/* ─── TF1 ─── */
.tf1-band {
  background: var(--dark);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}
.tf1-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  margin: 24px auto 0;
}

/* ─── CONTACT ─── */
#contact { background: var(--section-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}
.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
}
.contact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--dark);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--mid);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon { font-size: 16px; width: 22px; text-align: center; }
.contact-item a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #16a34a;
  color: #fff;
  padding: 15px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-top: 20px;
  transition: background .2s;
  font-family: 'Familjen Grotesk', sans-serif;
}
.whatsapp-btn:hover { background: #15803d; }
.mondial-relay-info {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(224,90,0,0.15);
}
.mondial-relay-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--accent);
}
.mondial-relay-info p { font-size: 17px; color: var(--mid); line-height: 1.75; }

/* ─── FAQ ─── */
#faq { background: var(--bg); }
.faq-list { max-width: 740px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .arrow { transition: transform .3s; color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 17px;
  color: var(--light);
  line-height: 1.8;
  margin-top: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ─── GOOGLE MAPS BLOCK ─── */
.gmaps-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.gmaps-stars { display: flex; align-items: center; gap: 16px; margin: 18px 0 20px; }
.gmaps-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--dark);
  line-height: 1;
}
.gmaps-star-row { display: flex; gap: 3px; margin-bottom: 4px; }
.star { color: #f59e0b; font-size: 20px; }
.gmaps-count { font-size: 17px; color: var(--light); font-weight: 500; }
.gmaps-details { display: flex; flex-direction: column; gap: 10px; }
.gmaps-detail-row { font-size: 17px; color: var(--mid); }
.gmaps-detail-row a { color: var(--accent); text-decoration: none; font-weight: 600; }
.gmaps-itinerary-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-family: 'Familjen Grotesk', sans-serif;
}
.gmaps-itinerary-btn:hover { background: var(--accent); color: #fff; }
.gmaps-embed {
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* ─── PHOTO GRID ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.photo-grid .photo-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: #1c1917;
}
.photo-grid .photo-item.tall { grid-row: span 2; aspect-ratio: unset; }
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.photo-grid .photo-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 28px 16px 14px;
}
.photo-caption-title {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.photo-caption-sub {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ─── EXPLAINER VISUAL IMAGE ─── */
.explainer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: #78716c;
  padding: 40px 24px;
  text-align: center;
  font-size: 17px;
}
footer a { color: #a8a29e; text-decoration: none; }
footer a:hover { color: #fff; }
footer .footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── DESKTOP BURGER HIDDEN ─── */
.nav-burger { display: none; }
.mobile-menu { display: none; }
.mobile-menu-backdrop { display: none; }
.mobile-quicklinks { display: none; }

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 768px) {
  .mobile-menu { display: block; }

  /* ─── BARRE LIENS RAPIDES ─── */
  .mobile-quicklinks {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .mobile-quicklinks::-webkit-scrollbar { display: none; }
  .mobile-quicklinks a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding: 8px 14px;
    background: var(--section-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    scroll-snap-align: start;
    transition: background .2s, color .2s;
    flex-shrink: 0;
  }
  .mobile-quicklinks a:active { background: var(--accent); color: #fff; border-color: var(--accent); }

  /* ─── HAMBURGER ─── */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
  }

  /* ─── MOBILE MENU ─── */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 24px;
    transition: right .3s ease;
    box-shadow: -4px 0 32px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu ul { list-style: none; margin-top: 48px; }
  .mobile-menu ul li { border-bottom: 1px solid var(--border); }
  .mobile-menu ul li a {
    display: block;
    padding: 16px 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
  }
  .mobile-menu ul li a:hover { color: var(--accent); }
  .mobile-menu-cta {
    display: block !important;
    margin-top: 20px;
    background: var(--accent) !important;
    color: #fff !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 10px;
  }
  .mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--mid);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
  }
  .mobile-menu-close:hover { background: var(--section-bg); }
  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 199;
    backdrop-filter: blur(2px);
  }
  .mobile-menu-backdrop.open { display: block; }

  .nav-links { display: none; }
  .topbar { font-size: 13px; gap: 16px; }
  .explainer { grid-template-columns: 1fr; gap: 32px; }
  .explainer.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .gmaps-block { grid-template-columns: 1fr; gap: 24px; }
  .gmaps-embed { height: 220px; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-grid .photo-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .photo-caption { padding: 18px 10px 8px; }
  .photo-caption-title { font-size: 13px; margin-bottom: 0; }
  .photo-caption-sub { display: none; }
  .service-card[style*="grid-column: 1 / -1"] {
    flex-direction: column !important;
    padding: 20px !important;
  }
  .service-card[style*="grid-column: 1 / -1"] > div:last-child {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero { padding: 60px 20px 52px; }
  .hero-sub { font-size: 17px; }
  .btn-primary, .btn-ghost { padding: 13px 22px; font-size: 16px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .trust-inner { gap: 14px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
