/* ===========================================================
   ASSUTECH — Design system V2-DARK
   Version sombre : bleu nuit profond + or, cartes "panel" sur
   fond noir-bleuté, même typographie et structure que la V2.
   =========================================================== */

:root {
  --navy-950: #0b1730;
  --navy-900: #0f1e3d;
  --navy-800: #16295a;
  --blue-700: #12306e;
  --blue-600: #3b6bff;
  --blue-500: #5b82ff;
  --gold-500: #c9a227;
  --gold-400: #dab949;
  --ink-900: #f4f6fb;
  --ink-700: #c3cadd;
  --ink-500: #8b93ab;
  --ink-300: #aab3c9;
  --ink-100: rgba(255,255,255,0.10);
  --white: #ffffff;
  --surface: #10162c;
  --surface-2: #17203f;
  --base: #0a0e1c;
  --panel: #141a33;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 68px rgba(0, 0, 0, 0.55);

  --container: 1180px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; color: var(--ink-900); }
p { margin: 0; }
section { padding: 100px 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold-500); display: inline-block; }

h1 { font-size: 48px; line-height: 1.15; }
h2 { font-size: 34px; line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.35; font-family: var(--font-head); }
.lede { font-size: 18px; color: var(--ink-700); max-width: 620px; font-family: var(--font-body); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-300); }
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ===== Top bar ===== */
.topbar { background: var(--navy-950); color: var(--ink-300); font-size: 12.5px; }
.topbar-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; height: 38px; display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left a { display: flex; align-items: center; gap: 7px; color: var(--ink-300); font-weight: 500; }
.topbar-left a:hover { color: var(--gold-400); }
.topbar-left svg { width: 13px; height: 13px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: var(--ink-300); font-weight: 500; }
.topbar-right a:hover { color: var(--gold-400); }
.topbar-sep { opacity: 0.3; }
.topbar-social { display: flex; gap: 8px; margin-left: 6px; }
.topbar-social a { width: 24px; height: 24px; border-radius: 4px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; }
.topbar-social a:hover { background: var(--gold-500); color: var(--navy-950); }

/* ===== Header (light) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,28,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 19px; color: var(--ink-900); font-family: var(--font-head); }
.brand-mark-svg { flex-shrink: 0; display: block; }
.brand-sub { font-size: 10px; letter-spacing: .1em; color: var(--ink-500); text-transform: uppercase; font-weight: 600; margin-top: -2px; font-family: var(--font-body); }

nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: 4px;
  transition: color .15s ease;
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover, nav.main-nav > ul > li.active > a { color: var(--blue-600); }
nav.main-nav > ul > li > a .caret { font-size: 10px; opacity: .6; }

.mega-list {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 280px; background: var(--panel); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--ink-100);
  padding: 8px; display: none; flex-direction: column;
}
nav.main-nav > ul > li:hover .mega-list, nav.main-nav > ul > li.mega-open .mega-list { display: flex; }
.mega-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--ink-900); }
.mega-list a:hover { background: rgba(255,255,255,0.05); color: var(--blue-600); }
.mega-list .mega-list-arrow { opacity: 0; transform: translateX(-4px); transition: opacity .15s ease, transform .15s ease; color: var(--gold-500); display: flex; }
.mega-list a:hover .mega-list-arrow { opacity: 1; transform: translateX(0); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { color: var(--ink-900); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.header-phone svg { color: var(--gold-500); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink-900); cursor: pointer; }

/* ===== Hero (split, light) ===== */
.hero { position: relative; background: linear-gradient(180deg, var(--base) 0%, var(--surface) 55%); overflow: hidden; padding: 90px 0 80px; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero .eyebrow { color: var(--gold-500); }
.hero h1 { color: var(--ink-900); }
.hero h1 em { font-style: italic; color: var(--blue-600); }
.hero .lede { margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-500); }
.hero-trust .trust-item svg { color: var(--gold-500); width: 16px; height: 16px; }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px 38px;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-card .big-num { font-family: var(--font-head); font-size: 64px; font-weight: 700; color: var(--blue-600); line-height: 1; }
.hero-card .big-label { font-size: 14px; color: var(--ink-500); margin-top: 8px; font-weight: 600; }
.hero-card hr { border: none; border-top: 1px solid var(--ink-100); margin: 28px 0; }
.hero-card .mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-card .mini-stats .n { font-size: 22px; font-weight: 800; color: var(--ink-900); font-family: var(--font-head); }
.hero-card .mini-stats .l { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }

/* Trust bar */
.trust-bar { background: var(--surface); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); padding: 24px 0; }
.trust-bar .container { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trust-bar .trust-label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); white-space: nowrap; }
.trust-bar .trust-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; flex: 1; }
.trust-bar .trust-logos span { font-weight: 800; font-size: 15px; color: var(--ink-700); letter-spacing: .01em; font-family: var(--font-head); }

/* ===== Pillars (left accent) ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--blue-600);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--gold-500); }
.pillar-ic {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--surface-2);
  color: var(--blue-600);
}
.pillar-card .pillar-index { position: absolute; top: 26px; right: 24px; font-size: 12px; font-weight: 700; color: var(--ink-300); font-family: var(--font-head); }
.pillar-card h3 { margin-bottom: 10px; font-size: 18px; }
.pillar-card p { color: var(--ink-500); font-size: 14.5px; }
.pillar-card .pillar-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--blue-600); }

/* ===== Feature two-col ===== */
.section-alt { background: var(--surface); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ink-100); font-size: 15px; color: var(--ink-700); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(201,162,39,0.20); color: var(--gold-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

.quote-panel {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  position: relative;
}
.quote-panel .mark { font-family: var(--font-head); font-size: 60px; color: var(--gold-500); line-height: 1; margin-bottom: 6px; }
.quote-panel p { font-family: var(--font-head); font-size: 22px; line-height: 1.5; color: var(--white); }
.quote-panel .attribution { margin-top: 24px; font-size: 13px; color: var(--ink-300); font-family: var(--font-body); }

/* Stat band */
.stat-band { background: var(--navy-950); color: var(--white); padding: 64px 0; }
.stat-band .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-item .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--gold-400); }
.stat-item .lbl { font-size: 13px; color: var(--ink-300); margin-top: 6px; font-family: var(--font-body); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { border-top: 2px solid var(--gold-500); padding-top: 22px; }
.step .step-num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--ink-300); margin-bottom: 10px; }
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--ink-500); }

/* Logos row */
.logos-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.logos-row .logo-chip { padding: 10px 22px; border: 1px solid var(--ink-100); border-radius: 4px; font-weight: 700; color: var(--ink-500); font-size: 13.5px; font-family: var(--font-head); }

/* Partners */
.partners-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.partner-plaque { display: flex; align-items: center; gap: 10px; padding: 15px 20px; border: 1px solid var(--ink-100); border-radius: var(--radius-sm); font-weight: 700; font-size: 13.5px; color: var(--ink-700); background: var(--panel); transition: box-shadow .18s ease, border-color .18s ease; }
.partner-plaque:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-500); }
.partner-plaque .dot { width: 7px; height: 7px; border-radius: 50%; }
.partner-logo { display: flex; align-items: center; justify-content: center; height: 76px; padding: 12px 16px; border: 1px solid var(--ink-100); border-radius: var(--radius-sm); background: var(--panel); transition: box-shadow .18s ease, border-color .18s ease; }
.partner-logo:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-500); }
.partner-logo img { max-width: 96px; max-height: 34px; width: auto; height: auto; object-fit: contain; }

/* Testimonials */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--panel); border: 1px solid var(--ink-100); border-top: 3px solid var(--gold-500); border-radius: var(--radius-sm); padding: 30px 26px; display: flex; flex-direction: column; height: 100%; }
.testimonial-stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 16px; }
.testimonial-quote { font-family: var(--font-head); font-size: 17px; color: var(--ink-900); line-height: 1.55; flex: 1; }
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--ink-100); }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy-950); display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-weight: 800; font-size: 13px; flex-shrink: 0; font-family: var(--font-head); }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.testimonial-role { font-size: 12px; color: var(--ink-500); }

