/* ==========================================================================
   DRONE VISIONIC — feuille de style
   Palette : noir profond + halo bleu + chromé (issue du logo de marque)
   Display : Rajdhani (technique / HUD) — Body : Inter — Mono : JetBrains Mono
   ========================================================================== */

:root{
  --black:        #050608;
  --surface:      #0c0f14;
  --surface-2:    #12161d;
  --border:       #1d232e;

  --blue:         #1e6fff;
  --blue-bright:  #4fa8ff;
  --blue-deep:    #0b3d91;
  --blue-glow:    rgba(30, 111, 255, 0.35);

  --chrome-1:     #f2f5f8;
  --chrome-2:     #aab2c0;
  --chrome-3:     #6b7385;

  --text:         #e7ebf1;
  --text-muted:   #8b93a3;
  --text-faint:   #545c6c;

  --radius:       2px;

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a{ color: inherit; text-decoration: none; }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

::selection{ background: var(--blue-deep); color: #fff; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior: auto; }
}

/* ---------- Typography ---------- */

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-bright);
  display: inline-block;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}

.chrome-text{
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 55%, var(--chrome-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blue-text{
  background: linear-gradient(180deg, var(--blue-bright) 0%, #86c2ff 45%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1{ font-size: clamp(40px, 6.2vw, 84px); }
h2{ font-size: clamp(28px, 4vw, 44px); }
h3{ font-size: 20px; }

p{ margin: 0; }

.lede{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 46ch;
}

.section-head{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 52px;
}

/* ---------- Buttons ---------- */

.btn{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary{
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(30,111,255,0);
}
.btn-primary:hover{
  background: var(--blue-bright);
  box-shadow: 0 0 32px var(--blue-glow);
  transform: translateY(-1px);
}
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: var(--blue);
  color: var(--blue-bright);
}

/* ---------- Nav ---------- */

/* Temporary "site under construction" banner + fixed header wrapper */
.site-header-fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

#services, #flotte, #mini-4-pro, #matrice-4td{ scroll-margin-top: 90px; }
.site-banner{
  background: var(--blue-deep);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 10px 20px;
}
.site-banner span{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 600px){
  .site-banner span{ font-size: 11px; }
}

.nav{
  position: static;
  background: rgba(5,6,8,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img{
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a{
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
}
.nav-item{ display: flex; align-items: center; gap: 8px; }
.nav-subtoggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(30,111,255,0.1);
  border: 1px solid rgba(30,111,255,0.4);
  border-radius: 50%;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nav-subtoggle svg{ width: 16px; height: 16px; pointer-events: none; }
.nav-subtoggle:hover{ background: rgba(30,111,255,0.18); border-color: var(--blue); }
.nav-subtoggle.open{ transform: rotate(180deg); background: rgba(30,111,255,0.22); border-color: var(--blue); }
.nav-submenu{
  display: none;
  flex-direction: column;
  gap: 14px;
  padding-left: 4px;
  margin-top: -8px;
}
.nav-submenu a{ font-size: 12px; color: var(--text-muted); }
.nav-submenu a:hover{ color: var(--text); }
.nav-submenu.open{ display: flex; }

.nav-cta{ display: flex; align-items: center; gap: 24px; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-toggle{ display: block; }
  .nav-cta .btn-primary{ display: none; }
  .nav-subtoggle{ display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- Aperture motif (signature element) ---------- */

.aperture{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero{
  position: relative;
  padding: 206px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 92vh;
}

.hero-glow{
  position: absolute;
  top: 50%; left: 50%;
  width: 1100px; height: 1100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--blue-glow) 0%, rgba(30,111,255,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-planet-circle{
  position: absolute;
  top: 50%; right: 128px;
  width: 437px; height: 437px;
  transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  background: #050608;
  cursor: pointer;
}
.hero-planet-circle canvas{ display: block; width: 100%; height: 100%; }
.hero-planet-circle .planet-layer{ position: absolute; inset: 0; opacity: 0; transition: opacity 480ms ease; }
.hero-planet-circle .planet-layer.visible{ opacity: 1; }
.hero-planet-circle .planet-hint{
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none; opacity: 1; transition: opacity .5s ease; z-index: 2;
}
.hero-planet-circle .planet-hint.hidden{ opacity: 0; }
.hero-planet-circle .planet-hint span{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.4); padding: 5px 12px; border-radius: 20px;
}
.hero-planet-circle .planet-pulse{
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  animation: planetPulse 1.8s ease-out infinite;
  background: rgba(0,0,0,0.25);
}
@keyframes planetPulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
  70%{ box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.hero-planet-circle .planet-back{
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: none; align-items: center; gap: 6px;
  background: rgba(5,6,8,0.72); border: 1px solid var(--border); color: var(--text);
  padding: 7px 14px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px;
  cursor: pointer; z-index: 2; backdrop-filter: blur(6px);
}
.hero-planet-circle .planet-back.show{ display: flex; }

.hero-photo-circle{
  position: absolute;
  top: 50%; right: 128px;
  width: 437px; height: 437px;
  transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  background-image: url('assets/hero-toit-thermique.jpg');
  background-size: cover;
  background-position: center;
}
@media (max-width: 900px){
  .hero-photo-circle{ display: none; }
}

.hero-rings{
  position: absolute;
  top: 50%; right: 116px;
  width: 460px; height: 460px;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-rings svg{ width: 100%; height: 100%; animation: spin 90s linear infinite; }
@keyframes spin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

.hero-content{ position: relative; z-index: 1; width: 100%; pointer-events: none; }
.hero-content a, .hero-content button{ pointer-events: auto; }
.hero-content-inner{ max-width: 560px; }
.hero-content .eyebrow{ margin-bottom: 22px; }
.hero-content h1{ margin-bottom: 24px; }
.hero-content .lede{ max-width: 54ch; margin-bottom: 40px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.telemetry{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.telemetry span{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

/* ---------- Sections ---------- */

section{ position: relative; padding: 110px 0; }
.section-alt{ background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Services grid */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card{
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background-color .25s ease;
}
.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,0.5) 0%, rgba(5,6,8,0.86) 62%, rgba(5,6,8,0.97) 100%);
  transition: opacity .25s ease;
}
.service-card:hover::before{ opacity: 0.82; }
.service-card > *{ position: relative; z-index: 1; }
.service-card:hover{ background-color: var(--surface-2); }
.service-icon{ width: 46px; height: 46px; }
.service-card h3{ font-weight: 600; }
.service-card p{ color: var(--text-muted); font-size: 14.5px; }
.service-num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

@media (max-width: 900px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* Fleet */

.fleet-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fleet-card{
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  background: linear-gradient(160deg, rgba(30,111,255,0.06), transparent 60%);
}
.fleet-tag{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.fleet-card h3{ font-size: 24px; margin-bottom: 14px; }
.fleet-card p{ color: var(--text-muted); font-size: 14.5px; margin-bottom: 22px; }
.fleet-specs{ display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-specs span{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
}

@media (max-width: 760px){
  .fleet-grid{ grid-template-columns: 1fr; }
}

/* Secteurs */

.sectors{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sector-card{
  border-top: 2px solid var(--blue);
  padding-top: 20px;
}
.sector-card h3{ font-size: 16px; margin-bottom: 10px; text-transform: none; }
.sector-card p{ color: var(--text-muted); font-size: 14px; }

@media (max-width: 900px){
  .sectors{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px){
  .sectors{ grid-template-columns: 1fr; }
}

/* Service card as link */
a.service-card{ cursor: pointer; }
a.service-card:hover h3{ color: var(--blue-bright); }

/* ---------- Service detail pages ---------- */

.service-layout{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.service-body h2{ font-size: 22px; text-transform: none; margin: 44px 0 16px; }
.service-body h2:first-child{ margin-top: 0; }
.service-body p{ color: var(--text-muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }
.service-body p a{ color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }
.service-body p a:hover{ color: var(--text); }

.thermo-example{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 44px; }
.thermo-example figure{ margin: 0; }
.thermo-example img{ width: 100%; border-radius: var(--radius); border: 1px solid var(--border); display: block; cursor: zoom-in; transition: border-color .2s ease; }
.thermo-example img:hover{ border-color: var(--blue-bright); }
.thermo-example figcaption{ margin-top: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); text-align: center; }
.thermo-example-caption{ margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); text-align: center; }

.planet-standalone{ display: flex; justify-content: center; margin: 32px 0 0; }
.planet-standalone .hero-planet-circle{ position: relative; top: auto; right: auto; width: 420px; height: 420px; transform: none; }
@media (max-width: 620px){
  .planet-standalone .hero-planet-circle{ width: 280px; height: 280px; }
}

.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,3,5,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox img{ max-width: 100%; max-height: 100%; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close{
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--text);
  width: 40px; height: 40px; border-radius: 50%; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.15); }
@media (max-width: 620px){
  .thermo-example{ grid-template-columns: 1fr; }
}

.included-list{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.included-list li{ display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.included-list li svg{ width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-bright); margin-top: 2px; }

.service-layout aside{
  position: sticky;
  top: 130px;
}
.price-card{
  border: 1px solid var(--border);
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(30,111,255,0.06), transparent 60%);
}
.price-card .eyebrow{ margin-bottom: 18px; }
.price-value{ font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--text); line-height: 1.15; margin-bottom: 10px; text-transform: uppercase; }
.price-value small{ display: block; font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--text-muted); text-transform: none; letter-spacing: 0; margin-top: 6px; }
.price-note{ color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 26px; }
.price-card .btn{ width: 100%; justify-content: center; margin-bottom: 12px; }

.service-nav{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.service-nav a{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  border: 1px solid var(--border); padding: 9px 14px; color: var(--text-muted);
  transition: color .2s ease, border-color .2s ease;
}
.service-nav a:hover, .service-nav a.active{ color: var(--blue-bright); border-color: var(--blue-bright); }

@media (max-width: 860px){
  .service-layout{ grid-template-columns: 1fr; }
  .service-layout aside{ position: static; }
}

/* Trust strip */

/* CTA banner */

.cta-banner{
  text-align: center;
  padding: 130px 0;
  position: relative;
}
.cta-banner h2{ margin-bottom: 24px; }
.cta-banner .lede{ margin: 0 auto 40px; text-align: center; }
.cta-banner .hero-actions{ justify-content: center; margin-bottom: 0; }

/* Footer */

footer{
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; }
.footer-brand img{ height: 44px; width: 44px; }
.footer-brand span{ font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; font-size: 34px; line-height: 1; }
.footer-col h3{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a, .footer-col p{
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col a:hover{ color: var(--blue-bright); }
.footer-bottom{
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ---------- Contact page ---------- */

.page-hero{
  padding: 206px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-layout{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card{
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .icon{
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--blue-bright);
  margin-top: 3px;
}
.contact-info-card h3{ font-size: 15px; text-transform: none; margin-bottom: 6px; }
.contact-info-card a, .contact-info-card p{ color: var(--text-muted); font-size: 14.5px; }
.contact-info-card a:hover{ color: var(--blue-bright); }

.founder-note{
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 30px;
}
.founder-note p{ color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.founder-note strong{ color: var(--text); }

form{ display: flex; flex-direction: column; gap: 20px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
  display: block;
}
input, select, textarea{
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
input:focus, select:focus, textarea:focus{ border-color: var(--blue); }
textarea{ resize: vertical; min-height: 130px; }
select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b93a3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-note{ font-size: 13px; color: var(--text-faint); }
.form-success{
  display: none;
  border: 1px solid var(--blue);
  background: rgba(30,111,255,0.08);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
}
.form-success.visible{ display: block; }

@media (max-width: 900px){
  .contact-layout{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .form-row{ grid-template-columns: 1fr; }
}

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

@media (max-width: 700px){
  .hero{ padding: 178px 0 80px; min-height: auto; }
  section{ padding: 76px 0; }
  .cta-banner{ padding: 90px 0; }
}
