:root {
  --bg:#14171d;
  --bg-soft:#181c24;
  --panel:#202530;
  --panel-2:#262c38;
  --text:#f3f5f8;
  --muted:#c2c9d4;
  --line:rgba(255,255,255,.10);
  --accent:#e77a29;
  --accent-2:#ff9f5a;
  --success:rgba(71,193,120,.12);
  --success-line:rgba(71,193,120,.35);
  --error:rgba(220,70,70,.12);
  --error-line:rgba(220,70,70,.35);
  --max:1180px;
  --radius:24px;
  --radius-sm:16px;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --transition:.25s ease;
}

/* =========================
   BASE
========================= */

*, *::before, *::after {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body {
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:linear-gradient(180deg,#151922 0%,#1a1f28 100%);
  color:var(--text);
  line-height:1.7;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  padding-top:97px;
}

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

a {
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

p {
  margin:0 0 1rem;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

ul {
  margin:0;
  padding-left:1.2rem;
}

.container {
  width:min(var(--max), calc(100% - 2rem));
  margin:0 auto;
}

.narrow {
  max-width:860px;
}

.center {
  text-align:center;
}

/* =========================
   TYPOGRAPHIE
========================= */

h1, h2, h3 {
  margin:0 0 1rem;
  color:#fff;
  letter-spacing:-.02em;
}

h1 {
  font-size:clamp(28px,3.6vw,36px);
  line-height:1.2;
  font-weight:600;
}

h2 {
  font-size:clamp(22px,2.8vw,28px);
  line-height:1.28;
  font-weight:600;
}

h3 {
  font-size:clamp(18px,2vw,22px);
  line-height:1.35;
  font-weight:600;
}

.page-hero h1 {
  font-size:clamp(28px,3.6vw,36px);
  line-height:1.2;
  margin-bottom:.5rem;
}

.eyebrow,
.offer-subtitle,
.panel-title,
.hero-eyebrow {
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#f4bc90;
  margin-bottom:1rem;
}

.lead {
  font-size:1.05rem;
  max-width:60ch;
}

/* =========================
   HEADER FIXE
========================= */

.site-header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
  background:rgba(20,23,29,.96);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}

.logo {
  display:flex;
  align-items:center;
  gap:.7rem;
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

.logo img {
  width:65px;
  height:65px;
  object-fit:contain;
  border-radius:0;
  border:none;
  filter:brightness(1.15) contrast(1.08);
}

.logo .logo-hitt {
  color:#fff;
}

.logo .logo-drone {
  color:var(--accent);
}

.logo span {
  color:var(--accent);
}

.footer-logo .logo-hitt {
  color:#fff;
}

.footer-logo .logo-drone {
  color:var(--accent);
}

.nav {
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}

.nav a {
  font-size:.95rem;
  color:#ffffff;
  opacity:1;
  font-weight:600;
}

.nav a.active,
.nav a:hover {
  color:var(--accent-2);
}

.menu-toggle {
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:1.4rem;
  cursor:pointer;
}

/* =========================
   BOUTONS
========================= */

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.4rem;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  font-weight:700;
  border:none;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.btn:hover {
  transform:translateY(-1px);
}

.btn-secondary,
.btn-outline {
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  backdrop-filter:blur(6px);
}

.btn-outline:hover {
  background:rgba(231,122,41,0.85);
  border-color:var(--accent);
  color:#fff;
}

.header-cta {
  padding:.8rem 1rem;
}

.full-width {
  width:100%;
}

/* =========================
   STRUCTURE
========================= */

.section {
  padding:4rem 0;
}

.section-reduced-top {
  padding-top:0rem;
}

.section.alt,
.section-muted {
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-tight-top {
  padding-top:2rem;
}

.hero {
  padding:6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(231,122,41,.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 24%);
}

.page-hero {
  width:min(var(--max), calc(100% - 2rem));
  margin:1.5rem auto 0;
  padding:3rem 0;
  background:
    radial-gradient(circle at top right, rgba(231,122,41,.12), transparent 28%),
    rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* =========================
   GRILLES
========================= */

.hero-grid,
.two-col,
.footer-grid,
.split-grid,
.why-grid,
.contact-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2rem;
  align-items:center;
}

.two-col-cards,
.solar-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.2rem;
  align-items:stretch;
}

.offer-grid,
.offers-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
  align-items:stretch;
}

.mini-grid,
.reason-grid,
.stack-cards {
  display:grid;
  gap:1rem;
}

.single-column {
  grid-template-columns:1fr;
}

/* =========================
   CARTES
========================= */

.card-glass,
.feature-card,
.feature-box,
.service-card,
.offer-card,
.mini-card,
.reason-card,
.contact-form,
.form-box,
.site-footer,
.alert,
.panel-card,
.info-card {
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card-glass,
.feature-card,
.feature-box,
.service-card,
.offer-card,
.mini-card,
.reason-card,
.panel-card,
.form-box,
.info-card {
  padding:1.8rem;
}

.feature-accent,
.feature-primary,
.highlight,
.offer-card.featured {
  background:linear-gradient(180deg, rgba(231,122,41,.18), rgba(255,255,255,.055));
  border-color:rgba(231,122,41,.38);
}

.service-card,
.avis-card,
.btn,
.offer-card {
  transition:var(--transition);
}

.service-card {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.service-card:hover,
.avis-card:hover,
.offer-card:hover {
  transform:translateY(-3px);
  border-color:rgba(231,122,41,.5);
}

.service-grid .service-card:nth-child(5) {
  grid-column:2;
}

.service-grid .service-card:nth-child(6) {
  grid-column:3;
}

.service-card::after {
  content:"Voir la prestation →";
  display:block;
  margin-top:1rem;
  color:var(--accent-2);
  font-weight:700;
  font-size:14px;
}

.service-card:hover::after {
  color:#fff;
}

.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:2rem;
  margin-bottom:2.5rem;
}

.section-head h2 {
  margin-bottom:.8rem;
}

.section-head p {
  max-width:55ch;
}

.hero-text,
.section-intro,
.inline-note,
.zone-text {
  color:var(--muted);
}

.hero-text {
  margin:1.2rem 0;
  max-width:55ch;
}

.section-intro {
  margin-bottom:1rem;
  max-width:55ch;
}

.hero-actions,
.cta-row {
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.5rem;
}

.hero-highlights {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
  margin-top:2.5rem;
}

.info-card {
  padding:1.2rem;
}

.info-card span {
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:.4rem;
}

.info-card strong {
  color:#fff;
  font-size:.95rem;
}

/* =========================
   LISTES / TAGS
========================= */

.check-list {
  list-style:none;
  padding:0;
  margin:0;
}

.check-list li {
  position:relative;
  padding-left:1.5rem;
  margin:.5rem 0;
  color:#dce2ea;
}

.check-list li::before {
  content:"•";
  position:absolute;
  left:0;
  color:var(--accent-2);
}

.bullet-list li {
  margin-bottom:.7rem;
  color:var(--muted);
}

.chips,
.zone-tags {
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1rem;
}

.chips span,
.zone-tags span {
  padding:.55rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  color:#e6ebf2;
}

.city-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.8rem;
  margin-top:1rem;
}

.city-grid span {
  padding:.7rem .8rem;
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  color:#e6ebf2;
  text-align:center;
}

/* =========================
   BLOCS TEXTE
========================= */

.seo-box {
  margin-top:1.25rem;
  padding:1.25rem 1.35rem;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
}

.seo-box p:last-child {
  margin-bottom:0;
}

.inline-note {
  font-size:.95rem;
}

.zone-text {
  margin-top:15px;
  font-size:14px;
  line-height:1.6;
}

/* =========================
   AVIS
========================= */

.avis-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:2rem;
  margin-top:24px;
}

.avis-card {
  background:#171b23;
  border:1px solid var(--line);
  border-radius:14px;
  padding:1.6rem;
}

.avis-card p {
  margin:10px 0 12px;
  color:#e1e5ec;
  line-height:1.6;
  font-size:14px;
}

.avis-card span {
  color:#b8c0cc;
  font-size:13px;
}

.stars {
  color:#ffb400;
  font-size:16px;
  letter-spacing:2px;
}

.avis-note {
  margin-top:18px;
  color:#aaa;
  font-size:13px;
}

/* =========================
   IMAGES STANDARD
========================= */

.before-after-images {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  margin-top:2rem;
  margin-bottom:40px;
}

.before-after-images figure {
  margin:0;
  display:flex;
  flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:#141923;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.before-after-images .image-wrap {
  height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#141923;
  padding:10px;
}

.before-after-images img {
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.before-after-images figcaption {
  text-align:center;
  padding:.9rem;
  font-size:14px;
  color:var(--muted);
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.before-after-facade {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  margin-top:2rem;
  margin-bottom:40px;
}

.before-after-facade figure {
  margin:0;
  display:flex;
  flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:#141923;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.before-after-facade img {
  width:100%;
  height:380px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.before-after-facade figcaption {
  text-align:center;
  padding:.9rem;
  font-size:14px;
  color:var(--muted);
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.method-images {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  margin-top:1rem;
  margin-bottom:40px;
}

.method-images figure {
  margin:0;
  display:flex;
  flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:#141923;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.method-images img {
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.method-images figcaption {
  text-align:center;
  padding:.9rem;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.img-drone {
  object-position:50% 30%;
}

/* =========================
   INSPECTION TOITURE / VISUELLE
========================= */

.inspection-images {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  margin-top:1.5rem;
  margin-bottom:40px;
}

.inspection-images figure {
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#141923;
  box-shadow:var(--shadow);
}

.inspection-images img {
  width:100%;
  height:260px;
  object-fit:cover;
}

.inspection-images figure:nth-child(2) img {
  object-position:50% 40%;
}

.inspection-images figcaption {
  padding:.8rem;
  font-size:13px;
  color:var(--muted);
  text-align:center;
  border-top:1px solid var(--line);
}

.visual-stack {
  display:flex;
  flex-direction:column;
  gap:2rem;
}

.inspection-block h3 {
  margin-bottom:.8rem;
}

.inspection-block.subtle {
  opacity:.95;
}

.visual-inspection-pair {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:1rem;
  align-items:start;
  margin-bottom:40px;
}

.visual-inspection-pair figure {
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#141923;
  box-shadow:var(--shadow);
}

.visual-inspection-pair img {
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.visual-inspection-pair figcaption {
  padding:.8rem;
  font-size:13px;
  color:var(--muted);
  text-align:center;
  border-top:1px solid var(--line);
}

.zoom-tuile-cassee img {
  object-position:50% 65%;
}

/* =========================
   IMAGES DANS CARTES DRONE
========================= */

.drone-card {
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#141923;
  box-shadow:var(--shadow);
  margin-bottom:40px;
}

.drone-card img {
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.drone-image-left img {
  object-position:50% 8%;
}

.drone-image-right img {
  object-position:center;
}

.drone-card figcaption {
  padding:.8rem;
  font-size:13px;
  color:var(--muted);
  text-align:center;
  border-top:1px solid var(--line);
}

/* =========================
   PHOTOGRAMMETRIE
========================= */

.photo-3d {
  margin-top:2rem;
  margin-bottom:40px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#141923;
  box-shadow:var(--shadow);
}

.photo-3d img {
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   BLOC SOLAIRE / THERMIQUE
========================= */

.thermal-block {
  overflow:hidden;
}

.thermal-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:center;
}

.thermal-image,
.thermal-content,
.thermal-actions {
  min-width:0;
}

.thermal-image img {
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
}

.thermal-impact {
  color:#fff;
  font-weight:600;
}

.thermal-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem;
  margin-top:1.5rem;
}

.thermal-note {
  color:var(--muted);
  font-size:14px;
}

.thermal-showcase {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  margin-top:1rem;
  margin-bottom:40px;
}

.thermal-showcase figure {
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#141923;
  box-shadow:var(--shadow);
}

.thermal-showcase img {
  width:100%;
  height:260px;
  object-fit:cover;
}

.thermal-showcase figcaption {
  padding:.8rem;
  font-size:13px;
  color:var(--muted);
  text-align:center;
  border-top:1px solid var(--line);
}

/* =========================
   FORMULAIRES
========================= */

.contact-form {
  padding:1.5rem;
}

.contact-form label {
  display:block;
  margin:.5rem 0;
  font-weight:600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width:100%;
  padding:.95rem 1rem;
  border-radius:16px;
  border:1px solid var(--line);
  background:#181d27;
  color:#fff;
  font:inherit;
  outline:none;
}

.contact-form textarea {
  min-height:140px;
  resize:vertical;
}

.form-row,
.field-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.hidden-field {
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  overflow:hidden;
}

.rgpd-check {
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  margin:1rem 0 1.25rem;
}

.rgpd-check input {
  width:auto;
  min-width:18px;
  margin-top:.25rem;
}

.alert,
.form-message {
  padding:1rem 1.2rem;
  margin-bottom:1rem;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
}

.alert.success,
.form-message.success {
  border-color:var(--success-line);
  background:var(--success);
}

.alert.error,
.form-message.error {
  border-color:var(--error-line);
  background:var(--error);
}

.contact-section {
  padding:3rem 0 5rem;
}

.contact-section .contact-grid {
  align-items:start;
}

.contact-grid h2 {
  margin-bottom:1rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  width:min(var(--max), calc(100% - 2rem));
  margin:3rem auto 2rem;
  padding:2rem 0;
  background:rgba(255,255,255,.045);
}

.footer-grid,
.footer-inner {
  padding:0 1.5rem;
}

.footer-grid h3 {
  font-size:1rem;
  margin-bottom:.6rem;
}

.footer-grid ul {
  list-style:none;
  padding:0;
}

.footer-grid li {
  margin:.45rem 0;
  color:var(--muted);
}

.footer-line {
  display:flex;
  align-items:center;
  gap:.6rem;
  margin:.45rem 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.footer-line a {
  color:#fff;
  text-decoration:none;
}

.footer-line a:hover {
  color:var(--accent);
}

.site-footer .icon {
  width:16px;
  height:16px;
  min-width:16px;
  fill:currentColor;
  opacity:.8;
}

.footer-bottom {
  border-top:1px solid var(--line);
  margin-top:1.5rem;
  padding:1rem 2rem 0;
}

.footer-bottom p {
  font-size:13px;
  color:#aaa;
  line-height:1.6;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.legal-note {
  max-width:900px;
  margin:20px auto 0;
  padding:15px 20px 0;
  font-size:13px;
  color:#aaa;
  text-align:center;
  line-height:1.6;
  border-top:1px solid rgba(255,255,255,.12);
}

.legal-note p {
  margin:0;
  color:#aaa;
}

/* =========================
   HERO UNIFIE
========================= */

.hero-page {
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  padding:6rem 0 4rem;
  background-size:cover;
  background-repeat:no-repeat;
}

.hero-page .hero-overlay {
  position:absolute;
  inset:0;
}

.hero-page .hero-content {
  position:relative;
  z-index:2;
  max-width:620px;
}

.hero-page h1 {
  font-size:clamp(32px,4.8vw,42px);
  line-height:1.12;
  margin-bottom:1.25rem;
  text-shadow:0 4px 20px rgba(0,0,0,.5);
}

.hero-page .hero-text {
  margin-top:1rem;
  max-width:58ch;
  color:var(--muted);
  text-shadow:0 2px 12px rgba(0,0,0,.4);
}

.hero-page .hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.5rem;
}

.hero-page .hero-trust {
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.8rem;
  font-size:14px;
  color:#e0e6ef;
}

/* =========================
   HERO PAR PAGE
========================= */

.hero-home {
  background-image:url("../images/hero-drone-toiture.webp");
  background-position:50% 25%;
  filter:brightness(1.25) contrast(1.1);
}

.hero-home .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.50) 0%, rgba(10,12,16,.24) 40%, rgba(10,12,16,.08) 70%, rgba(10,12,16,0) 100%);
}

.hero-toiture {
  background-image:url("../images/hero-toiture-perche.webp");
  background-position:62% 24%;
}

.hero-toiture .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.68) 0%, rgba(10,12,16,.40) 45%, rgba(10,12,16,.22) 100%);
}

.hero-facade {
  background-image:url("../images/facade-hero.webp");
  background-position:60% center;
}

.hero-facade .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.82) 0%, rgba(10,12,16,.55) 35%, rgba(10,12,16,.25) 65%, rgba(10,12,16,.10) 100%);
}

.hero-solaire {
  background-image:url("../images/hero-solaire.webp");
  background-position:65% center;
}

.hero-solaire .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.80) 0%, rgba(10,12,16,.48) 38%, rgba(10,12,16,.18) 100%);
}

