/* ===================== BZ PRIME GROUPE — ERP LANDING ===================== */

:root{
  --bg: #0a0806;
  --bg-soft: #120e0a;
  --bg-card: #16110b;
  --bg-card-2: #1c150d;
  --line: rgba(233,198,130,0.14);
  --line-soft: rgba(233,198,130,0.08);
  --cream: #f6efe0;
  --cream-dim: rgba(246,239,224,0.62);
  --cream-dimmer: rgba(246,239,224,0.4);

  --gold-1: #f3d998;
  --gold-2: #d9ad5c;
  --gold-3: #b3833a;
  --gold-4: #8a651f;
  --gold-grad: linear-gradient(120deg, var(--gold-1), var(--gold-2) 45%, var(--gold-4) 75%, var(--gold-2));

  --radius: 20px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; background:var(--bg); }
body{
  background:var(--bg);
  color:var(--cream);
  font-family:'Inter', system-ui, sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  font-weight:400;
}
::selection{ background:var(--gold-3); color:#0a0806; }

h1,h2,h3{ font-family:'Playfair Display', Georgia, serif; font-weight:600; letter-spacing:-0.01em; }
em{ font-style:italic; background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
svg{ width:100%; height:100%; }

.tag{
  display:inline-block;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-2);
  border:1px solid var(--line);
  padding:.4em 1em;
  border-radius:100px;
  margin-bottom:1.2em;
  background:rgba(233,198,130,0.04);
}

/* ---------- grain + cursor glow ---------- */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow{
  position:fixed; top:0; left:0; width:480px; height:480px; z-index:1;
  pointer-events:none; border-radius:50%;
  background:radial-gradient(circle, rgba(217,173,92,0.10), transparent 70%);
  transform:translate(-50%,-50%);
  transition:opacity .3s;
  will-change:transform;
}

/* ---------- preloader ---------- */
#preloader{
  position:fixed; inset:0; z-index:10000; background:var(--bg);
  display:flex; align-items:center; justify-content:center;
}
.preloader-mark{ width:90px; opacity:0; animation:preloaderIn 1.4s var(--ease) forwards; }
@keyframes preloaderIn{
  0%{ opacity:0; transform:scale(.8); filter:blur(6px); }
  50%{ opacity:1; transform:scale(1.05); filter:blur(0); }
  100%{ opacity:1; transform:scale(1); }
}

/* ---------- layout helpers ---------- */
section{ position:relative; padding:min(14vw,140px) 6vw; }
.how-head, .modules-head, .stats-head{ text-align:center; max-width:640px; margin:0 auto 4rem; }
.how-head h2, .modules-head h2, .stats-head h2{ font-size:clamp(2rem,4.4vw,3.1rem); line-height:1.15; }
.how-head p, .stats-head p{ margin-top:1rem; color:var(--cream-dim); font-size:1.05rem; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  padding:.95em 1.8em; border-radius:100px;
  font-size:.92rem; font-weight:600; letter-spacing:.02em;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  white-space:nowrap;
}
.btn-solid{
  background:var(--gold-grad); background-size:220% 220%;
  color:#181008;
  box-shadow:0 10px 30px -8px rgba(217,173,92,0.5);
}
.btn-solid:hover{ transform:translateY(-2px); background-position:100% 0; box-shadow:0 14px 36px -6px rgba(217,173,92,0.65); }
.btn-outline{ border:1px solid var(--line); color:var(--cream); }
.btn-outline:hover{ border-color:var(--gold-2); background:rgba(233,198,130,0.06); transform:translateY(-2px); }
.btn-ghost{ border:1px solid var(--line); font-size:.82rem; padding:.7em 1.4em; }
.btn-ghost:hover{ border-color:var(--gold-2); background:rgba(233,198,130,0.06); }
.btn-lg{ padding:1.15em 2.4em; font-size:1rem; }
.arrow{ transition:transform .3s var(--ease); }
.btn:hover .arrow{ transform:translateX(4px); }

