/* ============================================
   GSECUREN — style.css
   Thème : Dark cyber-security, vert/bleu
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:        #0b0f1a;
  --bg2:       #0e1422;
  --bg3:       #111827;
  --surface:   #141d2e;
  --surface2:  #1a2540;
  --green:     #4ade80;
  --green2:    #22c55e;
  --green-dim: rgba(74,222,128,.12);
  --green-glow:rgba(74,222,128,.25);
  --blue:      #38bdf8;
  --blue2:     #0ea5e9;
  --blue-dim:  rgba(56,189,248,.10);
  --teal:      #2dd4bf;
  --ink:       #f0f6ff;
  --muted:     #ffffff;
  --muted2:    #4a5878;
  --stroke:    rgba(255,255,255,.07);
  --stroke2:   rgba(74,222,128,.2);
  --shadow:    0 4px 32px rgba(0,0,0,.4);
  --r:         12px;
  --r2:        18px;
  --nav-h:     72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green2); }

/* ── CANVAS PARTICULES ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ── LAYOUT ── */
.container { width: min(1180px, 92%); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.5px;
}

.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green);
  display: inline-block;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title span { color: var(--green); }

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green2), #16a34a);
  color: #fff;
  box-shadow: 0 6px 28px rgba(34,197,94,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34,197,94,.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--stroke2);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green-dim);
  border-color: var(--green2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface2);
  border: 1px solid var(--stroke);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--surface2);
  border-color: var(--stroke2);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,15,26,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
  transition: background .3s ease;
}
.navbar.scrolled {
  background: rgba(11,15,26,.97);
  border-bottom-color: rgba(74,222,128,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.logo-text .iso { color: var(--ink); }
.logo-text .pro { color: var(--green); }
.logo-text .tech { color: var(--blue); }
.logo-tagline {
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--surface2);
}
.nav-links a.active { color: var(--green); }

.nav-cta { flex-shrink: 0; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, width .25s ease;
}
.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,15,26,.97);
  border-bottom: 1px solid var(--stroke);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--green); background: var(--surface2); }
.mobile-menu .btn { margin-top: 10px; text-align: center; justify-content: center; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: var(--nav-h); }

/* ── HERO (index) ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 70% 50%, rgba(56,189,248,.07), transparent 70%),
    radial-gradient(ellipse 700px 700px at 10% 80%, rgba(74,222,128,.06), transparent 70%),
    radial-gradient(ellipse 500px 400px at 50% 10%, rgba(45,212,191,.05), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: var(--green-dim);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-title .green { color: var(--green); }
.hero-title .blue  { color: var(--blue); }

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--stroke);
}
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing linear infinite;
}
.ring1 { width: 300px; height: 300px; border-color: rgba(74,222,128,.2); animation-duration: 18s; }
.ring2 { width: 240px; height: 240px; border-color: rgba(56,189,248,.2); animation-duration: 12s; border-style: dashed; }
.ring3 { width: 180px; height: 180px; border-color: rgba(45,212,191,.15); animation-duration: 8s; animation-direction: reverse; }

@keyframes spinRing { to { transform: rotate(360deg); } }

.shield-core {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.2), rgba(56,189,248,.1), transparent);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(74,222,128,.15), inset 0 0 30px rgba(74,222,128,.08);
}

.ring-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green2);
}
.ring1 .ring-dot { top: -4px; left: 50%; transform: translateX(-50%); }
.ring2 .ring-dot { bottom: -4px; right: 20px; }

.hero-tags {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: -20px;
}
.hero-tag {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--stroke);
}
.feature-card {
  background: var(--surface);
  padding: 36px 28px;
  transition: background .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green2), var(--blue2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--surface2); }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid var(--stroke2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.services-hero .section-title { margin: 0 auto 18px; max-width: 14ch; }
.services-hero .section-desc { margin: 0 auto; text-align: center; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--stroke);
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-visual {
  border-radius: var(--r2);
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--green-dim), transparent 70%);
}
.service-visual-icon {
  font-size: 80px;
  filter: drop-shadow(0 0 30px rgba(74,222,128,.3));
  position: relative; z-index: 1;
}

.service-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 28px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 14px;
  color: var(--muted);
  transition: border-color .2s ease, background .2s ease;
}
.service-item:hover { border-color: var(--stroke2); background: var(--surface2); }
.service-item-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green2);
  flex-shrink: 0; margin-top: 5px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.pricing-card {
  border-radius: var(--r2);
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 36px 28px;
  transition: border-color .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--stroke2);
  background: linear-gradient(180deg, rgba(74,222,128,.06), var(--surface));
}
.pricing-card.featured::before {
  content: 'RECOMMANDÉ';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--green2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.pricing-card:hover { border-color: var(--stroke2); transform: translateY(-4px); }
.pricing-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span { font-size: 18px; color: var(--muted); }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--stroke); margin: 20px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.pricing-check { color: var(--green); font-size: 14px; }

/* ── DEVIS PAGE ── */
.devis-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.devis-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.devis-form-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  padding: 36px;
}
.form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .3px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r);
  background: var(--bg3);
  border: 1px solid var(--stroke);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.form-input::placeholder { color: var(--muted2); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }

.form-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--bg3);
  transition: border-color .2s ease, background .2s ease;
}
.form-check:hover { border-color: var(--stroke2); background: var(--green-dim); }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green2); cursor: pointer; }

.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 17px; }

/* FORM FEEDBACK */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }
.success-icon { font-size: 52px; margin-bottom: 16px; }
.success-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.success-desc { font-size: 15px; color: var(--muted); }

/* DEVIS SIDEBAR */
.devis-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  padding: 24px;
}
.sidebar-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 14px; color: var(--muted);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item-icon { font-size: 18px; flex-shrink: 0; }

/* ── CONTACT PAGE ── */
.contact-hero { padding: 80px 0 60px; text-align: center; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .2s ease;
}
.contact-card:hover { border-color: var(--stroke2); }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid var(--stroke2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-card-title { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-card-val { font-size: 14px; color: var(--muted); line-height: 1.6; }
.contact-card-val a { color: var(--green); }
.contact-card-val a:hover { text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0d1e14, #0a1622);
  border: 1px solid var(--stroke2);
  border-radius: var(--r2);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(74,222,128,.1), transparent 70%);
  pointer-events: none;
}
.cta-band-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-band-title span { color: var(--green); }
.cta-band-desc {
  font-size: 16px; color: var(--muted);
  max-width: 48ch; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
.cta-band-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--stroke);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 26ch; }
.footer-brand-desc { font-size: 14px; color: var(--muted); margin: 14px 0 22px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}
.footer-social:hover { border-color: var(--stroke2); background: var(--green-dim); }
.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--muted);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted2);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--green); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.animate {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HERO GENERIC ── */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(74,222,128,.07), transparent 70%);
  pointer-events: none;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--surface2);
  border: 1px solid var(--stroke2);
  border-radius: var(--r);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--green); font-size: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .devis-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.service-visual {
  overflow: hidden;
}

.hero-tag {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.hero-tag:hover {
  transform: translateY(-3px);
  border-color: var(--stroke2);
  background: var(--surface2);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.service-block {
  scroll-margin-top: 100px;
}