.hero-drone {
  background-image:url("../images/hero-drone.webp");
  background-position:72% 25%;
}

.hero-drone .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.88) 0%, rgba(10,12,16,.60) 38%, rgba(10,12,16,.22) 68%, rgba(10,12,16,.06) 100%);
}

.hero-inspection-visuelle {
  background-image:url("../images/hero-inspection-visuelle.webp");
  background-position:60% center;
}

.hero-inspection-visuelle .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.82) 0%, rgba(10,12,16,.58) 38%, rgba(10,12,16,.22) 70%, rgba(10,12,16,.06) 100%);
}

.hero-inspection-thermique {
  background-image:url("../images/hero-inspection-thermique.webp");
  background-position:65% 35%;
}

.hero-inspection-thermique .hero-overlay {
  background:linear-gradient(90deg, rgba(10,12,16,.86) 0%, rgba(10,12,16,.62) 38%, rgba(10,12,16,.28) 70%, rgba(10,12,16,.08) 100%);
}

/* =========================
   CGV
========================= */

.legal-content h2 {
  margin-top:2rem;
  font-size:22px;
}

.legal-content p {
  margin-bottom:1rem;
}

.legal-content hr {
  border:0;
  border-top:1px solid var(--line);
  margin:2rem 0;
}

.legal-content a {
  color:var(--accent-2);
}