/* ===================== NAV ===================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 6vw;
  transition:background .4s, border-color .4s, padding .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(10,8,6,0.75);
  backdrop-filter:blur(16px);
  border-color:var(--line);
  padding:12px 6vw;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; max-width:1400px; margin:0 auto; }
.nav-logo{ display:flex; align-items:center; gap:.7em; }
.nav-mark{ width:34px; }
.nav-word{ font-family:'Playfair Display',serif; font-size:.95rem; letter-spacing:.08em; line-height:1; }
.nav-word em{ display:block; font-style:normal; font-family:'Cormorant Garamond',serif; font-size:.62rem; letter-spacing:.32em; margin-top:.3em; }
.nav-links{ display:flex; gap:2.4em; font-size:.86rem; color:var(--cream-dim); }
.nav-links a{ position:relative; transition:color .3s; }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background:var(--gold-2); transition:width .35s var(--ease);
}
.nav-links a:hover{ color:var(--cream); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ }
.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-burger span{ width:22px; height:1.5px; background:var(--cream); display:block; }

.mobile-menu{
  position:fixed; inset:0; z-index:999; background:var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2rem;
  transform:translateY(-100%); transition:transform .5s var(--ease);
  font-size:1.4rem;
}
.mobile-menu.open{ transform:translateY(0); }

/* ===================== HERO ===================== */
.hero{
  min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding-top:120px; perspective:1400px;
}
.hero-glow{
  position:absolute; top:-10%; left:50%; width:1000px; height:800px; transform:translateX(-50%);
  background:radial-gradient(ellipse at center, rgba(217,173,92,0.16), transparent 60%);
  pointer-events:none; z-index:0;
}
.hero-grid{
  position:absolute; inset:0; z-index:0; opacity:.35;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
}

.hero-scene{
  position:relative; width:220px; height:220px; margin-bottom:1rem; z-index:1;
  transform-style:preserve-3d;
}
.crown-float{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  animation:floatY 6s ease-in-out infinite;
  filter:drop-shadow(0 20px 40px rgba(217,173,92,0.35));
}
.crown-float img{ width:120px; }
@keyframes floatY{
  0%,100%{ transform:translateY(0) rotateZ(0deg); }
  50%{ transform:translateY(-16px) rotateZ(2deg); }
}
.ring{
  position:absolute; top:50%; left:50%; border-radius:50%;
  border:1px solid var(--line); transform:translate(-50%,-50%);
}
.ring-1{ width:220px; height:220px; animation:spin 22s linear infinite; }
.ring-2{ width:280px; height:280px; border-style:dashed; opacity:.5; animation:spin 34s linear infinite reverse; }
.ring-3{ width:340px; height:340px; opacity:.25; animation:spin 46s linear infinite; }
@keyframes spin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }

.hero-content{ position:relative; z-index:1; max-width:900px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-2); margin-bottom:1.6rem;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold-2); box-shadow:0 0 12px var(--gold-2); animation:pulse 2s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.hero-title{ display:block; font-size:clamp(2.4rem,6.4vw,5.2rem); line-height:1.08; margin-bottom:1.6rem; }
.hero-title .line{ display:block; overflow:hidden; }
.hero-sub{ font-size:clamp(1rem,1.6vw,1.2rem); color:var(--cream-dim); max-width:620px; margin:0 auto 2.4rem; line-height:1.6; }
.hero-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.6em;
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--cream-dimmer);
}
.scroll-cue-line{ width:1px; height:46px; background:var(--line); overflow:hidden; }
.scroll-cue-line i{ display:block; width:100%; height:16px; background:var(--gold-2); animation:scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown{ 0%{ transform:translateY(-20px); } 100%{ transform:translateY(46px); } }

/* ===================== ABOUT / LE GROUPE ===================== */
.about-grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:4rem;
  max-width:1300px; margin:0 auto; align-items:start;
}
.about-copy h2{ font-size:clamp(2rem,3.6vw,2.9rem); line-height:1.18; margin-bottom:1.4rem; }
.about-copy p{ color:var(--cream-dim); line-height:1.75; font-size:1.02rem; margin-bottom:1.1rem; }
.about-pillars{ display:flex; flex-direction:column; gap:1.2rem; }
.about-pillar{
  display:grid; grid-template-columns:auto 1fr; gap:0 1.6rem;
  padding:1.8rem; border:1px solid var(--line); border-radius:18px;
  background:var(--bg-card);
  transition:transform .4s var(--ease), border-color .4s;
}
.about-pillar:hover{ transform:translateX(6px); border-color:var(--gold-3); }
.about-pillar span{
  grid-row:1 / 3; align-self:start;
  font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--gold-3);
}
.about-pillar h3{ font-size:1.15rem; margin-bottom:.4rem; }
.about-pillar p{ font-size:.9rem; color:var(--cream-dim); line-height:1.6; grid-column:2; }

