/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --navy: #0b1626;
  --navy-mid: #112240;
  --navy-light: #1a3461;
  --blue: #1d4ed8;
  --blue-bright: #3b82f6;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fdba74;
  --white: #ffffff;
  --off-white: #f1f5f9;
  --gray: #94a3b8;
  --gray-light: #e2e8f0;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow: 0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,22,38,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
#header.scrolled {
  background: rgba(11,22,38,1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 0.1rem; }
nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  white-space: nowrap;
}
.phone-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
.phone-icon { font-size: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ─── MOBILE NAV ─────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  border-bottom: 2px solid var(--orange);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.07); color: white; }
.mobile-nav .mobile-call {
  background: var(--orange);
  color: white;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  border-radius: 6px;
}
.mobile-nav .mobile-call:hover { background: var(--orange-dark); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,78,216,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,78,216,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,78,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.dot.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange);
}
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
}
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  max-width: 520px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.9); }
.hero-links-mention {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-links-mention a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-links-mention a:hover { color: var(--orange-light); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-urgent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-urgent:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.45); }
.btn-icon { font-size: 1.1rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; background: rgba(255,255,255,0.05); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.trust-item span { font-size: 0.9rem; }
.trust-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
}
.hero-card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-card-icon-big { font-size: 3.5rem; margin-bottom: 0.75rem; }
.hero-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-card-tel {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.hero-card-tel:hover { color: var(--orange-light); }
.hero-card-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.hero-stats { display: flex; justify-content: space-around; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}
.hero-stat-lab {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* ─── URGENCE BANNER ─────────────────────────────────── */
.urgence-banner {
  background: var(--orange);
  padding: 0.9rem 2rem;
}
.urgence-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.urgence-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.urgence-badge {
  background: rgba(0,0,0,0.2);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
}
.urgence-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.urgence-cta {
  background: white;
  color: var(--orange-dark);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.urgence-cta strong { font-weight: 800; }
.urgence-cta:hover { background: var(--navy); color: white; }

/* ─── SECTIONS ───────────────────────────────────────── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--orange-light);
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.3);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--orange); }
.section-title.light { color: white; }
.section-title.light span { color: var(--orange-light); }
.section-desc { font-size: 1rem; color: var(--text-light); line-height: 1.7; }
.section-desc a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ─── SERVICES ───────────────────────────────────────── */
#services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--orange); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-left-color: var(--orange); background: linear-gradient(135deg, #fff7ed 0%, white 60%); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(249,115,22,0.12);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.service-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.service-tags span {
  background: var(--off-white);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--gray-light);
}

/* ─── WHY US ─────────────────────────────────────────── */
.why-section { background: var(--navy-mid); padding: 5rem 2rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.why-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.why-link {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(249,115,22,0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.why-link:hover { color: var(--orange); border-color: var(--orange); }
.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.25s;
}
.why-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.why-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 0.35rem;
}
.why-content p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ─── ZONES ──────────────────────────────────────────── */
#zones { background: white; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.zone-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.zone-card:hover { border-color: var(--orange); background: #fff7ed; transform: translateY(-3px); box-shadow: var(--shadow); }
.zone-card.highlight {
  background: var(--navy);
  border-color: var(--orange);
}
.zone-card.highlight h3 { color: white; }
.zone-card.highlight p { color: rgba(255,255,255,0.5); }
.zone-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.zone-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.zone-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.zone-badge {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section { background: var(--navy); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.faq-left { position: sticky; top: 6rem; }
.faq-side-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.faq-contact-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.75rem;
}
.faq-contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.faq-contact-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.faq-contact-tel {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.faq-contact-tel:hover { color: var(--orange-light); }
.faq-contact-site { font-size: 0.82rem; color: var(--blue-bright); text-decoration: none; word-break: break-all; }
.faq-contact-site:hover { text-decoration: underline; }
.faq-contact-addr { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(249,115,22,0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: white; }
.faq-arr {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-arr { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; padding: 0 1.25rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.25rem 1.1rem; }
.faq-a p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.faq-a a { color: var(--blue-bright); text-decoration: underline; }
.faq-a a:hover { color: var(--orange-light); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: #070e1a; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  transition: all 0.2s;
}
.social-link:hover { background: var(--orange); color: white; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-contact { margin-bottom: 1.25rem; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.fc-item a { color: rgba(255,255,255,0.4); text-decoration: none; }
.fc-item a:hover { color: var(--orange); }
.footer-cta-btn {
  display: block;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer-cta-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.footer-divider-line { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange-light); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange-light); }

/* ─── FLOATING CTA ────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.5);
  text-decoration: none;
  z-index: 900;
  transition: all 0.25s;
  animation: float 3s ease-in-out infinite;
}
.floating-cta:hover { background: var(--orange-dark); transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.6); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-items { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .urgence-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
