/* ===== VARIABLES ===== */
:root {
  --dark:    #111318;
  --dark2:   #1c1f27;
  --dark3:   #252932;
  --orange:  #f97316;
  --orange2: #fb923c;
  --orange3: #ea6000;
  --white:   #ffffff;
  --off:     #f5f6f8;
  --gray:    #6b7280;
  --gray2:   #9ca3af;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(0,0,0,0.08);
  --font:    'Barlow', sans-serif;
  --font-c:  'Barlow Condensed', sans-serif;
  --tr:      0.25s ease;
  --r:       6px;
  --sh:      0 4px 20px rgba(0,0,0,0.18);
  --sh2:     0 12px 40px rgba(0,0,0,0.22);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== UTILS ===== */
.hl { color: var(--orange); }
.hl-bar { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 12px 0 20px; }
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 16px;
}
.tag.light { color: var(--orange); border-color: rgba(249,115,22,0.4); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 96px 32px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: var(--r);
  transition: var(--tr); border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange3); border-color: var(--orange3); transform: translateY(-1px); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-primary.small { padding: 9px 18px; font-size: 13px; margin-top: 16px; }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid rgba(255,255,255,0.2); transition: var(--tr);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); color: var(--orange);
  font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: var(--r);
  border: 1px solid rgba(249,115,22,0.25); transition: var(--tr);
  white-space: nowrap; flex-shrink: 0;
}
.btn-call svg { width: 16px; height: 16px; }
.btn-call:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-call.mobile { width: 100%; justify-content: center; margin-top: 8px; padding: 13px; font-size: 15px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17,19,24,0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px; height: 68px;
  display: flex; align-items: center; gap: 36px;
}
.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-c); font-size: 22px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.logo-text { display: flex; flex-direction: column; gap: 0; }
.logo-name {
  font-family: var(--font-c); font-size: 17px; font-weight: 900;
  letter-spacing: 3px; color: var(--white); line-height: 1;
}
.logo-sub {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); line-height: 1;
}

nav { flex: 1; }
nav ul { display: flex; gap: 32px; justify-content: center; }
nav a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6); transition: color var(--tr);
  position: relative; padding-bottom: 3px;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width var(--tr); border-radius: 1px;
}
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; background: var(--dark2); border-top: 1px solid var(--border); }
.mobile-menu ul { display: flex; flex-direction: column; padding: 20px 32px; gap: 12px; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); display: block; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu li:last-child a { border: none; }
.mobile-menu.open { display: block; }

/* ===== HERO ===== */
#hero { background: var(--dark); position: relative; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.12;
}
.s1 { width: 700px; height: 700px; background: var(--orange); top: -200px; right: -150px; }
.s2 { width: 400px; height: 400px; background: var(--orange3); bottom: 0; left: -100px; }

.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 140px 32px 60px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.hero-location svg { width: 14px; height: 14px; }

.hero-content h1 {
  font-family: var(--font-c);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-content h1 em {
  font-style: normal; color: var(--orange);
  display: block;
}
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 500px; line-height: 1.75; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; row-gap: 12px;
}
.proof-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55);
  padding: 0 18px;
}
.proof-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.proof-item:first-child { padding-left: 0; }
.proof-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hv-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
}
.main-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px;
}
.mc-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.mc-icon svg { width: 38px; height: 38px; }
.mc-body { flex: 1; }
.mc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 4px;
}
.mc-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.mc-title { display: block; font-family: var(--font-c); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.mc-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.mc-fill { height: 100%; width: 85%; background: linear-gradient(90deg, var(--orange), var(--orange2)); border-radius: 3px; animation: fillBar 2s ease forwards; }
@keyframes fillBar { from { width: 0; } to { width: 85%; } }
.mc-note { font-size: 12px; color: var(--gray2); }

.hv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card { text-align: center; padding: 18px 14px; }
.mini-card.orange { background: var(--orange); border-color: var(--orange); }
.mini-num {
  display: block; font-family: var(--font-c);
  font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.mini-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); }
