/* MG Tejados — commercial roofing site (FR) inspired by Technitoit.
   Palette: deep blue + warm orange accent, solid/professional. */

:root {
  --blue: #0e3a5f;
  --blue-deep: #082844;
  --blue-soft: #1d5285;
  --orange: #e87722;
  --orange-deep: #c85d0e;
  --tuile: #b8441f;
  --ink: #1a1f2e;
  --ink-soft: #3d4558;
  --ink-muted: #6b7280;
  --ink-faint: #a0a8b5;
  --rule: #e3e6ec;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-mid: #eef1f5;
  --card: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 25, 50, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(10, 25, 50, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 25, 50, 0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --display: "Barlow Condensed", "Oswald", Impact, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  --ink: #e8ecf2;
  --ink-soft: #c0c6d4;
  --ink-muted: #8a92a3;
  --ink-faint: #4a5160;
  --rule: #2a3142;
  --bg: #0b1220;
  --bg-soft: #121a2c;
  --bg-mid: #1a2237;
  --card: #141c2e;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1440px; }

section { padding: clamp(3rem, 5vw, 5rem) 0; }

.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: .6rem;
  position: relative;
}
.kicker::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
}
.kicker--center { display: block; }
.kicker--center::after { left: 50%; transform: translateX(-50%); }
.kicker--light { color: #fff; }
.kicker--light::after { background: var(--orange); }

/* Placeholders — photographic feel */
.ph {
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative; overflow: hidden; width: 100%; height: 100%;
}
.ph span { background: rgba(0,0,0,.45); padding: .4em .8em; border-radius: 3px; backdrop-filter: blur(4px); }
.ph--hero { background: linear-gradient(120deg, #1d5285 0%, #082844 55%, #0e3a5f 100%); }
.ph--sky { background: linear-gradient(170deg, #4a7ba6 0%, #7ba3c8 50%, #b8441f 100%); }
.ph--tuile { background: linear-gradient(135deg, #b8441f 0%, #d4664a 50%, #8a3015 100%); }
.ph--moss { background: linear-gradient(135deg, #3d4a3d 0%, #5a6e56 50%, #2a3329 100%); }
.ph--ardoise { background: linear-gradient(135deg, #4a5159 0%, #6b7280 50%, #2d3238 100%); }
.ph--before { background: linear-gradient(135deg, #3d4a3d 0%, #4a5159 40%, #2a3329 100%); }
.ph--after { background: linear-gradient(135deg, #d4664a 0%, #e87722 50%, #8a3015 100%); }
.ph--pro { background: linear-gradient(135deg, #0e3a5f 0%, #1d5285 50%, #082844 100%); }
.ph--warm { background: linear-gradient(135deg, #e87722 0%, #c85d0e 50%, #8a3015 100%); }
.ph--pulmic-raptor { background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 50%, #0e2e1c 100%); }
.ph--pulmic-pegasus { background: linear-gradient(135deg, #0e3a5f 0%, #1d5285 40%, #2d7a4a 100%); }
.ph--pulmic-pegasus35 { background: linear-gradient(135deg, #143a2a 0%, #1a5a3a 50%, #082d1c 100%); }
.ph--pulmic-industrial { background: linear-gradient(135deg, #4a3018 0%, #6b4626 50%, #2a1a0e 100%); }
.ph--pulmic-fenix { background: linear-gradient(135deg, #c1392b 0%, #8a2418 50%, #4a1410 100%); }
.ph--pulmic-trigger { background: linear-gradient(135deg, #2d4a5a 0%, #4a7090 50%, #1a2d3a 100%); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  border: 2px solid var(--orange);
  background: var(--orange); color: #fff;
  border-radius: 4px; cursor: pointer;
  transition: all .2s;
  text-transform: uppercase; letter-spacing: .04em;
}
.btn:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn--blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn--sm { padding: .5rem .9rem; font-size: .82rem; }
.btn--block { width: 100%; justify-content: center; }

/* TOPBAR */
.topbar {
  background: var(--blue-deep); color: #fff;
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.topbar__info { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; color: rgba(255,255,255,.85); }
.topbar__info svg { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: .35rem; }
.topbar__actions { display: flex; gap: 1rem; align-items: center; color: rgba(255,255,255,.85); }
.topbar__actions a { cursor: pointer; }
.topbar__actions a:hover { color: var(--orange); }
.topbar__actions .sep { color: rgba(255,255,255,.35); }

/* HEADER */
.header {
  background: var(--bg); border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: .7rem;
  cursor: pointer; flex-shrink: 0;
}
.logo__mark {
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700;
  font-size: 1.2rem; letter-spacing: -0.02em;
  border-radius: 4px;
  position: relative;
}
.logo__mark::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid var(--orange);
}
.logo__text {
  font-family: var(--display); font-weight: 700;
  font-size: 1.4rem; text-transform: uppercase;
  letter-spacing: .01em; line-height: 1;
  white-space: nowrap;
}
.logo__text small {
  display: block; font-size: .58rem; font-weight: 500;
  letter-spacing: .24em; color: var(--ink-muted);
  margin-top: .2rem;
}
.nav {
  display: flex; gap: 1.8rem; align-items: center;
  font-weight: 600; font-size: .92rem;
}
.nav a {
  padding: .5rem 0;
  color: var(--ink); cursor: pointer; position: relative;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--orange);
}
.header__cta { display: flex; gap: .75rem; align-items: center; }

/* HERO */
.hero {
  position: relative;
  background: var(--blue-deep);
  color: #fff;
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #0e3a5f 0%, #082844 45%, #1d5285 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(232, 119, 34, 0.2), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(184, 68, 31, 0.15), transparent 55%);
}
.hero__container {
  position: relative; z-index: 2;
  width: 100%;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
.hero__copy .kicker { color: var(--orange); }
.hero__copy .kicker::after { background: var(--orange); }
.hero h1 {
  color: #fff;
  margin: 1rem 0 1.25rem;
  line-height: 1;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}
.hero h1 span { color: var(--orange); }
.hero__lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero__bullets {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
  margin: 0 0 2rem;
  font-size: .95rem; font-weight: 500;
}
.hero__bullets li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.95);
}
.hero__bullets li::before {
  content: '✓';
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--orange); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .8rem;
  flex-shrink: 0;
}
.hero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; }

/* HERO FORM (devis card) */
.hero__form {
  background: #fff;
  color: var(--ink);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.hero__form h3 {
  font-size: 1.5rem;
  margin-bottom: .3rem;
}
.hero__form .small {
  color: var(--ink-muted);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .3rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .95rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-legal {
  font-size: .75rem;
  color: var(--ink-muted);
  margin-top: .75rem;
}
.form-legal a { color: var(--blue); text-decoration: underline; }

/* STATS BAR */
.stats {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat__num span { color: var(--orange); }
.stat__label {
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head h2 {
  margin-top: .8rem;
  margin-bottom: 1rem;
}
.section-head h2 span { color: var(--orange); }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.55;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.service-card__img {
  aspect-ratio: 16/10;
  position: relative;
}
.service-card__img .badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange); color: #fff;
  padding: .35rem .7rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 3px;
}
.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-card h3 {
  margin-bottom: .6rem;
  font-size: 1.35rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.service-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: .9rem;
}
.service-card__price { font-weight: 700; color: var(--blue); }
.service-card__link {
  color: var(--orange); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: .82rem;
}

/* BEFORE / AFTER */
.beforeafter {
  background: var(--bg-mid);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba-images {
  display: grid; grid-template-columns: 1fr 1fr;
  aspect-ratio: 2/1; position: relative;
}
.ba-images::after {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px; background: #fff;
  transform: translateX(-50%);
}
.ba-images .label {
  position: absolute; top: .75rem;
  padding: .25rem .6rem;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px;
}
.ba-images .label--before { left: .75rem; }
.ba-images .label--after { right: .75rem; background: var(--orange); }
.ba-card__body {
  padding: 1.25rem 1.5rem;
}
.ba-card__body h4 {
  margin-bottom: .3rem;
}
.ba-card__body .meta {
  font-size: .85rem;
  color: var(--ink-muted);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
  position: relative;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  counter-increment: step;
  border-top: 4px solid var(--orange);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1rem; right: 1.5rem;
  font-family: var(--display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--orange);
  opacity: .25;
  line-height: 1;
}
.process-step h4 {
  margin-bottom: .6rem;
  font-size: 1.15rem;
}
.process-step p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0;
  line-height: 1.55;
}

/* REVIEWS */
.reviews {
  background: var(--blue-deep);
  color: #fff;
}
.reviews h2, .reviews .kicker, .reviews .section-head p { color: #fff; }
.reviews .section-head p { color: rgba(255,255,255,.8); }
.reviews h2 span { color: var(--orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem;
  border-radius: var(--radius);
}
.review__stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: .2em;
  margin-bottom: 1rem;
}
.review__quote {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.95);
}
.review__author {
  display: flex; align-items: center; gap: .8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: .95rem; }
.review__author small { color: rgba(255,255,255,.6); font-size: .8rem; }

.reviews__summary {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.reviews__summary strong {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--orange);
  font-weight: 700;
}

/* ZONES */
.zones {
  background: var(--bg-soft);
}
.zones__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.zones-list {
  columns: 2;
  column-gap: 2rem;
  font-size: .95rem;
}
.zones-list li {
  padding: .4rem 0;
  border-bottom: 1px dashed var(--rule);
  display: flex; align-items: center;
  gap: .5rem;
  break-inside: avoid;
}
.zones-list li::before {
  content: '📍';
  font-size: .85rem;
}
.zones__map {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FAQ */
.faq {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  padding: 1.4rem 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.faq-q:hover { color: var(--orange); }
.faq-q__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s;
  color: var(--ink-soft);
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 1.4rem;
}

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-block__grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-block h2 { color: #fff; margin: 0; }
.cta-block p { color: rgba(255,255,255,.9); margin: .5rem 0 0; font-size: 1.1rem; }

/* FOOTER */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-grid h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.footer-grid li { padding: .35rem 0; cursor: pointer; }
.footer-grid li:hover { color: var(--orange); }
.footer-about p { font-size: .92rem; line-height: 1.65; margin: 1rem 0; }
.footer-contact {
  padding: 0; list-style: none;
  font-size: .92rem;
}
.footer-contact li {
  padding: .4rem 0;
  display: flex; gap: .6rem; align-items: flex-start;
}
.footer-contact strong { color: #fff; display: block; font-weight: 600; }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { cursor: pointer; }
.footer-bottom a:hover { color: var(--orange); }

/* BREADCRUMB */
.crumb {
  background: var(--bg-soft);
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
}
.crumb a { cursor: pointer; }
.crumb a:hover { color: var(--orange); }
.crumb__sep { margin: 0 .5rem; color: var(--ink-faint); }
.crumb__current { color: var(--ink); font-weight: 600; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(232, 119, 34, 0.18), transparent 55%);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 60ch; margin-top: 1rem; }

/* SERVICE PAGE */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
}
.service-content h2 { margin: 2.5rem 0 1rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { color: var(--ink-soft); margin-bottom: 1em; }
.service-content ul { padding-left: 1.25rem; color: var(--ink-soft); }
.service-content ul li { margin-bottom: .5rem; }
.service-content strong { color: var(--ink); }
.service-fig { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin: 2rem 0; }

.service-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.service-check {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .92rem;
}
.service-check::before {
  content: '✓';
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--orange); color: #fff;
  border-radius: 50%; flex-shrink: 0;
  font-weight: 800; font-size: .8rem;
  margin-top: 2px;
}

.service-sidebar {
  position: sticky; top: 100px;
  align-self: start;
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h4 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.sidebar-card p { font-size: .9rem; margin-bottom: 1rem; color: var(--ink-soft); }
.sidebar-card--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  border-top-color: var(--orange);
}
.sidebar-card--blue h4 { color: #fff; }
.sidebar-card--blue p { color: rgba(255,255,255,.85); }

.sidebar-contact {
  list-style: none; padding: 0; margin: 0;
  font-size: .9rem;
}
.sidebar-contact li { padding: .5rem 0; }
.sidebar-contact strong { display: block; font-size: 1.2rem; color: inherit; }

.pricing-list {
  list-style: none; padding: 0; margin: 0;
  font-size: .9rem;
}
.pricing-list li {
  display: flex; justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px dashed var(--rule);
}
.pricing-list strong { color: var(--blue); font-weight: 700; }

/* DEVIS PAGE */
.devis-wrap {
  background: var(--bg-soft);
}
.devis-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.devis-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--orange);
}
.devis-card h2 { margin-bottom: .3rem; }
.devis-card > p { color: var(--ink-muted); margin-bottom: 2rem; }

.devis-info {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.info-block {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.info-block__icon {
  width: 44px; height: 44px;
  background: rgba(232, 119, 34, 0.12);
  color: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-block h4 { margin-bottom: .3rem; font-size: 1.05rem; }
.info-block p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* TWEAKS PANEL */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  width: 260px;
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  color: var(--ink-muted);
}
.tweak-row { margin-bottom: 1rem; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-row label {
  display: block; font-size: .8rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--ink-soft);
}

/* RESPONSIVE */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--rule);
  background: var(--bg);
  border-radius: 4px;
  cursor: pointer;
  align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--ink);
}
.nav-toggle:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter);
    gap: .5rem;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem 0; border-bottom: 1px solid var(--rule); width: 100%; }
  .nav a:last-child { border-bottom: 0; }
  .header__row { position: relative; }
  .hero__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .zones__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .devis-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-checks { grid-template-columns: 1fr; }
  .zones-list { columns: 1; }
  .stats__grid { grid-template-columns: 1fr; }
  .header__cta .btn:not(.btn--primary-mobile) { display: none; }
}
