/* =============================================================
   CommandeCI — Styles Page d'accueil (index.php)
   Design : Luxe sombre, Montserrat, palette or chaud
   Extrait de index.php — NE PAS ajouter de CSS inline dans index.php
   ============================================================= */

/* ─── Tokens locaux (dark theme) ───────────────────────────────
   Valeurs alignées avec assets/css/style.css :
   --gold    == --c-accent       (#A16207)
   --gold-lt == --c-accent-light (#D97706)
   --bg-dark == --c-primary      (#1C1917)
   ─────────────────────────────────────────────────────────── */
:root {
  --bg-deep:    #0A0907;
  --bg-dark:    #1C1917;
  --bg-mid:     #292524;
  --bg-light:   #FAFAF9;
  --bg-warm:    #F5F5F4;
  --gold:       #A16207;
  --gold-lt:    #D97706;
  --gold-pale:  #FBBF24;
  --white:      #FFFFFF;
  --text-inv:   rgba(250,250,249,0.92);
  --text-dim:   rgba(250,250,249,0.5);
  --text-dark:  #1C1917;
  --text-mid:   #57534E;
  --bd-dark:    rgba(250,250,249,0.08);
  --bd-light:   #E7E5E4;
  --font-h:     'Montserrat', system-ui, sans-serif;
  --font-b:     'Montserrat', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
.sr-only   { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ─── Navbar (floating pill) ───────────────────────────────── */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 40px);
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 10px 22px;
  background: rgba(10,9,7,.72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid var(--bd-dark);
  border-radius: 999px;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10,9,7,.93);
  box-shadow: 0 6px 32px rgba(0,0,0,.45);
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-lt);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav__links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav__cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(161,98,7,.4);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 19px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: rgba(10,9,7,.97);
  border: 1px solid var(--bd-dark);
  border-radius: 18px;
  padding: 14px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: .9rem;
  color: var(--text-dim);
  padding: 10px 14px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav__mobile a:hover { background: rgba(255,255,255,.05); color: var(--white); }
.nav__mobile .nav__mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  border-radius: 12px;
  padding: 12px;
}

@media (max-width: 780px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  overflow: hidden;
  padding: 130px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(161,98,7,.13) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__glow2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(161,98,7,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .15s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .55;
}
.hero__h1 {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 400;
  line-height: 1.11;
  color: var(--white);
  letter-spacing: -.015em;
  margin-bottom: 22px;
}
.hero__h1 .line { display: block; overflow: hidden; }
.hero__h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineUp .75s var(--ease-out) forwards;
}
.hero__h1 .line:nth-child(1) .line-inner { animation-delay: .3s; }
.hero__h1 .line:nth-child(2) .line-inner { animation-delay: .46s; }
.hero__h1 .line:nth-child(3) .line-inner {
  animation-delay: .62s;
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-pale) 0%, var(--gold-lt) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 38px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .85s forwards;
}
.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1s forwards;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: 999px; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(161,98,7,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-dim);
  font-size: .85rem; font-weight: 500;
  border: 1px solid rgba(250,250,249,.14);
  border-radius: 999px; cursor: pointer;
  transition: color .2s, border-color .2s, transform .15s;
}
.btn-outline:hover { color: var(--white); border-color: rgba(250,250,249,.38); transform: translateY(-1px); }

