/* =====================================================================
   Toulouse Dépannage Remorquage Épaviste — Design System
   Palette: #0B0B0B · #FFC107 · #FFFFFF · #F5F5F5
   Fonts:   Poppins (titres) · Inter (texte)
===================================================================== */

:root {
  --black: #0b0b0b;
  --black-2: #15161b;
  --black-3: #1d1f26;
  --yellow: #ffc107;
  --yellow-d: #e6ad06;
  --yellow-soft: rgba(255, 193, 7, .14);
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-2: #eceef1;
  --text: #181a1f;
  --muted: #676d76;
  --muted-2: #9aa0a8;
  --line: #e7e9ee;

  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(12, 14, 20, .06);
  --shadow: 0 16px 40px rgba(12, 14, 20, .10);
  --shadow-lg: 0 30px 70px rgba(12, 14, 20, .16);
  --ease: cubic-bezier(.22, .68, 0, 1);

  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -.01em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--black); color: #fff; }
.section--tight { padding: 72px 0; }

.ico { width: 20px; height: 20px; fill: currentColor; flex: none; }
.text-y { color: var(--yellow); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow-d);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--yellow); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--yellow); display: inline-block; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section--dark .section-head p { color: #b9bdc6; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; overflow: hidden;
}
.btn .ico { width: 18px; height: 18px; }
.btn--primary { background: var(--yellow); color: #1a1500; box-shadow: 0 10px 26px rgba(255, 193, 7, .35); }
.btn--primary:hover { background: var(--yellow-d); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255, 193, 7, .45); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }
/* shine */
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 130%; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   TOP BAR
===================================================================== */
.topbar { background: var(--black); color: #d8dbe1; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 44px; gap: 16px; }
.topbar__left { display: flex; gap: 26px; }
.topbar__left span, .topbar__right a { display: inline-flex; align-items: center; gap: 8px; }
.topbar .ico { width: 15px; height: 15px; fill: var(--yellow); }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__right a:hover { color: #fff; }
.topbar__phone { font-weight: 700; color: #fff; }
.topbar__socials { display: flex; gap: 10px; }
.topbar__socials a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.08); align-items: center; justify-content: center; transition: .2s; }
.topbar__socials a:hover { background: var(--yellow); }
.topbar__socials svg { width: 13px; height: 13px; fill: #d8dbe1; }
.topbar__socials a:hover svg { fill: #000; }

/* =====================================================================
   HEADER / NAV
===================================================================== */
.header { position: sticky; top: 0; z-index: 100; background: #fff; transition: box-shadow .3s, padding .3s; }
.header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; transition: height .3s; }
.header.scrolled .header__inner { height: 70px; }

.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__badge {
  width: 48px; height: 48px; border-radius: 13px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex: none;
  box-shadow: 0 6px 16px rgba(255, 193, 7, .4);
}
.logo__badge svg { width: 30px; height: 30px; fill: #0b0b0b; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--ff-head); font-weight: 800; font-size: 19px; color: var(--black); letter-spacing: -.02em; }
.logo__name b { color: var(--yellow-d); }
.logo__sub { font-size: 10px; letter-spacing: 2.6px; color: var(--muted); text-transform: uppercase; margin-top: 1px; }

.mainnav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.mainnav a {
  font-family: var(--ff-head); font-weight: 500; font-size: 15px; color: #2a2c33;
  padding: 10px 14px; border-radius: 8px; position: relative; transition: color .2s, background .2s;
}
.mainnav a:hover { color: var(--black); background: var(--gray); }
.mainnav a.active { color: var(--black); font-weight: 600; }
.mainnav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px; border-radius: 2px; background: var(--yellow);
}
.header__cta { margin-left: 8px; }
.nav-cta { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2.6px; background: var(--black); border-radius: 3px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
===================================================================== */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(8,8,9,.94) 0%, rgba(8,8,9,.82) 38%, rgba(8,8,9,.45) 70%, rgba(8,8,9,.6) 100%);
}
.hero__inner { padding: 86px 0 104px; max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--yellow-soft);
  border: 1px solid rgba(255, 193, 7, .45); color: var(--yellow);
  font-family: var(--ff-head); font-weight: 600; font-size: 13px; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 30px; text-transform: uppercase;
}
.hero__badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(255,193,7,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,193,7,.6); } 70% { box-shadow: 0 0 0 12px rgba(255,193,7,0); } 100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); } }
.hero h1 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 800; line-height: 1.06; margin: 22px 0 18px; color: #fff; }
.hero h1 .text-y { color: var(--yellow); }
.hero__sub { font-size: 18px; color: #d3d6dd; max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hero__points li { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15.5px; color: #e8eaef; }
.hero__points .check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); color: #000;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.hero__points .check svg { width: 14px; height: 14px; }

