/* MB-CRÉATION — Design System v4
   Agence Web Premium · Charleroi, Belgique
   Style: OLED Dark + Glassmorphism Hybrid
   ========================================= */

/* ── 1. DESIGN TOKENS ── */
:root {
  /* BACKGROUNDS */
  --bg:          #050A12;
  --bg-2:        #08101A;
  --bg-card:     rgba(255,255,255,.055);
  --bg-card-h:   rgba(255,255,255,.09);
  --bg-overlay:  rgba(5,10,18,.85);

  /* BORDERS */
  --border:      rgba(255,255,255,.09);
  --border-h:    rgba(79,142,255,.42);
  --border-glow: rgba(79,142,255,.6);

  /* ACCENTS */
  --blue:        #4F8EFF;
  --blue-bright: #6BA3FF;
  --blue-dim:    rgba(79,142,255,.14);
  --orange:      #FF6B35;
  --orange-bright:#FF8255;
  --orange-dim:  rgba(255,107,53,.14);
  --purple:      #8B5CF6;
  --purple-dim:  rgba(139,92,246,.14);
  --green:       #34D399;
  --green-dim:   rgba(52,211,153,.12);
  --cyan:        #22D3EE;
  --cyan-dim:    rgba(34,211,238,.1);

  /* TEXT */
  --text:        #EFF2FF;
  --text-strong: #FFFFFF;
  --muted:       #8B929E;
  --subtle:      #4B5563;

  /* TYPOGRAPHY */
  --font-d:      'Plus Jakarta Sans', sans-serif;
  --font-b:      'Inter', sans-serif;

  /* LAYOUT */
  --max-w:       1240px;
  --pad-x:       1.5rem;

  /* RADIUS */
  --r-xl:        28px;
  --r-lg:        20px;
  --r-md:        14px;
  --r-sm:        10px;
  --r-xs:        6px;
  --r-pill:      9999px;

  /* EASINGS */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(0,0,.2,1);

  /* TRANSITIONS */
  --t:           .3s cubic-bezier(.4,0,.2,1);
  --t-fast:      .15s cubic-bezier(.4,0,.2,1);
  --t-slow:      .5s cubic-bezier(.4,0,.2,1);

  /* GLASSMORPHISM */
  --glass-blur:   blur(16px);
  --glass-shadow: 0 8px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);

  /* SHADOWS */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.3);
  --shadow-md:     0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.5);
  --shadow-blue:   0 0 48px rgba(79,142,255,.15);
  --shadow-orange: 0 8px 32px rgba(255,107,53,.35);

  /* Z-INDEX */
  --z-card:     10;
  --z-nav:      50;
  --z-modal:    100;
  --z-cursor:   9997;
  --z-loader:   9998;
  --z-progress: 9999;
}