.mini-card.orange .mini-label { color: rgba(255,255,255,0.85); }

.info-card {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.8);
  padding: 14px 20px;
}
.info-card svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* Band */
.hero-band {
  background: var(--orange); padding: 14px 0; overflow: hidden;
  position: relative; z-index: 1;
}
.band-inner {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.band-inner span {
  font-family: var(--font-c);
  font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
}
.band-inner .dot { opacity: 0.6; font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
#services { background: var(--dark2); }
.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; margin-bottom: 56px;
}
.section-head.centered { flex-direction: column; align-items: center; text-align: center; margin-bottom: 56px; }
.sh-left .tag { display: inline-block; }
.sh-left h2,
.section-head.centered h2 {
  font-family: var(--font-c);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.05;
}
.sh-desc {
  max-width: 400px; font-size: 15px;
  color: rgba(255,255,255,0.5); line-height: 1.7;
  padding-bottom: 4px;
}
.section-head.centered .sh-desc { max-width: 560px; margin-top: 12px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
}
.svc-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-4px); box-shadow: var(--sh2); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-card.featured {
  background: var(--orange); border-color: var(--orange);
}
.svc-card.featured::before { display: none; }
.svc-card.featured h3,
.svc-card.featured p { color: var(--white); }
.svc-card.featured .svc-num { color: rgba(255,255,255,0.3); }
.svc-card.featured .svc-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: var(--white); }
.svc-card.featured .svc-list li { color: rgba(255,255,255,0.85); }
.svc-card.featured .svc-list li::before { background: rgba(255,255,255,0.7); }
.svc-card.featured .svc-link { color: var(--white); border-color: rgba(255,255,255,0.3); }
.svc-card.featured .svc-link:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.svc-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--orange);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card:not(.featured):hover .svc-icon { background: var(--orange); border-color: var(--orange); color: var(--white); }
.svc-num {
  font-family: var(--font-c); font-size: 13px; font-weight: 900;
  letter-spacing: 2px; color: rgba(249,115,22,0.25);
}
.svc-card h3 {
  font-family: var(--font-c); font-size: 20px; font-weight: 700;
  text-transform: uppercase; color: var(--white);
  line-height: 1.2; margin-bottom: 12px;
}
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.svc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.svc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.svc-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%; flex-shrink: 0;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3); border-radius: var(--r);
  padding: 9px 16px; transition: var(--tr); width: fit-content;
}
.svc-link svg { width: 14px; height: 14px; }
.svc-link:hover { background: rgba(249,115,22,0.1); border-color: var(--orange); }

/* ===== ZONE ===== */
#zone { background: var(--dark); }
.zone-inner {
  max-width: 1180px; margin: 0 auto; padding: 96px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.zone-text h2 {
  font-family: var(--font-c); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 20px;
}
.zone-text p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 32px; }
.dept-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 32px;
}
.dept {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 8px; text-align: center;
  transition: border-color var(--tr);
}
.dept:hover { border-color: rgba(249,115,22,0.3); }
.dept.active {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.4);
}
.dept-code {
  display: block; font-family: var(--font-c);
  font-size: 22px; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.dept-name { display: block; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.45); margin-top: 3px; line-height: 1.2; }
.dept.active .dept-name { color: var(--orange2); }

/* Map */
.zone-map { display: flex; align-items: center; justify-content: center; }
.map-graphic {
  position: relative; width: 100%; max-width: 420px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; overflow: hidden;
}
.map-graphic::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
}
.idf-map { width: 100%; height: auto; }
.map-pin-label {
  position: absolute; top: 52%; left: 48%;
  display: flex; align-items: center; gap: 5px;
  background: var(--orange); color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(249,115,22,0.4);
  transform: translate(-20%, -100%);
}
.map-pin-label svg { width: 12px; height: 12px; }
.map-overlay-tag {
  position: absolute; bottom: 24px; right: 24px;
  font-family: var(--font-c); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(249,115,22,0.4);
}