/* Stats inside hero */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin: 56px auto 0;
  border: 1px solid var(--bd-dark);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1.2s forwards;
}
.hero__stat {
  padding: 20px 12px;
  text-align: center;
  background: rgba(255,255,255,.025);
  transition: background .2s;
}
.hero__stat:hover { background: rgba(255,255,255,.045); }
.hero__stat + .hero__stat { border-left: 1px solid var(--bd-dark); }
.hero__stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 1.75rem; font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-lbl { font-size: .72rem; color: var(--text-dim); letter-spacing: .04em; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--text-dim); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1.5s forwards;
}
.hero__scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ─── Section commons ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section--dark  { background: var(--bg-dark); }
.section--warm  { background: var(--bg-warm); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.s-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 400; line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.s-title--light { color: var(--white); }
.s-sub { font-size: .92rem; line-height: 1.72; color: var(--text-mid); max-width: 460px; }
.s-sub--light { color: rgba(250,250,249,.55); }

/* Reveal animation */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.rev.in { opacity: 1; transform: none; }
.rev-d1 { transition-delay: .1s; }
.rev-d2 { transition-delay: .2s; }
.rev-d3 { transition-delay: .3s; }
.rev-d4 { transition-delay: .4s; }
.rev-d5 { transition-delay: .5s; }

/* ─── Trust strip ──────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bd-light);
  border-radius: 18px;
  overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 22px;
  background: var(--white);
  border-right: 1px solid var(--bd-light);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-warm); }
.trust-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(161,98,7,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.trust-lbl { font-size: .88rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: 2px; }
.trust-sub { font-size: .75rem; color: var(--text-mid); }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),.trust-item:nth-child(2) { border-bottom: 1px solid var(--bd-light); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--bd-light); }
  .trust-item:last-child { border-bottom: none; }
}

/* ─── Steps ────────────────────────────────────────────────── */
.steps-wrap { position: relative; }
.steps-line {
  position: absolute;
  top: 31px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bd-light) 12%, var(--bd-light) 88%, transparent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
}
.step__icon-wrap {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--bd-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.step:hover .step__icon-wrap {
  border-color: rgba(161,98,7,.45);
  box-shadow: 0 0 0 6px rgba(161,98,7,.06);
  transform: translateY(-2px);
}
.step__num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: .92rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.step p  { font-size: .8rem; line-height: 1.65; color: var(--text-mid); }

@media (max-width: 800px) {
  .steps-line { display: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step { align-items: flex-start; text-align: left; flex-direction: row; gap: 14px; }
  .step__icon-wrap { flex-shrink: 0; margin-bottom: 0; }
  .step__body { flex: 1; padding-top: 4px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─── Category cards ────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--bd-light);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .25s;
  cursor: pointer;
}
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(161,98,7,.04), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.cat-card:hover {
  border-color: rgba(161,98,7,.38);
  box-shadow: 0 8px 36px rgba(161,98,7,.1), 0 2px 8px rgba(0,0,0,.05);
  transform: translateY(-4px);
}
.cat-card:hover::after { opacity: 1; }
.cat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(161,98,7,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background .3s;
  position: relative; z-index: 1;
}
.cat-card:hover .cat-icon { background: rgba(161,98,7,.16); }
.cat-card h3 { font-size: .92rem; font-weight: 600; color: var(--text-dark); position: relative; z-index: 1; }
.cat-card p  { font-size: .8rem; line-height: 1.62; color: var(--text-mid); flex: 1; position: relative; z-index: 1; }
.cat-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .76rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em; text-transform: uppercase;
  transition: gap .2s;
  position: relative; z-index: 1;
}
.cat-card:hover .cat-arrow { gap: 10px; }

@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .cat-grid { grid-template-columns: 1fr; } }