@media(max-width:960px){
  .about-grid{ grid-template-columns:1fr; }
}

/* ===================== MARQUEE ===================== */
.marquee-strip{
  padding:22px 0; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  overflow:hidden; white-space:nowrap;
}
.marquee-track{
  display:inline-flex; gap:2.4rem; font-family:'Playfair Display',serif; font-style:italic;
  font-size:1.3rem; color:var(--cream-dimmer);
  animation:marquee 32s linear infinite;
}
.marquee-track .sep{ color:var(--gold-3); font-style:normal; }
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* ===================== STATS ===================== */
.stats{ text-align:center; }
.stats-glow{
  position:absolute; top:20%; left:50%; width:800px; height:500px; transform:translateX(-50%);
  background:radial-gradient(ellipse at center, rgba(217,173,92,0.08), transparent 65%);
  pointer-events:none;
}
.stats-grid{
  position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; max-width:1100px; margin:0 auto;
}
.stat-card{
  background:linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border:1px solid var(--line); border-radius:var(--radius); padding:2.4rem 1.4rem;
  transition:transform .4s var(--ease), border-color .4s;
}
.stat-card:hover{ transform:translateY(-6px); border-color:var(--gold-3); }
.stat-num{
  font-family:'Playfair Display',serif; font-size:clamp(2.2rem,3.4vw,3rem);
  background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom:.4rem;
}
.stat-label{ font-size:.86rem; color:var(--cream-dim); letter-spacing:.02em; }

/* ===================== MODULES (pinned scroll) ===================== */
.modules{ padding-left:0; padding-right:0; }
.modules-head{ padding:0 6vw; }
.modules-pin{ height:100vh; position:relative; overflow:hidden; }
.modules-track{
  position:absolute; top:0; left:0; height:100%;
  display:flex; align-items:center; gap:2.2rem;
  padding:0 6vw; will-change:transform;
}
.module-card{
  flex:0 0 auto; width:min(420px,80vw); height:min(72vh,560px);
  background:linear-gradient(160deg, var(--bg-card-2), var(--bg-card) 60%, var(--bg-soft));
  border:1px solid var(--line); border-radius:28px;
  padding:2.6rem; display:flex; flex-direction:column;
  position:relative; overflow:hidden;
  transform-style:preserve-3d;
  transition:transform .5s var(--ease), border-color .5s;
}
.module-card::before{
  content:''; position:absolute; inset:0; border-radius:28px; padding:1px;
  background:linear-gradient(160deg, rgba(233,198,130,0.35), transparent 40%, transparent 70%, rgba(233,198,130,0.15));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}
.module-card:hover{ transform:translateY(-8px) rotateX(2deg); border-color:var(--gold-3); }
.module-index{
  font-family:'Playfair Display',serif; font-size:.9rem; color:var(--gold-3); letter-spacing:.1em; margin-bottom:1.6rem;
}
.module-icon{
  width:58px; height:58px; border-radius:16px; padding:13px; margin-bottom:1.6rem;
  background:rgba(233,198,130,0.06); border:1px solid var(--line); color:var(--gold-2);
}
.module-card h3{ font-size:1.5rem; margin-bottom:.8rem; }
.module-card p{ color:var(--cream-dim); line-height:1.6; margin-bottom:1.4rem; font-size:.95rem; }
.module-card ul{ margin-top:auto; display:flex; flex-direction:column; gap:.6rem; }
.module-card ul li{
  font-size:.84rem; color:var(--cream-dim); padding-left:1.4em; position:relative;
}
.module-card ul li::before{
  content:''; position:absolute; left:0; top:.5em; width:6px; height:6px; border-radius:50%;
  background:var(--gold-grad);
}