/* =========================
   BLOC TELEPILOTE ACCUEIL
========================= */

.pilot-section {
  padding-top:4rem;
  padding-bottom:4rem;
}

.pilot-box {
  max-width:900px;
  margin:0 auto;
  text-align:center;
  padding:2.2rem;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(231,122,41,.14), rgba(255,255,255,.055));
  border:1px solid rgba(231,122,41,.32);
  box-shadow:var(--shadow);
}

.pilot-box h2 {
  margin-bottom:1rem;
}

.pilot-box .lead {
  margin-left:auto;
  margin-right:auto;
  margin-bottom:1rem;
  color:var(--text);
}

.pilot-box p {
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.pilot-points {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.8rem;
  margin-top:1.5rem;
}

.pilot-points span {
  padding:.55rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:#e6ebf2;
  font-size:14px;
}

/* =========================
   FAQ
========================= */

.faq-clean {
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  margin-top:2rem;
}

.faq-row {
  border-bottom:1px solid var(--line);
  padding-bottom:1rem;
}

.faq-row h3 {
  margin-bottom:.4rem;
  font-size:17px;
  color:#fff;
}

.faq-row p {
  margin:0;
  font-size:15px;
  color:var(--muted);
}

/* =========================
   RESEAU PILOTES DE DRONE
========================= */

.trust-section {
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.trust-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:2rem;
  align-items:center;
}

.trust-text {
  text-align:left;
}

.trust-text .section-intro {
  max-width:560px;
}

.trust-side {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1.2rem;
}

.trust-logo {
  display:flex;
  justify-content:center;
}

.trust-logo img {
  max-width:170px;
  width:100%;
  height:auto;
  background:#fff;
  padding:12px;
  border-radius:14px;
  opacity:.95;
  transition:.3s ease;
}

.trust-logo img:hover {
  opacity:1;
  transform:scale(1.04);
}

/* =========================
   RESPONSIVE TABLETTE
========================= */

@media (max-width:980px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .footer-inner,
  .split-grid,
  .why-grid,
  .contact-grid,
  .section-head,
  .service-grid,
  .offer-grid,
  .offers-grid,
  .two-col-cards,
  .solar-grid,
  .hero-highlights,
  .before-after-images,
  .before-after-facade,
  .method-images,
  .inspection-images,
  .visual-inspection-pair,
  .thermal-showcase,
  .thermal-grid,
  .trust-grid {
    grid-template-columns:1fr;
  }

  .trust-grid,
  .trust-text {
    text-align:center;
  }

  .trust-text .section-intro {
    margin-left:auto;
    margin-right:auto;
  }

  .service-grid .service-card:nth-child(5),
  .service-grid .service-card:nth-child(6) {
    grid-column:auto;
  }

  .menu-toggle {
    display:block;
  }

  .nav {
    display:none;
    position:fixed;
    top:82px;
    left:1rem;
    right:1rem;
    padding:1rem;
    background:#181d27;
    border:1px solid var(--line);
    border-radius:20px;
    flex-direction:column;
    align-items:flex-start;
    max-height:calc(100vh - 100px);
    overflow-y:auto;
    z-index:100000;
  }

  .nav.open {
    display:flex;
  }

  .form-row,
  .field-row,
  .city-grid {
    grid-template-columns:1fr;
  }

  .section-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .drone-card img {
    height:260px;
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width:768px) {
  body {
    padding-top:82px;
  }

  h1 { font-size:clamp(26px,7vw,32px); }
  h2 { font-size:clamp(21px,5.5vw,26px); }
  h3 { font-size:clamp(17px,4.5vw,20px); }

  .container {
    width:min(var(--max), calc(100% - 1.2rem));
  }

  .site-header {
    height:82px;
  }

  .header-inner {
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:.6rem;
    height:82px;
    padding:.4rem 0;
  }

  .logo {
    min-width:0;
    gap:.5rem;
  }

  .logo img {
    width:54px;
    height:54px;
    object-fit:contain;
    border-radius:0;
    border:none;
    flex-shrink:0;
  }

  .logo span {
    font-size:1rem;
    line-height:1;
    white-space:nowrap;
  }

  .header-cta {
    display:none;
  }

  .menu-toggle {
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    padding:0;
    margin:0;
    font-size:1.8rem;
    line-height:1;
    grid-column:3;
  }

  .page-hero,
  .site-footer {
    width:min(var(--max), calc(100% - 1.2rem));
  }

  .card-glass,
  .feature-card,
  .feature-box,
  .service-card,
  .offer-card,
  .mini-card,
  .reason-card,
  .panel-card,
  .form-box,
  .info-card,
  .contact-form {
    padding:1.2rem;
  }

  .section {
    padding:3.5rem 0;
  }

  .hero {
    padding:4rem 0 2.5rem;
  }

  .hero-page {
    min-height:520px;
    padding:4rem 0 2.5rem;
  }

  .hero-home {
    background-position:50% 25%;
  }

  .hero-toiture {
    background-position:68% 18%;
  }

  .hero-facade {
    background-position:70% center;
  }

  .hero-solaire {
    background-position:72% center;
  }

  .hero-drone {
    background-position:70% center;
  }

  .hero-page .hero-trust {
    flex-direction:column;
    gap:.5rem;
  }

  .hero-page h1 {
    font-size:clamp(30px,8vw,36px);
  }

  .section-head {
    margin-bottom:2rem;
  }

  .before-after-images,
  .before-after-facade,
  .method-images,
  .inspection-images,
  .visual-inspection-pair,
  .thermal-showcase,
  .photo-3d,
  .drone-card {
    margin-bottom:30px;
  }

  .before-after-images .image-wrap {
    height:260px;
  }

  .before-after-facade img {
    height:260px;
  }

  .method-images img {
    height:220px;
  }

  .drone-card img,
  .inspection-images img,
  .thermal-showcase img,
  .visual-inspection-pair img {
    height:220px;
  }

  .service-card::after {
    font-size:13px;
  }

  .thermal-block,
  .thermal-grid,
  .thermal-image,
  .thermal-content,
  .thermal-actions {
    width:100%;
    max-width:100%;
    min-width:0;
    height:auto;
    max-height:none;
    overflow:visible;
  }

  .thermal-grid {
    display:grid;
    grid-template-columns:1fr;
    gap:1.2rem;
  }

  .thermal-image img {
    height:auto;
  }

  .thermal-actions {
    flex-direction:column;
    align-items:stretch;
    gap:.8rem;
  }

  .thermal-actions .btn,
  .thermal-note {
    width:100%;
    max-width:100%;
    text-align:center;
  }
}