/* ─── Quick form ────────────────────────────────────────────── */
.qf-wrap {
  background: var(--bg-deep);
  border-radius: 22px;
  padding: 64px;
  position: relative; overflow: hidden;
}
.qf-wrap::before {
  content: '';
  position: absolute; top: -30%; left: -15%;
  width: 55%; height: 100%;
  background: radial-gradient(circle, rgba(161,98,7,.16) 0%, transparent 65%);
  pointer-events: none;
}
.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.qf-left .eyebrow { color: rgba(251,191,36,.75); }
.qf-left .s-title { color: var(--white); font-size: clamp(1.5rem,2.8vw,2.2rem); }
.qf-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.qf-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: .86rem; color: rgba(250,250,249,.6);
}
.qf-features li svg { color: var(--gold); flex-shrink: 0; }
.qf-form { display: flex; flex-direction: column; gap: 13px; }
.qf-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(250,250,249,.38);
  display: block; margin-bottom: 5px;
}
.qf-input, .qf-select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-b); font-size: .88rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.qf-input::placeholder { color: rgba(250,250,249,.25); }
.qf-input:focus, .qf-select:focus {
  border-color: rgba(161,98,7,.6);
  background: rgba(255,255,255,.09);
}
.qf-select option { background: var(--bg-dark); }
.qf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.qf-btn {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-b); font-size: .85rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.qf-btn:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(161,98,7,.42); }
.qf-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.qf-err { font-size: .72rem; color: #F87171; margin-top: 4px; display: none; }
.qf-err.show { display: block; }
.qf-input.err, .qf-select.err { border-color: rgba(248,113,113,.6); }
.qf-legal { font-size: .68rem; text-align: center; color: rgba(250,250,249,.28); line-height: 1.55; margin-top: 2px; }

@media (max-width: 860px) { .qf-grid { grid-template-columns: 1fr; gap: 36px; } .qf-wrap { padding: 40px 28px; } }
@media (max-width: 480px) { .qf-row2 { grid-template-columns: 1fr; } }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--bd-light);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(161,98,7,.28); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: none; border: none; text-align: left;
  font-family: var(--font-b); font-size: .92rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  transition: color .2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-chev {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--text-mid);
  transition: transform .3s, color .2s;
}
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--gold); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-body.open { max-height: 350px; }
.faq-body p { padding: 0 22px 18px; font-size: .88rem; line-height: 1.72; color: var(--text-mid); }

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-deep);
  padding: 104px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72vw; height: 60vh;
  background: radial-gradient(circle, rgba(161,98,7,.15) 0%, transparent 62%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.cta-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 400; color: var(--white);
  line-height: 1.18; margin-bottom: 14px;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(125deg, var(--gold-pale), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.cta-sub { font-size: .92rem; color: rgba(250,250,249,.52); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--bd-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand-name { font-family: var(--font-h); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.footer-brand-desc { font-size: .8rem; line-height: 1.7; color: rgba(250,250,249,.38); max-width: 240px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--bd-dark);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,249,.35);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--white); border-color: rgba(250,250,249,.22); background: rgba(255,255,255,.04); }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,250,249,.3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .82rem; color: rgba(250,250,249,.45); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-links span { font-size: .75rem; color: rgba(250,250,249,.22); }
.footer-bottom {
  border-top: 1px solid var(--bd-dark);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .75rem; color: rgba(250,250,249,.25);
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Toasts ───────────────────────────────────────────────── */
.toast-box {
  position: fixed; bottom: 22px; right: 22px; z-index: 9999;
  display: flex; flex-direction: column; gap: 9px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--bg-dark);
  border: 1px solid var(--bd-dark);
  border-radius: 14px; padding: 13px 15px;
  max-width: 330px;
  box-shadow: 0 10px 36px rgba(0,0,0,.45);
  animation: toastIn .3s var(--ease-out) forwards;
  font-size: .82rem; color: var(--text-inv); line-height: 1.45;
}
.toast__close { margin-left: auto; background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 2px; flex-shrink: 0; }
.toast__title { font-weight: 600; margin-bottom: 2px; }
.toast--success .toast__ic { color: #34D399; }
.toast--error   .toast__ic { color: #F87171; }
.toast--info    .toast__ic { color: var(--gold-pale); }

/* ─── Keyframes ────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes lineUp  { from { opacity:0; transform:translateY(110%); } to { opacity:1; transform:none; } }
@keyframes scrollPulse { 0%,100%{opacity:.35;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.25)} }
@keyframes toastIn { from { opacity:0; transform:translateX(14px); } to { opacity:1; transform:none; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .hero__eyebrow,.hero__sub,.hero__btns,.hero__stats,.hero__scroll { opacity:1 !important; }
  .hero__h1 .line-inner { opacity:1 !important; transform:none !important; }
}