/* ===================== HOW IT WORKS ===================== */
.how-steps{
  position:relative; max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
}
.how-line{
  position:absolute; top:20px; left:0; right:0; height:1px; background:var(--line-soft);
  display:none;
}
@media(min-width:860px){ .how-line{ display:block; } }
.how-line-fill{
  position:absolute; top:0; left:0; height:100%; width:0%;
  background:var(--gold-grad); display:block;
}
.how-step{ position:relative; padding-top:2.6rem; }
.how-num{
  position:absolute; top:0; left:0; width:40px; height:40px; border-radius:50%;
  background:var(--bg-soft); border:1px solid var(--gold-3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:.85rem; color:var(--gold-2);
  z-index:1;
}
.how-step h3{ font-size:1.25rem; margin-bottom:.6rem; }
.how-step p{ color:var(--cream-dim); font-size:.92rem; line-height:1.6; }

/* ===================== DASHBOARD PREVIEW ===================== */
.dash{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:4rem; align-items:center;
  max-width:1400px; margin:0 auto;
}
.dash-copy h2{ font-size:clamp(2rem,3.6vw,2.9rem); line-height:1.15; margin-bottom:1.2rem; }
.dash-copy p{ color:var(--cream-dim); line-height:1.7; margin-bottom:1.6rem; }
.dash-list{ display:flex; flex-direction:column; gap:.9rem; }
.dash-list li{ display:flex; gap:.8em; align-items:flex-start; font-size:.95rem; color:var(--cream-dim); }
.dash-list li span{ color:var(--gold-2); font-weight:700; }

.dash-stage{ position:relative; perspective:1600px; }
.dash-mock{
  background:linear-gradient(160deg, #1a130b, #100c08);
  border:1px solid var(--line); border-radius:20px; overflow:hidden;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(233,198,130,0.05);
  transform:rotateY(-10deg) rotateX(4deg);
  transition:transform .1s linear;
  will-change:transform;
}
.dash-mock-top{
  display:flex; align-items:center; gap:1rem; padding:.9rem 1.2rem;
  border-bottom:1px solid var(--line-soft); background:rgba(255,255,255,0.02);
}
.dash-dots{ display:flex; gap:6px; }
.dash-dots i{ width:8px; height:8px; border-radius:50%; background:var(--line); }
.dash-mock-title{ font-size:.76rem; color:var(--cream-dimmer); letter-spacing:.03em; }
.dash-mock-body{ display:flex; min-height:340px; }
.dash-side{
  width:56px; background:rgba(255,255,255,0.015); border-right:1px solid var(--line-soft);
  display:flex; flex-direction:column; align-items:center; gap:1.1rem; padding:1.4rem 0;
}
.dash-side-logo{ width:20px; height:20px; border-radius:6px; background:var(--gold-grad); margin-bottom:.6rem; }
.dash-side span{ width:20px; height:20px; border-radius:7px; background:rgba(255,255,255,0.05); }
.dash-side span.active{ background:var(--gold-grad); box-shadow:0 0 14px rgba(217,173,92,0.5); }
.dash-main{ flex:1; padding:1.4rem; display:flex; flex-direction:column; gap:1.2rem; }
.dash-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.dash-kpi{
  background:rgba(255,255,255,0.03); border:1px solid var(--line-soft); border-radius:12px; padding:.9rem;
}
.dash-kpi b{ display:block; font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--gold-1); }
.dash-kpi small{ font-size:.68rem; color:var(--cream-dimmer); }
.dash-chart{ background:rgba(255,255,255,0.02); border:1px solid var(--line-soft); border-radius:12px; padding:.8rem; height:100px; }
.dash-bars{ display:flex; align-items:flex-end; gap:.5rem; height:70px; }
.dash-bars i{
  flex:1; height:var(--h); border-radius:4px 4px 0 0;
  background:linear-gradient(180deg, var(--gold-1), var(--gold-4)); opacity:.85;
}

.dash-float{
  position:absolute; padding:.8rem 1.1rem; border-radius:14px;
  background:rgba(20,15,9,0.85); backdrop-filter:blur(10px);
  border:1px solid var(--line); font-size:.78rem; color:var(--cream-dim);
  box-shadow:0 20px 40px -10px rgba(0,0,0,0.5);
  display:flex; align-items:center; gap:.6em;
}
.dash-float b{ font-family:'Playfair Display',serif; color:var(--gold-1); font-size:1rem; }
.dash-float-1{ top:-6%; right:-6%; animation:floatSlow 5s ease-in-out infinite; }
.dash-float-2{ bottom:10%; left:-10%; flex-direction:column; align-items:flex-start; gap:.1em; animation:floatSlow 6s ease-in-out infinite 1s; }
.dash-float-3{ bottom:-6%; right:8%; animation:floatSlow 5.5s ease-in-out infinite .5s; }
@keyframes floatSlow{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }

/* ===================== FEATURES ===================== */
.features-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; max-width:1200px; margin:0 auto;
}
.feature-card{
  background:var(--bg-card); border:1px solid var(--line); border-radius:18px; padding:2rem;
  transition:transform .4s var(--ease), border-color .4s, background .4s;
}
.feature-card:hover{ transform:translateY(-6px); border-color:var(--gold-3); background:var(--bg-card-2); }
.feature-icon{
  width:46px; height:46px; padding:10px; border-radius:12px; margin-bottom:1.2rem;
  background:rgba(233,198,130,0.06); color:var(--gold-2);
}
.feature-card h3{ font-size:1.1rem; margin-bottom:.6rem; }
.feature-card p{ font-size:.88rem; color:var(--cream-dim); line-height:1.6; }

