/* =========================================================
   HITEC SRL — Site vitrine
   Refonte 2025 — design system
   ========================================================= */

:root {
  --green:        #2f9a38;   /* accent (boutons, logo, petits détails) */
  --green-dark:   #237a2c;
  --green-ink:    #2c6e33;   /* accent texte discret (mots-clés de titres) */
  --green-soft:   #eaf1ea;   /* fond des pastilles d'icônes, très léger */
  --ink:          #222a31;
  --slate:        #48525b;
  --muted:        #79838c;
  --line:         #e1e5e9;
  --bg:           #ffffff;
  --bg-soft:      #f4f5f6;
  --dark:         #2b333b;   /* gris ardoise (sections foncées) */
  --dark-2:       #39424b;
  --white:        #ffffff;
  --shadow-sm:    0 1px 3px rgba(30,37,43,.07);
  --shadow-md:    0 4px 16px rgba(30,37,43,.09);
  --shadow-lg:    0 16px 40px rgba(30,37,43,.14);
  --radius:       8px;
  --radius-lg:    12px;
  --maxw:         1180px;
  --header-h:     74px;
  --font-head:    'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 44px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate);
  background: #eef1f3;
  border: 1px solid var(--line);
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: inline-block; width: 7px; height: 7px; background: var(--green); border-radius: 2px; margin-right: 8px; vertical-align: middle; transform: translateY(-1px); }

.section-head { max-width: 640px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -.5px; }
.section-title span { color: var(--green-ink); }
.section-sub { color: var(--slate); font-size: 1.06rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47,162,54,.28); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,162,54,.34); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 900;
  display: flex; align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Logo lockup */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { height: 42px; width: auto; flex: none; }
.logo__img { height: 54px; width: auto; display: block; }
@media (max-width: 620px) { .logo__img { height: 44px; } }
.logo__text { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; letter-spacing: .5px; color: var(--ink); line-height: 1; white-space: nowrap; }
.logo__text > span:not(.logo__sub) { color: var(--green); }
.logo__sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .34em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--slate); position: relative; padding: 4px 0; transition: color .18s ease; white-space: nowrap; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--green); transition: width .22s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Language switch */
.lang { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.lang button { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .04em; padding: 6px 12px; border-radius: 100px; color: var(--muted); transition: all .18s ease; }
.lang button.active { background: var(--ink); color: #fff; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); position: relative; }
.burger span, .burger span::before, .burger span::after { content: ''; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink); transform: translate(-50%,-50%); transition: .25s ease; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: translate(-50%,-50%) rotate(45deg); }
.burger.open span::after { top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h);
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(24,30,35,.92) 0%, rgba(24,30,35,.72) 45%, rgba(24,30,35,.35) 100%); }
.hero .container { padding: 60px 0; }
.hero__inner { max-width: 660px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px); padding: 8px 16px; border-radius: 100px; font-size: .84rem; font-weight: 500; margin-bottom: 24px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,162,54,.3); }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.8vw, 3.3rem); letter-spacing: -.5px; }
.hero h1 span { color: #fff; border-bottom: 4px solid var(--green); padding-bottom: 2px; }
.hero__lead { font-size: 1.16rem; color: rgba(255,255,255,.86); margin: 22px 0 34px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 22px; margin-top: 42px; }
.hero__trust > div { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero__trust svg { width: 21px; height: 21px; color: var(--green); flex: none; margin-top: 2px; }

/* ---------- Certifications strip ---------- */
.certs { background: var(--dark); color: #fff; padding: 34px 0; }
.certs .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.cert { display: flex; align-items: center; gap: 14px; }
.cert__ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(47,162,54,.16); display: grid; place-items: center; flex: none; }
.cert__ico svg { width: 24px; height: 24px; color: var(--green); }
.cert__t { font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.cert__s { font-size: .8rem; color: rgba(255,255,255,.6); }
.certs__divider { width: 1px; height: 34px; background: rgba(255,255,255,.14); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__media::before { content: ''; position: absolute; right: -18px; bottom: -18px; width: 60%; height: 60%; border: 3px solid var(--green); border-radius: var(--radius-lg); z-index: -1; }
.about__stats { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.about__stat .n { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--green); }
.about__stat .l { font-size: .9rem; color: var(--slate); }
.about p { color: var(--slate); margin-top: 16px; font-size: 1.04rem; }
.about ul.checks { margin-top: 22px; display: grid; gap: 12px; }
.about ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate); }
.about ul.checks svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card.is-featured { border-color: var(--green); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card__media--ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--bg-soft), #e7ebee); }
.service-card__media--ph svg { width: 56px; height: 56px; color: var(--muted); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__tag { position: absolute; top: 12px; left: 12px; font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: rgba(255,255,255,.94); padding: 5px 11px; border-radius: 4px; box-shadow: var(--shadow-sm); }
.service-card__tag::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 2px; margin-right: 6px; vertical-align: middle; transform: translateY(-1px); }
.service-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.service-card p { color: var(--slate); font-size: .95rem; }
.service-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 15px; align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--green-dark); }
.service-card a svg { width: 16px; height: 16px; transition: transform .18s ease; }
.service-card a:hover svg { transform: translateX(3px); }