/* ── 2. RESET & BASE ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
h1,h2,h3,h4,.font-d { font-family: var(--font-d); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--r-xs); }

/* ── 3. TYPOGRAPHY ── */
.heading-hero { font-size: clamp(3rem,8vw,7rem); line-height: 1.04; font-weight: 900; letter-spacing: -.03em; }
.heading-1    { font-size: clamp(2rem,4vw,3.2rem); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.heading-2    { font-size: clamp(1.75rem,3.2vw,2.5rem); line-height: 1.15; font-weight: 700; letter-spacing: -.015em; }
.heading-3    { font-size: clamp(1.1rem,1.5vw,1.25rem); font-weight: 700; letter-spacing: -.01em; }
.lead         { font-size: 1.12rem; line-height: 1.8; color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--blue-bright) 40%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-warm {
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--orange) 50%, #FBBF24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-subtle {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── 4. LAYOUT ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.grid-auto    { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label  { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: .875rem; }
.section-title  { margin: 0 0 1rem; }
.section-lead   { color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ── 5. BACKGROUNDS ── */
.hero-bg {
  background:
    radial-gradient(ellipse 110% 65% at 80% -15%, rgba(79,142,255,.2) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 5% 95%, rgba(139,92,246,.16) 0%, transparent 52%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(34,211,238,.04) 0%, transparent 60%),
    var(--bg);
}
.dot-grid { background-image: radial-gradient(rgba(255,255,255,.032) 1px, transparent 1px); background-size: 30px 30px; }
.glass {
  background: var(--bg-card); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.section-dark     { background: var(--bg-2); }
.section-gradient { background: linear-gradient(180deg, transparent, rgba(79,142,255,.04), transparent); }
.cta-gradient     { background: linear-gradient(135deg, rgba(79,142,255,.1) 0%, rgba(139,92,246,.07) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── 6. ORBS ── */
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; will-change: transform; }
.orb-1 { width: 700px; height: 700px; top: -200px; right: -120px; background: rgba(79,142,255,.12); animation: orbFloat 10s ease-in-out infinite; }
.orb-2 { width: 450px; height: 450px; bottom: -100px; left: -100px; background: rgba(139,92,246,.1); animation: orbFloat 14s ease-in-out infinite reverse; }
.orb-3 { width: 320px; height: 320px; top: 35%; left: 30%; background: rgba(255,107,53,.07); animation: orbFloat 8s ease-in-out infinite 2s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(25px,-35px) scale(1.05)} }

/* ── 7. FLOATING CHIPS ── */
.float-chip {
  position: absolute;
  background: rgba(8,16,26,.93); border: 1px solid var(--border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-md); padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
}
.chip-speed    { top: 28px; left: -55px; animation: chipF 5s ease-in-out infinite; }
.chip-analytics{ bottom: 28px; left: -70px; animation: chipR 6s ease-in-out infinite; }
.chip-seo      { top: calc(50% - 18px); right: -35px; animation: chipF 7s ease-in-out infinite 1s; }
@keyframes chipF { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes chipR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

/* ── 8. SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--orange));
  z-index: var(--z-progress); transition: width .1s linear;
}

/* ── 9. PAGE LOADER ── */
#page-loader {
  position: fixed; inset: 0; background: var(--bg); z-index: var(--z-loader);
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: var(--font-d); font-size: 2rem; font-weight: 800; animation: loaderBlink 1s ease-in-out infinite alternate; }
.loader-logo span { color: var(--orange); }
@keyframes loaderBlink { from{opacity:.25} to{opacity:1} }

/* ── 10. CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring {
  position: fixed; pointer-events: none; z-index: var(--z-cursor); border-radius: 50%;
  transform: translate(-50%,-50%); mix-blend-mode: difference;
}
#cursor-dot  { width: 8px; height: 8px; background: #fff; transition: transform .1s var(--ease), width .25s var(--ease), height .25s var(--ease); }
#cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,.4); transition: transform .12s var(--ease), width .25s, height .25s, opacity .25s; }
body.cursor-hover #cursor-dot  { width: 12px; height: 12px; }
body.cursor-hover #cursor-ring { width: 50px; height: 50px; opacity: .6; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── 11. NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav); padding: .875rem 0; transition: background var(--t), border-color var(--t), padding var(--t); }
.navbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.navbar-scrolled { background: rgba(5,10,18,.88) !important; border-bottom: 1px solid var(--border); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); padding: .65rem 0; box-shadow: 0 4px 32px rgba(0,0,0,.35); }
.nav-logo { font-family: var(--font-d); font-weight: 800; font-size: 1.3rem; color: #fff; text-decoration: none; letter-spacing: -.01em; }
.nav-logo span { color: var(--orange); }
.desktop-nav { display: none; gap: 2rem; align-items: center; }
.nav-link {
  color: var(--muted); text-decoration: none; font-size: .875rem; font-weight: 500;
  transition: color var(--t); position: relative;
}
.nav-link::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1px; background:var(--blue); transform:scaleX(0); transition:transform var(--t); transform-origin:left; }
.nav-link:hover, .nav-link.nav-active { color: #fff; }
.nav-link:hover::after, .nav-link.nav-active::after { transform: scaleX(1); }
.hamburger { background: none; border: none; color: #fff; cursor: pointer; padding: .35rem; }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-menu  { display: none; }
.hamburger.is-open .icon-close { display: block; }
.mobile-menu { display: none; flex-direction: column; gap: .75rem; padding: 1.5rem; background: rgba(5,10,18,.98); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; padding: .5rem 0; font-size: 1rem; font-weight: 500; transition: color var(--t); }
.mobile-menu a:hover { color: #fff; }

/* ── 12. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: .875rem; font-family: var(--font-b);
  font-weight: 600; font-size: .95rem; cursor: pointer; text-decoration: none;
  transition: var(--t); border: none; min-height: 48px; white-space: nowrap;
  letter-spacing: .015em; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(255,107,53,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::after {
  content: ''; position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn-primary:hover::after { left: 125%; }
.btn-ghost {
  background: rgba(79,142,255,.06); color: var(--text);
  border: 1px solid rgba(79,142,255,.2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(79,142,255,.5); background: rgba(79,142,255,.1); color: #fff; box-shadow: 0 0 24px rgba(79,142,255,.12); }
.btn-sm  { padding: .5rem 1.25rem; font-size: .85rem; min-height: 36px; }
.btn-lg  { padding: 1.1rem 2.5rem; font-size: 1.05rem; min-height: 56px; }
.btn-full{ width: 100%; }

/* ── 13. BADGES & TAGS ── */
.badge { display:inline-flex; align-items:center; gap:.45rem; padding:.35rem 1rem; background:rgba(79,142,255,.1); border:1px solid rgba(79,142,255,.25); border-radius:var(--r-pill); font-size:.75rem; color:#93C5FD; font-weight:600; letter-spacing:.04em; backdrop-filter:blur(8px); }
.tag { display:inline-flex; font-size:.7rem; padding:.22rem .65rem; border-radius:var(--r-pill); font-weight:600; letter-spacing:.02em; }
.tag-blue   { background:rgba(79,142,255,.1);  border:1px solid rgba(79,142,255,.22);  color:#93C5FD; }
.tag-green  { background:rgba(52,211,153,.1);  border:1px solid rgba(52,211,153,.22);  color:#6EE7B7; }
.tag-purple { background:rgba(139,92,246,.1);  border:1px solid rgba(139,92,246,.22);  color:#C4B5FD; }
.tag-orange { background:rgba(255,107,53,.1);  border:1px solid rgba(255,107,53,.22);  color:#FDBA74; }
.tag-yellow { background:rgba(251,191,36,.1);  border:1px solid rgba(251,191,36,.22);  color:#FDE68A; }
.tag-teal   { background:rgba(20,184,166,.1);  border:1px solid rgba(20,184,166,.22);  color:#5EEAD4; }
.tag-cyan   { background:rgba(34,211,238,.1);  border:1px solid rgba(34,211,238,.22);  color:#67E8F9; }

/* ── 14. CARDS ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.75rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t), background var(--t);
  will-change: transform;
}
.card:hover { border-color: var(--border-h); background: var(--bg-card-h); transform: translateY(-6px); box-shadow: 0 0 48px rgba(79,142,255,.1), 0 12px 48px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08); }
.card-glow-blue:hover   { border-color: rgba(79,142,255,.45);  box-shadow: 0 0 48px rgba(79,142,255,.15), 0 12px 48px rgba(0,0,0,.45); }
.card-glow-green:hover  { border-color: rgba(52,211,153,.4);   box-shadow: 0 0 48px rgba(52,211,153,.12), 0 12px 48px rgba(0,0,0,.45); }
.card-glow-purple:hover { border-color: rgba(139,92,246,.4);   box-shadow: 0 0 48px rgba(139,92,246,.12), 0 12px 48px rgba(0,0,0,.45); }
.card-glow-orange:hover { border-color: rgba(255,107,53,.4);   box-shadow: 0 0 48px rgba(255,107,53,.12), 0 12px 48px rgba(0,0,0,.45); }
.icon-wrap { width: 44px; height: 44px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }

/* ── 15. HERO ── */
.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; padding: 4rem 0; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .1; mix-blend-mode: screen; pointer-events: none; }
.hero-badge { margin-bottom: 1.5rem; }
.hero-title { margin: 0 0 1.25rem; }
.hero-sub   { font-size: 1.12rem; color: var(--muted); max-width: 520px; line-height: 1.8; margin: 0 0 2rem; }
.hero-ctas  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat-num { font-family: var(--font-d); font-size: 1.85rem; font-weight: 800; line-height: 1; }
.stat-lbl { font-size: .78rem; color: var(--subtle); margin-top: .3rem; }
.hero-visual { display: none; width: 100%; position: relative; }
.hero-visual svg { filter: drop-shadow(0 20px 60px rgba(79,142,255,.22)); }
.typing-cursor { display: inline-block; width: 3px; height: 1em; background: var(--orange); vertical-align: middle; margin-left: 3px; border-radius: 2px; animation: blink .75s step-end infinite; }
.typing-caret { display: inline-block; margin-left: .04em; font-weight: 300; color: var(--orange); animation: blink .75s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Fix menu déroulant : options lisibles (évite blanc sur blanc) */
#contact-form select option,
#contact-form select optgroup { background: #0B1320; color: var(--text); }

/* ── 16. SERVICE CARDS ── */
.svc-illu { width: 100%; height: 120px; border-radius: var(--r-sm); overflow: hidden; margin-bottom: 1.25rem; }
.svc-illu img { width: 100%; height: 100%; object-fit: cover; }
.svc-illu svg { width: 100%; height: 100%; }
.svc-title { font-size: 1.05rem; margin: 0 0 .6rem; }
.svc-desc  { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 0 0 1rem; }
.svc-tags  { display: flex; gap: .4rem; flex-wrap: wrap; }

/* ── 17. KPI ── */
.kpi-card   { border-radius: var(--r-xl); padding: 2rem; position: relative; overflow: hidden; }
.kpi-number { font-family: var(--font-d); font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: .3rem; }
.kpi-label  { color: var(--muted); font-size: .875rem; }
.kpi-sub    { margin-top: 1rem; font-size: .75rem; color: var(--subtle); }

/* ── 18. DIFFERENTIATORS ── */
.diff-card  { border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--border); background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: .75rem; }
.diff-icon  { width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.diff-title { font-size: 1.1rem; font-weight: 700; }
.diff-desc  { color: var(--muted); font-size: .875rem; line-height: 1.7; }

/* ── 19. MARQUEE ── */
.marquee-wrap {
  overflow: hidden; padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track { display: flex; gap: 2rem; animation: marquee 28s linear infinite; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-pill {
  font-family: var(--font-d); font-weight: 700; font-size: .85rem;
  color: rgba(255,255,255,.2); letter-spacing: .05em;
  padding: .5rem 1.25rem; border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-pill); white-space: nowrap;
  transition: color var(--t), border-color var(--t);
}
.client-pill:hover { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.15); }

/* ── 20. TIMELINE ── */
.tl-container { position: relative; }
.tl-track { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: rgba(255,255,255,.06); }
.tl-fill  { position: absolute; left: 50%; top: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(to bottom, var(--blue), var(--purple)); height: 100%; transform-origin: top center; }
.tl-dot   { width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg); box-shadow: 0 0 0 4px rgba(79,142,255,.2); z-index: 1; }
.tl-step  { display: grid; grid-template-columns: 1fr 32px 1fr; gap: 24px; align-items: center; margin-bottom: 60px; }
.tl-step:nth-child(odd)  .tl-content { text-align: right; }
.tl-step:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.tl-step:nth-child(even) .tl-dot-col { grid-column: 2; }
.tl-step:nth-child(even) .tl-empty   { display: none; }
.tl-week { font-size: .68rem; font-weight: 700; letter-spacing: .12em; margin-bottom: .4rem; }
.tl-card-title { font-size: 1rem; margin: 0 0 .5rem; }
.tl-card-desc  { color: var(--muted); font-size: .85rem; margin: 0; line-height: 1.65; }

/* ── 21. PORTFOLIO ── */
.portfolio-card  { border-radius: var(--r-xl); overflow: hidden; }
.portfolio-thumb { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-label { font-family: var(--font-d); font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.1); }
.portfolio-badge { position: absolute; bottom: 12px; right: 12px; font-size: .7rem; font-weight: 700; padding: .25rem .7rem; border-radius: var(--r-pill); color: #fff; }
.portfolio-info  { padding: 1.25rem; }
.portfolio-title { margin: 0 0 .35rem; font-size: .95rem; font-weight: 700; }
.portfolio-meta  { color: var(--subtle); font-size: .8rem; margin: 0; }

/* ── 22. PRICING ── */
.pricing-card     { border-radius: var(--r-xl); padding: 2rem; }
.pricing-tier     { font-size: .72rem; font-weight: 700; letter-spacing: .12em; margin-bottom: 1rem; }
.pricing-price    { font-family: var(--font-d); font-size: 2.6rem; font-weight: 800; margin-bottom: .25rem; }
.pricing-desc     { color: var(--muted); font-size: .85rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-feature  { display: flex; gap: .6rem; font-size: .875rem; align-items: flex-start; }
.pricing-check    { flex-shrink: 0; margin-top: 2px; }
.pricing-featured { border-color: var(--blue) !important; box-shadow: 0 0 60px rgba(79,142,255,.1); }
.pricing-badge    { background: var(--blue); color: #fff; font-size: .68rem; font-weight: 700; padding: .2rem .65rem; border-radius: var(--r-pill); }

/* ── 23. TESTIMONIALS ── */
.testimonial       { border-radius: var(--r-lg); padding: 1.75rem; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { color: #FBBF24; }
.testimonial-text  { color: #D1D5DB; font-size: .875rem; line-height: 1.75; margin: 0 0 1.25rem; }
.t-author  { display: flex; align-items: center; gap: .75rem; }
.t-avatar  { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.t-name    { font-weight: 600; font-size: .875rem; }
.t-role    { color: var(--subtle); font-size: .77rem; }

/* ── 24. FAQ ── */
.faq-answer  { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }
.faq-icon { transition: transform var(--t); display: inline-flex; }
.faq-trigger {
  width: 100%; padding: 1.2rem 1.5rem; background: none; border: none; color: #fff;
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-b); font-size: .92rem; font-weight: 500; gap: 1rem;
}
.faq-body { color: var(--muted); font-size: .875rem; line-height: 1.75; padding: 0 1.5rem 1.25rem; }

/* ── 25. CONTACT ── */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; }
.form-label { display: block; font-size: .78rem; font-weight: 700; color: var(--muted); margin-bottom: .4rem; letter-spacing: .06em; text-transform: uppercase; }
.form-input {
  width: 100%; padding: .875rem 1rem; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text);
  font-family: var(--font-b); font-size: .92rem; outline: none;
  transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.form-input:focus { border-color: rgba(79,142,255,.5); box-shadow: 0 0 0 3px rgba(79,142,255,.1); }
.form-input::placeholder { color: var(--subtle); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field{ margin-bottom: 1rem; }
.form-note { text-align: center; color: var(--subtle); font-size: .75rem; margin-top: .85rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.contact-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.aside-card { border-radius: var(--r-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.aside-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aside-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; padding: 1.25rem; }
.aside-stat-num { font-family: var(--font-d); font-size: 1.5rem; font-weight: 800; }
.aside-stat-lbl { font-size: .72rem; color: var(--subtle); }

/* ── 26. FOOTER ── */
.footer       { padding: 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo  { font-family: var(--font-d); font-weight: 800; font-size: 1rem; }
.footer-logo span { color: var(--orange); }
.footer-copy  { font-style: normal; color: var(--subtle); font-size: .82rem; }
.footer-copy a{ color: var(--subtle); text-decoration: none; transition: color var(--t); }
.footer-copy a:hover { color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-btn   { background: none; border: none; color: var(--subtle); font-size: .82rem; cursor: pointer; padding: 0; font-family: var(--font-b); transition: color var(--t); }
.footer-btn:hover { color: var(--muted); text-decoration: underline; }

/* ── 27. STICKY CTA ── */
#sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-modal);
  transform: translateY(100%); transition: transform .4s var(--ease);
  padding: .875rem 1.5rem; background: rgba(5,10,18,.95);
  border-top: 1px solid rgba(79,142,255,.2); backdrop-filter: blur(20px);
}
.sticky-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sticky-title { font-weight: 700; font-size: .9rem; }
.sticky-sub   { color: var(--subtle); font-size: .77rem; }

/* ── 28. SCROLL REVEAL ── */
.sr, .sr-item, .kpi-card { transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js-loaded .sr, .js-loaded .sr-item, .js-loaded .kpi-card { opacity: 0; transform: translateY(30px); }
.sr.visible, .sr-item.visible, .kpi-card.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ── 29. SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(79,142,255,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(79,142,255,.5); }

/* ── 30. DIALOGS ── */
dialog { color: var(--text); }
dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(4px); }
dialog[open] { animation: dialogIn .3s var(--ease); }
@keyframes dialogIn { from{opacity:0;transform:translateY(-16px) scale(.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.dialog-box   { max-width: 680px; width: 90%; border-radius: var(--r-xl); background: var(--bg-2); border: 1px solid var(--border); color: var(--text); padding: 2.5rem; font-family: var(--font-b); }
.dialog-title { font-family: var(--font-d); margin: 0 0 1.5rem; font-size: 1.4rem; }
.dialog-body  { color: var(--muted); font-size: .875rem; line-height: 1.8; }
.dialog-body p { margin-bottom: 1rem; }
.dialog-body strong { color: var(--text); }
.dialog-body a { color: var(--blue); text-decoration: none; }

/* ── 31. UTILITIES ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--orange); color: #fff; padding: .5rem 1rem; z-index: var(--z-progress); border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 0; }
.text-muted  { color: var(--muted); }
.text-subtle { color: var(--subtle); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-purple { color: var(--purple); }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }

/* ── 32. RESPONSIVE ── */
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 860px)  { .contact-grid { grid-template-columns: 1fr 320px; } }
@media (min-width: 1024px) { .desktop-nav { display: flex; } .hamburger { display: none; } }
@media (min-width: 1100px) { .hero-inner { grid-template-columns: 1fr 500px; } .hero-visual { display: block; } }
@media (max-width: 767px) {
  :root { --pad-section: 4rem 0; }
  .section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr !important; }
  .tl-track, .tl-fill { left: 20px; }
  .tl-step { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto; gap: 16px; align-items: start; }
  .tl-empty { display: none !important; }
  .tl-dot-col { grid-column: 1; grid-row: 1; justify-content: center; }
  .tl-content { grid-column: 2; grid-row: 1; text-align: left !important; }
  .tl-step:nth-child(even) .tl-content { grid-column: 2; }
  .tl-step:nth-child(even) .tl-dot-col { grid-column: 1; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* ── 33. A11Y & REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, .orb, .float-chip, .marquee-track { animation: none !important; transition: none !important; }
  #cursor-dot, #cursor-ring { display: none; }
}
@media (scripting: none) {
  .js-loaded .sr, .js-loaded .sr-item, .js-loaded .kpi-card { opacity: 1 !important; transform: none !important; }
}