/* ===================== QUOTE ===================== */
.quote{ text-align:center; overflow:hidden; }
.quote-wave{
  position:absolute; inset:0; opacity:.5;
  background:radial-gradient(ellipse 60% 40% at 50% 100%, rgba(217,173,92,0.12), transparent 70%);
}
.quote-inner{ position:relative; max-width:780px; margin:0 auto; }
.quote-mark{ width:40px; margin:0 auto 2rem; opacity:.8; }
.quote-inner p{
  font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(1.4rem,2.6vw,2rem);
  line-height:1.5; margin-bottom:2.2rem;
}
.quote-author{ display:flex; align-items:center; justify-content:center; gap:1em; }
.quote-avatar{
  width:44px; height:44px; border-radius:50%; background:var(--gold-grad);
  color:#181008; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.8rem;
}
.quote-author div{ text-align:left; display:flex; flex-direction:column; font-size:.85rem; }
.quote-author strong{ color:var(--cream); }
.quote-author span{ color:var(--cream-dimmer); }

/* ===================== FAQ ===================== */
.faq-list{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; }
.faq-item{ border:1px solid var(--line); border-radius:16px; overflow:hidden; background:var(--bg-card); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.4rem 1.6rem; background:none; border:none; color:var(--cream); text-align:left;
  font-size:1rem; font-family:inherit; cursor:pointer;
}
.faq-plus{ color:var(--gold-2); font-size:1.3rem; transition:transform .35s var(--ease); flex-shrink:0; }
.faq-item.open .faq-plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a p{ padding:0 1.6rem 1.4rem; color:var(--cream-dim); font-size:.92rem; line-height:1.65; }

/* ===================== CTA ===================== */
.cta{ text-align:center; overflow:hidden; }
.cta-glow{
  position:absolute; top:0; left:50%; width:900px; height:700px; transform:translateX(-50%);
  background:radial-gradient(ellipse at center, rgba(217,173,92,0.18), transparent 65%);
  pointer-events:none;
}
.cta-inner{ position:relative; }
.cta-mark{ width:56px; margin:0 auto 1.6rem; }
.cta-inner h2{ font-size:clamp(2.2rem,5vw,3.6rem); line-height:1.15; margin-bottom:1.4rem; }
.cta-inner p{ color:var(--cream-dim); max-width:500px; margin:0 auto 2.2rem; }

/* ===================== FOOTER ===================== */
.footer{ padding:5vw 6vw 2rem; border-top:1px solid var(--line-soft); }
.footer-top{ display:flex; justify-content:space-between; gap:4rem; flex-wrap:wrap; margin-bottom:3rem; }
.footer-logo img{ width:150px; }
.footer-cols{ display:flex; gap:4rem; flex-wrap:wrap; }
.footer-cols h4{ font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-2); margin-bottom:1rem; }
.footer-cols div{ display:flex; flex-direction:column; gap:.6rem; }
.footer-cols a{ font-size:.88rem; color:var(--cream-dim); transition:color .3s; }
.footer-cols a:hover{ color:var(--cream); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  font-size:.78rem; color:var(--cream-dimmer); padding-top:2rem; border-top:1px solid var(--line-soft);
}

/* ===================== SCROLL REVEAL BASE ===================== */
.reveal-up{ opacity:0; transform:translateY(36px); }

/* ===================== RESPONSIVE ===================== */
@media(max-width:960px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .how-steps{ grid-template-columns:repeat(2,1fr); }
  .dash{ grid-template-columns:1fr; }
  .features-grid{ grid-template-columns:repeat(2,1fr); }
  .dash-float{ display:none; }
}
@media(max-width:600px){
  section{ padding:90px 5vw; }
  .stats-grid{ grid-template-columns:1fr 1fr; gap:1rem; }
  .how-steps{ grid-template-columns:1fr; }
  .features-grid{ grid-template-columns:1fr; }
  .dash-cards{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; gap:2rem; }
}