/* ---------- Qualities ---------- */
.quality__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.quality-card { text-align: center; padding: 32px 22px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.quality-card__ico { width: 76px; height: 76px; margin: 0 auto 14px; display: grid; place-items: center; }
.quality-card__ico svg { width: 30px; height: 30px; color: var(--green-dark); }
.quality-card__ico img { width: 72px; height: 72px; object-fit: contain; }
.quality-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.quality-card p { color: var(--slate); font-size: .92rem; }

/* ---------- Devis CTA banner ---------- */
.devis-banner { background: linear-gradient(120deg, #29323c 0%, #414c58 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-md); border-left: 4px solid var(--green); }
.devis-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.devis-banner p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 520px; }

/* ---------- Devis form ---------- */
.devis__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.devis__aside p { color: var(--slate); margin-top: 16px; }
.devis__aside .contact-list { margin-top: 28px; display: grid; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: center; }
.contact-row__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; flex: none; }
.contact-row__ico svg { width: 22px; height: 22px; color: var(--green-dark); }
.contact-row .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-row .v { font-weight: 600; color: var(--ink); }
.contact-row .v:hover { color: var(--green-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); min-width: 0; }
.devis__grid, .devis__aside, .field { min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .88rem; margin-bottom: 7px; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; min-height: 118px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: 12px; font-size: .92rem; font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--green-soft); color: var(--green-dark); }
.form-status.err { background: #fdecec; color: #c0392b; }

/* ---------- Gallery ---------- */
.gallery-hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 30px; text-align: center; }
.gallery-hero .eyebrow { margin-inline: auto; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 40px; }
.filters button { font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line); color: var(--slate); background: #fff; transition: all .18s ease; }
.filters button:hover { border-color: var(--green); color: var(--green-dark); }
.filters button.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid-gallery { columns: 4; column-gap: 16px; }
.grid-gallery figure { break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); }
.grid-gallery img { width: 100%; height: auto; transition: transform .4s ease; }
.grid-gallery figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,42,48,.5), transparent 55%); opacity: 0; transition: opacity .25s ease; }
.grid-gallery figure:hover img { transform: scale(1.06); }
.grid-gallery figure:hover::after { opacity: 1; }
.grid-gallery figure .cat-tag { position: absolute; left: 12px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .78rem; opacity: 0; transform: translateY(6px); transition: .25s ease; text-transform: capitalize; }
.grid-gallery figure:hover .cat-tag { opacity: 1; transform: translateY(0); }
.grid-gallery figure.hide { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(20,24,28,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; display: grid; place-items: center; transition: background .18s ease; }
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav.prev { left: 22px; }
.lightbox__nav.next { right: 22px; }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #fff; padding: 66px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .logo__text { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.6); margin-top: 16px; max-width: 320px; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: rgba(255,255,255,.62); font-size: .94rem; transition: color .18s ease; }
.footer__col a:hover { color: var(--green); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 48px; height: 48px; display: grid; place-items: center; transition: transform .18s ease; }
.footer__social a:hover { transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__social img { width: 46px; height: 46px; object-fit: contain; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 22px; }
.footer__bottom p { color: rgba(255,255,255,.5); font-size: .86rem; }
.footer__bottom a { color: rgba(255,255,255,.75); }
.footer__bottom a:hover { color: var(--green); }

/* Floating contact buttons */
.fab-stack { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 850; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 6px 18px rgba(30,37,43,.28); transition: transform .18s ease, box-shadow .18s ease; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(30,37,43,.34); }
.fab svg { width: 27px; height: 27px; }
.fab--call { background: var(--green); }

/* Scroll to top (petit, au-dessus des boutons de contact) */
.to-top { position: fixed; right: 28px; bottom: 88px; width: 38px; height: 38px; border-radius: 50%; background: rgba(43,51,59,.92); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; z-index: 851; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

@media (max-width: 620px) {
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 25px; height: 25px; }
  .to-top { bottom: 82px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Page légale */
.legal { max-width: 820px; margin: 0 auto; padding-top: calc(var(--header-h) + 46px); padding-bottom: 60px; }
.legal h1 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.legal h2 { font-size: 1.18rem; margin: 30px 0 10px; color: var(--ink); }
.legal p { color: var(--slate); font-size: .98rem; line-height: 1.75; margin-bottom: 8px; }
.legal ul { margin: 8px 0 12px 20px; list-style: disc; }
.legal li { color: var(--slate); font-size: .98rem; line-height: 1.7; margin-bottom: 5px; }
.legal a { color: var(--green-dark); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .logo__sub { display: none; }
  .nav__links { gap: 22px; }
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .grid-gallery { columns: 3; }
}

@media (max-width: 860px) {
  .nav__links { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 24px 24px; box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s ease; border-bottom: 1px solid var(--line); }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav__links a::after { display: none; }
  .burger { display: block; }
  .nav { gap: 12px; }
  .about__grid, .devis__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section { padding: 50px 0; }
  .services__grid, .quality__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .grid-gallery { columns: 2; column-gap: 12px; }
  .devis-banner { padding: 34px 26px; }
  .certs .container { flex-direction: column; align-items: flex-start; width: fit-content; margin-inline: auto; gap: 18px; }
  .certs__divider { display: none; }
  .hero__trust { gap: 14px 22px; }
  .nav__actions .btn { display: none; }
  .logo__mark { height: 30px; }
  .logo__sub { display: none; }
  .logo__text { font-size: 1.05rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr; gap: 13px; }
  .hero__trust > div { font-size: .95rem; }
}

@media (max-width: 340px) {
  .grid-gallery { columns: 1; }
}