/* Actualités (news feed) — featured widget, shown right under the hero */
.news-side-wrap { padding: 0 0 70px; }
.news-side { background: var(--panel); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 30px 32px; }
.news-side-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--ink-100); }
.news-side-head .eyebrow { margin-bottom: 0; }
.news-side-link { font-size: 13px; font-weight: 700; color: var(--blue-600); white-space: nowrap; }
.news-side-link:hover { color: var(--blue-700); }
.news-mini-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; }
.news-mini-item { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; }
.news-mini-img { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: linear-gradient(120deg, var(--navy-950), var(--blue-700)); display: flex; align-items: center; justify-content: center; }
.news-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-mini-img svg { color: var(--gold-400); opacity: .85; }
.news-mini-body { flex: 1; min-width: 0; }
.news-mini-source { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-500); }
.news-mini-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--ink-900); line-height: 1.35; margin-top: 2px; transition: color .15s ease; }
.news-mini-item:hover .news-mini-title { color: var(--blue-600); }
.news-mini-date { font-size: 11.5px; color: var(--ink-500); margin-top: 6px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-950), var(--blue-700)); color: var(--white); border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: 28px; }
.cta-band p { color: var(--ink-300); margin-top: 10px; font-family: var(--font-body); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Inner page hero + breadcrumb ===== */
.page-hero { padding: 74px 0 64px; }
.page-hero h1 { font-size: 40px; color: var(--ink-900); }
.page-hero .lede { color: var(--ink-700); margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-500); margin-bottom: 20px; font-family: var(--font-body); }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--blue-600); }
.breadcrumb .crumb-current { color: var(--ink-900); font-weight: 600; }

/* Media panel (dark illustration tile on light page) */
.media-panel {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* Info cards (service grids on inner pages) */
.info-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--blue-600);
  border-radius: var(--radius-sm);
  padding: 26px 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--gold-500); }
.info-card h3 { font-size: 17px; margin-bottom: 8px; }
.info-card p { color: var(--ink-500); font-size: 14.5px; font-family: var(--font-body); }
.info-card .num-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--blue-600);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--ink-100); }
.contact-item:last-child { border-bottom: none; }
.contact-ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-box { background: var(--panel); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 34px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink-700); font-family: var(--font-body); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--ink-300);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: rgba(255,255,255,0.04);
}
.form-row textarea { min-height: 110px; resize: vertical; }

/* ===== Footer (dark bookend) ===== */
footer.site-footer { background: var(--navy-950); color: var(--ink-300); padding: 70px 0 30px; }
.footer-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--navy-800); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 50px; }
.footer-newsletter h4 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.footer-newsletter p { color: var(--ink-300); font-size: 13.5px; font-family: var(--font-body); }
.footer-newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-newsletter input { padding: 12px 16px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-body); font-size: 14px; min-width: 220px; }
.footer-newsletter input::placeholder { color: var(--ink-500); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand p { color: var(--ink-300); font-size: 14px; margin-top: 14px; max-width: 260px; font-family: var(--font-body); }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-300); font-family: var(--font-body); }
.footer-col a:hover { color: var(--gold-400); }
.footer-certs { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-certs .cert-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); margin-right: 6px; font-family: var(--font-body); }
.footer-certs .cert-chip { padding: 7px 14px; border: 1px dashed rgba(255,255,255,0.18); border-radius: 4px; font-size: 12px; color: var(--ink-500); display: inline-block; font-family: var(--font-body); }
.footer-certs a.cert-chip:hover { color: var(--gold-400); border-color: var(--gold-400); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: var(--ink-500); font-family: var(--font-body); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 34px; height: 34px; border-radius: 4px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--white); }
.social-row a:hover { background: var(--gold-500); color: var(--navy-950); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .pillars-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .news-mini-list { grid-template-columns: repeat(2, 1fr); }
  .two-col, .hero-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  nav.main-nav { position: fixed; inset: 80px 0 0 0; background: var(--panel); flex-direction: column; padding: 20px; display: none; overflow-y: auto; border-top: 1px solid var(--ink-100); }
  nav.main-nav.open { display: flex; }
  nav.main-nav > ul { flex-direction: column; width: 100%; align-items: stretch; }
  .mega-list { position: static; transform: none; width: 100%; box-shadow: none; border: none; display: none; }
  nav.main-nav > ul > li:hover .mega-list { display: none; }
  nav.main-nav > ul > li.open .mega-list { display: flex; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  h1 { font-size: 32px; }
  .hero h1 { font-size: 34px; }
  .pillars-grid, .card-grid, .news-mini-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band .container { justify-content: flex-start; }
  .cta-band { padding: 32px; flex-direction: column; align-items: flex-start; }
  .topbar { display: none; }
}