/* ===== ABOUT ===== */
#about { background: var(--dark2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; align-items: start;
}
.about-numbers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.an-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 20px; text-align: center;
  transition: border-color var(--tr);
}
.an-card:hover { border-color: rgba(249,115,22,0.3); }
.an-card.orange { background: var(--orange); border-color: var(--orange); }
.an-val {
  display: block; font-family: var(--font-c);
  font-size: 2.4rem; font-weight: 900;
  color: var(--orange); line-height: 1; margin-bottom: 6px;
}
.an-card.orange .an-val { color: var(--white); }
.an-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); line-height: 1.3; }
.an-card.orange .an-label { color: rgba(255,255,255,0.8); }

.about-text .tag { display: inline-block; }
.about-text h2 {
  font-family: var(--font-c);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 0;
}
.about-text p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 14px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.val-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  transition: border-color var(--tr);
}
.val-item:hover { border-color: rgba(249,115,22,0.3); }
.val-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(249,115,22,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.val-icon svg { width: 20px; height: 20px; }
.val-item div { display: flex; flex-direction: column; gap: 2px; }
.val-item strong { font-size: 15px; font-weight: 700; color: var(--white); }
.val-item span { font-size: 13px; color: rgba(255,255,255,0.45); }

.siren-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 16px;
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.siren-badge svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.siren-badge strong { color: var(--white); }

/* ===== CONTACT ===== */
#contact { background: var(--dark3); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 56px; align-items: start;
}
.cs-block { margin-bottom: 24px; }
.cs-block h3 {
  font-family: var(--font-c); font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}
.cs-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;
}
.cs-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.cs-icon svg { width: 18px; height: 18px; }
.cs-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray2); margin-bottom: 3px;
}
.cs-value {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--white); transition: color var(--tr);
}
a.cs-value:hover { color: var(--orange); }
.cs-avail {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.avail-dot {
  width: 8px; height: 8px; background: #22c55e;
  border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: avail 2s infinite;
}
@keyframes avail { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.2)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0.08)} }
.cs-note {
  background: var(--dark2); border: 1px solid rgba(249,115,22,0.2);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 16px; font-size: 13px;
  color: rgba(255,255,255,0.5); line-height: 1.6;
}
.cs-note strong { color: var(--orange); }

.contact-form {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.fg label span { color: var(--orange); }
.fg input, .fg select, .fg textarea {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 14px;
  color: var(--white); font-family: var(--font); font-size: 14px;
  outline: none; transition: border-color var(--tr), box-shadow var(--tr);
  -webkit-appearance: none; appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.18); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-legal { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.6; }
.form-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--r); padding: 14px 18px;
  font-size: 14px; font-weight: 600; color: #4ade80;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ===== FOOTER ===== */
footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.2fr; gap: 40px;
}
.footer-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); max-width: 280px; line-height: 1.7; margin-top: 10px; }
.footer-siren { font-size: 12px; color: rgba(255,255,255,0.2); margin-top: 12px; letter-spacing: 1px; }
.footer-links h4, .footer-contact-col h4 {
  font-family: var(--font-c); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color var(--tr); }
.footer-links a:hover { color: var(--white); }
.footer-links li { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links li strong { color: var(--orange2); }
.footer-contact-col p { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.footer-contact-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding: 20px 32px;
  border-top: 1px solid var(--border); text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.18); letter-spacing: 0.5px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card.featured { grid-column: 1 / -1; flex-direction: row; gap: 32px; }
  .svc-card.featured .svc-head { flex-direction: column; width: 200px; flex-shrink: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-numbers { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .zone-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 32px; }
  .zone-map { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  nav { display: none; }
  .btn-call:not(.mobile) { display: none; }
  .burger { display: flex; }
  .dept-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .section-inner { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.featured { flex-direction: column; }
  .svc-card.featured .svc-head { width: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px 20px; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { padding: 120px 20px 60px; }
  .zone-inner { padding: 64px 20px; }
}
