/* ==========================================================================
   Débouchage Luxembourg — styles.css
   Premium, responsive, conversion-focused stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #07203f;
  --navy-800: #08274d;
  --navy:     #0a2c5e;
  --navy-700: #0e3a78;
  --blue:     #1d6fe0;
  --blue-50:  #eaf2fd;
  --orange:   #ff6a1a;
  --orange-600:#ef5c08;
  --orange-50:#fff1e7;
  --green:    #1aa861;
  --green-50: #e7f7ef;
  --ink:      #0f1b2d;
  --muted:    #5a6b80;
  --line:     #e4ebf3;
  --bg:       #ffffff;
  --bg-soft:  #f4f8fd;
  --bg-soft-2:#eef4fb;
  --white:    #ffffff;

  --radius:   16px;
  --radius-sm:10px;
  --radius-lg:26px;
  --shadow-sm: 0 2px 10px rgba(10,44,94,.06);
  --shadow:    0 12px 30px rgba(10,44,94,.10);
  --shadow-lg: 0 24px 60px rgba(10,44,94,.16);

  --ff-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --topbar-h: 40px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--navy); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 600; font-size: 1rem;
  padding: .92rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(255,106,26,.32); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,106,26,.40); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: #cfe0f5; font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--topbar-h); gap: 14px; }
.topbar__msg { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.topbar__msg .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; flex: none; }
.topbar__msg .pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:2px solid var(--green); opacity:.6; animation: ring 1.8s ease-out infinite; }
@keyframes ring { 0%{transform:scale(.6);opacity:.7} 100%{transform:scale(1.6);opacity:0} }
.topbar__right { display: inline-flex; align-items: center; gap: 18px; }
.topbar a { color: #eaf2fd; font-weight: 600; }
.topbar a:hover { color: #fff; }

/* Language switcher */
.lang { display: inline-flex; gap: 4px; background: rgba(255,255,255,.10); padding: 3px; border-radius: 999px; }
.lang button {
  border: 0; background: transparent; color: #cfe0f5; font: inherit; font-weight: 700; font-size: .78rem;
  padding: 3px 10px; border-radius: 999px; cursor: pointer; letter-spacing: .03em; line-height: 1.4;
}
.lang button.is-active { background: #fff; color: var(--navy); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s ease; }
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 50px; width: auto; }
.brand__txt { display: none; }
.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav__head, .nav__cta { display: none; }
.nav ul a { font-family: var(--ff-head); font-weight: 600; font-size: .98rem; color: var(--navy); padding: .55rem .8rem; border-radius: 10px; transition: background .15s, color .15s; }
.nav ul a:hover, .nav ul a.is-active { background: var(--blue-50); color: var(--blue); }
.header__cta { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.header__phone { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: right; }
.header__phone span { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.header__phone strong { font-family: var(--ff-head); font-size: 1.18rem; color: var(--navy); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 3px; position: relative; transition: .25s; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Section scaffolding ---------- */
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: #dce7f5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.sec-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: var(--orange-50); padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.section--navy .eyebrow { background: rgba(255,255,255,.10); color: #ffd9c2; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.sec-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.section--navy .sec-head p { color: #bcd0ea; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(155deg, var(--navy) 0%, var(--navy-900) 60%, #061a35 100%); color: #fff; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 85% 15%, rgba(29,111,224,.35), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,106,26,.18), transparent 40%); pointer-events:none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-top: 70px; padding-bottom: 80px; }
.hero__badge { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); color: #fff; padding: .5rem 1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; margin-bottom: 1.4rem; }
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(26,168,97,.3); }
.hero h1 { color: #fff; font-size: clamp(2.05rem, 4.6vw, 3.35rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: 1rem; }
.hero h1 .accent { color: #ffb184; }
.hero__lead { font-size: 1.16rem; color: #cfe0f5; max-width: 36rem; margin-bottom: 1.6rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__chips li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .96rem; color: #e7f0fb; }
.hero__chips svg { width: 20px; height: 20px; color: var(--green); flex: none; }

.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.10); }
.hero__float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px; padding: .9rem 1.1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .8rem;
}
.hero__float--tl { top: -26px; left: -26px; }
.hero__float--br { bottom: -26px; right: -26px; }
.hero__float .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero__float .ic.green { background: var(--green-50); color: var(--green); }
.hero__float .ic.orange { background: var(--orange-50); color: var(--orange); }
.hero__float strong { font-family: var(--ff-head); display: block; font-size: 1.05rem; color: var(--navy); }
.hero__float small { color: var(--muted); font-size: .82rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; margin-top: -38px; position: relative; z-index: 5; }
.trustbar__inner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.trust { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; padding: 14px 8px; border-radius: 12px; }
.trust .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; }
.trust .ic svg { width: 26px; height: 26px; }
.trust b { font-family: var(--ff-head); font-size: .98rem; color: var(--navy); }
.trust span { font-size: .82rem; color: var(--muted); }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe0f5; }
.card__ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); color: #fff; margin-bottom: 18px; }
.card__ic svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.card__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .94rem; color: var(--ink); margin-bottom: .4rem; }
.card__list svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ff-head); font-weight: 600; color: var(--orange); font-size: .95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Why / features split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature { display: flex; gap: 16px; margin-bottom: 26px; }
.feature .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; flex: none; }
.feature .ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.stat { text-align: center; padding: 26px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.stat b { font-family: var(--ff-head); font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; display: block; font-weight: 800; }
.stat span { color: #bcd0ea; font-size: .95rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px 26px; box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; position: absolute; top: -22px; left: 24px; width: 44px; height: 44px; border-radius: 12px; background: var(--orange); color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(255,106,26,.35); }
.step__num::after { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.1rem; margin: 10px 0 .4rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Zones ---------- */
.zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.zone { display: flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem; font-weight: 600; font-size: .96rem; color: var(--navy); box-shadow: var(--shadow-sm); transition: .15s; }
.zone:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.zone svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

/* ---------- Equipment ---------- */
.equip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s; height: 100%; }
.equip:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.equip__top { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); padding: 26px; display: flex; align-items: center; gap: 14px; }
.equip__top .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; flex: none; }
.equip__top .ic svg { width: 28px; height: 28px; }
.equip__top h3 { color: #fff; font-size: 1.12rem; margin: 0; }
.equip__body { padding: 22px 26px 26px; }
.equip__body p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Testimonials ---------- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.review__stars { color: #f5a623; display: flex; gap: 2px; margin-bottom: 12px; }
.review__stars svg { width: 20px; height: 20px; }
.review p { font-size: 1rem; color: var(--ink); flex: 1; }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; flex: none; }
.review__by b { font-family: var(--ff-head); color: var(--navy); display: block; font-size: .98rem; }
.review__by span { color: var(--muted); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--ff-head); font-weight: 600; font-size: 1.06rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .chev { width: 24px; height: 24px; flex: none; transition: transform .25s; color: var(--orange); }
.faq__item.is-open .faq__q .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(120deg, var(--orange) 0%, #ff8a3d 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow-lg); flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .3rem; }
.ctaband p { color: rgba(255,255,255,.92); margin: 0; font-size: 1.08rem; }
.ctaband .btn-ghost { background: rgba(255,255,255,.15); border-color: #fff; }
.ctaband__phone { background: #fff; color: var(--navy); }
.ctaband__phone:hover { background: var(--navy); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 26px; height: 26px; }
.contact-info h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.contact-info p, .contact-info a { color: var(--muted); margin: 0; font-size: .98rem; }
.contact-info a:hover { color: var(--blue); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; font-size: .98rem; color: var(--ink); background: var(--bg-soft); transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin: 4px 0 0; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aebfd6; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer__brand img { height: 56px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer p { font-size: .94rem; color: #9fb2cd; }
.footer ul li { margin-bottom: .6rem; }
.footer ul a { font-size: .95rem; color: #aebfd6; }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; margin-bottom: .8rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8ea3c0; }
.footer__bottom a { color: #aebfd6; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Sticky mobile call bar ---------- */
.mobilebar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(10,44,94,.12); }
.mobilebar .btn { padding: .85rem 1rem; font-size: .98rem; }

/* ---------- Floating desktop call button ---------- */
.floatcall { position: fixed; right: 22px; bottom: 22px; z-index: 65; width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(26,168,97,.45); animation: floatpulse 2.4s ease-in-out infinite; }
.floatcall svg { width: 28px; height: 28px; }
@keyframes floatpulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ---------- Page hero (interior banners on legal pages) ---------- */
.page-hero { background: linear-gradient(155deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .4rem; }
.page-hero p { color: #bcd0ea; margin: 0; }
.legal-body { max-width: 860px; margin: 0 auto; }
.legal-body h2 { font-size: 1.4rem; margin-top: 2rem; }
.legal-body h3 { font-size: 1.12rem; margin-top: 1.4rem; }
.legal-body p, .legal-body li { color: #3c4a5e; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a { color: var(--blue); text-decoration: underline; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
[hidden] { display: none !important; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .trustbar__inner { grid-template-columns: repeat(3, 1fr); }
  .zones { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nav, .header__phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn-text { display: none; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 60px; }
  .hero__media { order: -1; max-width: 460px; }
  .hero__float--tl { left: 6px; }
  .hero__float--br { right: 6px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Mobile nav drawer */
  .nav.is-open { display: flex; flex-direction: column; position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #fff; padding: 0; box-shadow: var(--shadow-lg); z-index: 55; overflow-y: auto; animation: drawerIn .22s ease; }
  @keyframes drawerIn { from { transform: translateX(100%); } to { transform: none; } }
  .nav.is-open .nav__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__head img { height: 44px; width: auto; }
  .nav__close { width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; display: grid; place-items: center; cursor: pointer; color: var(--navy); }
  .nav__close svg { width: 22px; height: 22px; }
  .nav.is-open ul { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px; }
  .nav.is-open li { width: 100%; }
  .nav.is-open ul a { display: flex; align-items: center; justify-content: space-between; padding: .95rem 1rem; font-size: 1.06rem; border-radius: 12px; color: var(--navy); }
  .nav.is-open ul a::after { content: ""; width: 9px; height: 9px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); opacity: .35; flex: none; }
  .nav.is-open ul a:hover, .nav.is-open ul a.is-active { background: var(--blue-50); color: var(--blue); }
  .nav.is-open .nav__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding: 18px 20px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
  .nav__phone { text-align: center; margin: 4px 0 0; font-size: .9rem; color: var(--muted); }
  .nav__phone span { font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .78rem; }
  .nav__phone a { font-family: var(--ff-head); font-weight: 700; color: var(--navy); }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(7,32,63,.55); z-index: 54; opacity: 0; pointer-events: none; transition: opacity .2s; }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .topbar__msg span.full { display: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .trustbar { margin-top: -28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .zones { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; row-gap: 42px; }
  .footer__grid { grid-template-columns: 1fr; }
  .ctaband { padding: 32px 24px; text-align: center; justify-content: center; }
  .ctaband__actions { width: 100%; display: flex; flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .mobilebar { display: grid; }
  .floatcall { display: none; }
  body { padding-bottom: 76px; }  /* room for sticky bar */
  /* Move hero badges below the image so they don't cover the photo */
  .hero__media { display: flex; flex-direction: column; gap: 12px; max-width: 460px; margin: 0 auto; }
  .hero__media img { border-width: 4px; }
  .hero__float { position: static; box-shadow: var(--shadow); padding: .85rem 1rem; }
  .hero__float--tl, .hero__float--br { top: auto; right: auto; bottom: auto; left: auto; }
  .hero__float strong { font-size: 1rem; }
  .hero__float small { font-size: .8rem; }
  .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 420px) {
  .container { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