/* avantages strip overlapping hero */
.advstrip { position: relative; z-index: 5; margin-top: -54px; }
.advstrip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.advstrip__item { display: flex; align-items: center; gap: 16px; padding: 26px 28px; border-right: 1px solid var(--line); }
.advstrip__item:last-child { border-right: 0; }
.advstrip__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--yellow-soft); color: var(--yellow-d); display: flex; align-items: center; justify-content: center; flex: none; }
.advstrip__icon svg { width: 26px; height: 26px; fill: var(--yellow-d); }
.advstrip__item b { font-family: var(--ff-head); font-size: 17px; display: block; }
.advstrip__item span { font-size: 13.5px; color: var(--muted); }

/* =====================================================================
   SERVICES (cards grid)
===================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.scard__media { height: 200px; overflow: hidden; position: relative; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.08); }
.scard__tag { position: absolute; top: 14px; left: 14px; background: var(--yellow); color: #000; font-family: var(--ff-head); font-weight: 600; font-size: 12px; padding: 5px 12px; border-radius: 20px; }
.scard__body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.scard__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--black); color: var(--yellow); display: flex; align-items: center; justify-content: center; margin: -52px 0 16px; position: relative; box-shadow: var(--shadow); }
.scard__icon svg { width: 26px; height: 26px; fill: var(--yellow); }
.scard__body h3 { font-size: 20px; margin-bottom: 9px; }
.scard__body p { color: var(--muted); font-size: 15px; margin-bottom: 18px; flex: 1; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--text); transition: gap .25s, color .2s; }
.link-more svg { width: 16px; height: 16px; fill: var(--yellow-d); transition: transform .25s; }
.link-more:hover { color: var(--yellow-d); }
.link-more:hover svg { transform: translateX(5px); }

/* =====================================================================
   WHY CHOOSE / FEATURES
===================================================================== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature { text-align: center; padding: 8px; }
.feature__icon {
  width: 86px; height: 86px; margin: 0 auto 20px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-soft); color: var(--yellow); position: relative;
  transition: transform .35s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-6px) rotate(-4deg); }
.feature__icon svg { width: 40px; height: 40px; fill: var(--yellow); }
.section--dark .feature h3 { color: #fff; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }
.section--dark .feature p { color: #abb0ba; }

/* stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(34px, 4vw, 50px); color: var(--yellow); line-height: 1; }
.stat__label { color: #c6cad2; font-size: 15px; margin-top: 8px; }

/* =====================================================================
   GALLERY (réalisations)
===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gtile { position: relative; border-radius: var(--radius); overflow: hidden; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,9,.82), transparent 55%); opacity: .85; transition: opacity .35s; }
.gtile:hover img { transform: scale(1.1); }
.gtile__cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; }
.gtile__cap b { font-family: var(--ff-head); font-size: 17px; display: block; }
.gtile__cap span { font-size: 13px; color: var(--yellow); font-weight: 600; }
.gtile--wide { grid-column: span 2; }
.gtile--tall { grid-row: span 2; }

/* =====================================================================
   ZONE D'INTERVENTION (coverage map)
===================================================================== */
.zone__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zone__map {
  position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; width: 100%;
  background: radial-gradient(circle at center, #1d1f26 0%, #0e0f13 70%);
  border-radius: 28px; border: 1px solid rgba(255,255,255,.08); overflow: hidden;
}
.zone__map .ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1.5px dashed rgba(255,193,7,.3); border-radius: 50%; }
.zone__map .ring.r1 { width: 30%; height: 30%; } .zone__map .ring.r2 { width: 56%; height: 56%; } .zone__map .ring.r3 { width: 84%; height: 84%; }
.zone__core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.zone__core .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); margin: 0 auto 6px; box-shadow: 0 0 0 0 rgba(255,193,7,.7); animation: pulse 2.4s infinite; }
.zone__core b { color: #fff; font-family: var(--ff-head); font-size: 15px; }
.zone__pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 3px; color: #cfd3da; font-size: 12px; font-weight: 500; transform: translate(-50%, -50%); }
.zone__pin i { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,.6); }
.zone__cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.citychip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 9px 16px; font-weight: 500; font-size: 14.5px; transition: .25s; }
.section--dark .citychip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #e6e8ec; }
.citychip:hover { border-color: var(--yellow); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.citychip svg { width: 14px; height: 14px; fill: var(--yellow-d); }
.section--dark .citychip svg { fill: var(--yellow); }

/* =====================================================================
   TESTIMONIALS
===================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 18px; flex: none; }
.review__who b { font-family: var(--ff-head); font-size: 15.5px; display: block; }
.review__who span { font-size: 12.5px; color: var(--muted); }
.review__g { margin-left: auto; }
.review__g svg { width: 22px; height: 22px; }
.stars { display: flex; gap: 2px; margin-bottom: 10px; }
.stars svg { width: 17px; height: 17px; fill: var(--yellow); }
.review p { color: #3f444c; font-size: 14.8px; }

/* =====================================================================
   FAQ
===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--ff-head); font-weight: 600; font-size: 17px; text-align: left; color: var(--text); }
.faq__q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--yellow-soft); color: var(--yellow-d); display: flex; align-items: center; justify-content: center; flex: none; transition: transform .3s, background .3s; font-size: 22px; line-height: 1; }
.faq__item.open .plus { background: var(--yellow); color: #000; transform: rotate(135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* =====================================================================
   CTA BAND
===================================================================== */
.ctaband { background: linear-gradient(100deg, var(--yellow) 0%, #ffce3a 100%); }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 52px 0; flex-wrap: wrap; }
.ctaband h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #1a1500; }
.ctaband p { color: #4a3c00; font-weight: 500; margin-top: 4px; }
.ctaband__phone { font-family: var(--ff-head); font-weight: 800; font-size: 30px; color: #1a1500; display: inline-flex; align-items: center; gap: 12px; }

/* =====================================================================
   CONTACT
===================================================================== */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: stretch; }
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-head); font-weight: 500; font-size: 13.5px; color: #3a3e46; }
.field label .req { color: var(--yellow-d); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fbfbfc; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px var(--yellow-soft); background: #fff; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success { display: none; background: #eafaf0; border: 1px solid #b6e7c9; color: #1c7a44; padding: 14px 18px; border-radius: 10px; font-weight: 500; margin-bottom: 18px; }
.form-success.show { display: block; }

.contact__aside { background: var(--black); color: #fff; border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; }
.contact__aside h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.contact__aside .lead { color: #b9bdc6; margin-bottom: 26px; }
.cinfo { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cinfo:last-of-type { border-bottom: 0; }
.cinfo__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--yellow-soft); color: var(--yellow); display: flex; align-items: center; justify-content: center; flex: none; }
.cinfo__icon svg { width: 22px; height: 22px; fill: var(--yellow); }
.cinfo b { font-family: var(--ff-head); display: block; font-size: 16px; }
.cinfo span { color: #b9bdc6; font-size: 14.5px; }
.cinfo a { color: #fff; }
.cinfo a:hover { color: var(--yellow); }

/* =====================================================================
   PAGE HERO (inner pages)
===================================================================== */
.pagehero { position: relative; color: #fff; isolation: isolate; }
.pagehero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.pagehero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8,8,9,.92), rgba(8,8,9,.66)); }
.pagehero__inner { padding: 92px 0 84px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #c4c8d0; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }
.pagehero h1 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; color: #fff; max-width: 760px; }
.pagehero p { color: #d3d6dd; font-size: 18px; max-width: 620px; margin-top: 14px; }

/* split content blocks (service pages) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; font-size: 15.5px; }
.ticks li svg { width: 22px; height: 22px; fill: var(--yellow-d); flex: none; margin-top: 1px; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__n { font-family: var(--ff-head); font-weight: 800; font-size: 34px; color: var(--yellow); line-height: 1; }
.step h3 { font-size: 18px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* price list */
.pricelist { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricerow { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--line); }
.pricerow:last-child { border-bottom: 0; }
.pricerow b { font-family: var(--ff-head); font-weight: 600; }
.pricerow span { color: var(--yellow-d); font-family: var(--ff-head); font-weight: 700; white-space: nowrap; }

/* =====================================================================
   FOOTER
===================================================================== */
.footer { background: var(--black); color: #b6bac3; padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: #8b909a; }
.footer__about { font-size: 14.5px; color: #969ba4; margin: 18px 0 20px; max-width: 320px; }
.footer__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 700; font-size: 21px; color: #fff; margin-bottom: 18px; }
.footer__phone svg { width: 22px; height: 22px; fill: var(--yellow); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: .25s; }
.footer__social svg { width: 17px; height: 17px; fill: #d3d6dd; }
.footer__social a:hover { background: var(--yellow); transform: translateY(-3px); }
.footer__social a:hover svg { fill: #000; }
.footer__col h4 { color: #fff; font-family: var(--ff-head); font-size: 15px; letter-spacing: .5px; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a, .footer__contact li { font-size: 14.5px; color: #969ba4; transition: color .2s; }
.footer__col ul a:hover { color: var(--yellow); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; fill: var(--yellow); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--yellow); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; }
.footer__bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 13.5px; color: #7e838d; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--yellow); }

/* =====================================================================
   FLOATING CALL BUTTON
===================================================================== */
.floatcall {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: #1a1500; font-family: var(--ff-head); font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: 50px; box-shadow: 0 12px 30px rgba(255,193,7,.5);
  animation: floatbob 2.6s ease-in-out infinite;
}
.floatcall svg { width: 20px; height: 20px; fill: #1a1500; }
@keyframes floatbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.floatcall:hover { background: var(--yellow-d); }

/* =====================================================================
   GENERIC CONTENT (legal pages)
===================================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #41454d; margin-bottom: 12px; }
.prose ul { padding-left: 22px; list-style: disc; }

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .advstrip__grid { grid-template-columns: repeat(2, 1fr); }
  .advstrip__item:nth-child(2) { border-right: 0; }
  .advstrip__item:nth-child(1), .advstrip__item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .topbar__left span:nth-child(1), .topbar__socials { display: none; }
  .topbar__inner { justify-content: space-between; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .mainnav {
    position: fixed; top: 0; right: -100%; width: min(82vw, 340px); height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 90px 22px 30px; box-shadow: -20px 0 50px rgba(0,0,0,.18);
    transition: right .35s var(--ease); z-index: 120; overflow-y: auto;
  }
  .mainnav.open { right: 0; }
  .mainnav a { font-size: 17px; padding: 14px 16px; }
  .mainnav a.active::after { display: none; }
  .mainnav a.active { background: var(--yellow-soft); }
  .mainnav .btn { margin-top: 10px; }
  .nav-cta { display: flex; }
  .navback { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: .35s; z-index: 99; }
  .navback.show { opacity: 1; visibility: visible; }

  .split, .zone__wrap, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .split__media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gtile--wide, .gtile--tall { grid-column: auto; grid-row: auto; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .cards, .reviews, .features, .advstrip__grid, .steps, .gallery, .formgrid { grid-template-columns: 1fr; }
  .advstrip__item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .advstrip { margin-top: -30px; }
  .advstrip__item:last-child { border-bottom: 0; }
  .hero__inner { padding: 60px 0 80px; }
  .hero__actions .btn { width: 100%; }
  .gallery { grid-auto-rows: 200px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-in { flex-direction: column; text-align: center; }
  .formcard, .contact__aside { padding: 26px 22px; }
  .ctaband__phone { font-size: 24px; }
  .floatcall span { display: none; }
  .floatcall { padding: 16px; }
}
