/*
 * design.css — Système de design partagé Tech-It
 * Principes: pointer-down feedback, springs, materials, optical type
 * ──────────────────────────────────────────────────────────────────── */

/* ── Tokens ── */
:root {
  --v:       #8B3FBF;
  --v-lt:    #A855F7;
  --c:       #00CFFF;
  --ink:     #1A1A1E;
  --ink-2:   #6B6B78;
  --ink-3:   #9898A0;
  --bg:      #F7F7F9;
  --surface: #FFFFFF;
  --line:    rgba(0,0,0,0.07);
  --sh-sm:   0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.05);
  --sh-md:   0 2px 8px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.08);
  --sh-lg:   0 8px 24px rgba(0,0,0,0.04), 0 32px 80px rgba(0,0,0,0.10);
  --r-sm:    12px;
  --r-md:    20px;
  --r-lg:    28px;
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--ink);
  background: var(--bg); overflow-x: hidden;
}

/* ── Type ── */
h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; letter-spacing: -0.02em; }
p  { color: var(--ink-2); line-height: 1.65; }

.g-text {
  background: linear-gradient(135deg, var(--v) 0%, var(--c) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(139,63,191,0.08); border: 1px solid rgba(139,63,191,0.18);
  border-radius: 100px; padding: 7px 16px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--v); margin-bottom: 20px;
}

/* ── Navbar ── */
.navbar {
  background: rgba(247,247,249,0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: fixed; top: 0; width: 100%; z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(247,247,249,0.95);
  box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(0,0,0,0.06);
}
.navbar .navbar-brand img { height: 44px; }
.navbar .nav-link {
  color: var(--ink) !important; font-weight: 600; font-size: 14px;
  padding: 8px 14px !important; letter-spacing: -0.01em;
  transition: color 0.15s;
}
.navbar .nav-link:hover  { color: var(--v) !important; }
.navbar .nav-link:active { color: var(--v-lt) !important; }
.navbar .nav-link.active { color: var(--v) !important; }
.navbar .navbar-toggler  { border: 1.5px solid var(--line); border-radius: 10px; }
.navbar .dropdown-menu   {
  border: 1px solid var(--line) !important; border-radius: var(--r-sm) !important;
  padding: 8px !important; box-shadow: var(--sh-md) !important;
  background: var(--surface) !important;
}
.navbar .dropdown-item   { border-radius: 8px !important; font-size: 13.5px !important; }
.navbar .dropdown-item:hover { background: var(--bg) !important; }

/* ── Buttons ── */
.btn-v, .btn btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--v); color: white !important;
  border: none; border-radius: 100px;
  padding: 12px 24px; font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em; text-decoration: none !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  cursor: pointer; font-family: inherit;
}
.btn-v:hover, .btn.btn-primary:hover {
  background: var(--v-lt) !important; color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,63,191,0.35);
}
.btn-v:active, .btn.btn-primary:active { transform: scale(0.96); transition-duration: 80ms; }

/* Bootstrap .btn-primary override */
.btn-primary {
  background: var(--v) !important; border-color: var(--v) !important;
  border-radius: 100px !important; font-weight: 700 !important;
  padding: 11px 22px !important; font-size: 14px !important;
  font-family: inherit !important; letter-spacing: -0.01em !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--spring), box-shadow 0.3s !important;
}
.btn-primary:hover {
  background: var(--v-lt) !important; border-color: var(--v-lt) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(139,63,191,0.35) !important;
}
.btn-primary:active { transform: scale(0.96) !important; transition-duration: 80ms !important; }

/* ── Cards ── */
.card-base, .card {
  background: var(--surface);
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--sh-sm) !important;
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.card-base:hover { transform: translateY(-4px); box-shadow: var(--sh-md) !important; }
.card-base:active { transform: scale(0.98); transition-duration: 120ms; }

/* ── Page hero (section above fold) ── */
.page-hero {
  background: var(--surface);
  padding: 96px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero-title { font-size: clamp(28px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 12px; color: var(--ink); }
.page-hero-sub   { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin-bottom: 20px; }
.page-trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; color: var(--ink);
}

/* ── Stepper ── */
.stepper-wrap {
  background: var(--surface); border-bottom: 1px solid var(--line);
  position: sticky; top: 68px; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stepper { display: flex; justify-content: center; align-items: stretch; max-width: 680px; margin: 0 auto; }
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 14px 8px; gap: 5px;
  border-bottom: 3px solid transparent; transition: border-color 0.25s;
}
.step.step-active { border-bottom-color: var(--v); }
.step.step-done   { border-bottom-color: #10B981; }
.step-circle {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  background: var(--bg); color: var(--ink-2); transition: all 0.25s;
}
.step.step-active .step-circle { background: var(--v); color: white; box-shadow: 0 4px 12px rgba(139,63,191,0.3); }
.step.step-done   .step-circle { background: #10B981; color: white; }
.step-label { font-size: 10.5px; font-weight: 700; color: var(--ink-2); letter-spacing: 0.04em; text-transform: uppercase; }
.step.step-active .step-label { color: var(--v); }
.step.step-done   .step-label { color: #10B981; }
.step-connector   { width: 28px; height: 2px; background: var(--line); align-self: center; flex-shrink: 0; }
.step-section     { display: none; }
.step-section.active { display: block; animation: stepIn 0.3s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Main content wrapper ── */
.main-content { max-width: 980px; margin: 0 auto; padding: 44px 24px 64px; }

/* ── Back button ── */
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1.5px solid var(--line);
  padding: 10px 20px; border-radius: 100px;
  font-weight: 700; cursor: pointer; font-size: 13.5px;
  transition: border-color 0.2s, color 0.2s, transform 0.3s var(--spring);
  color: var(--ink); margin-bottom: 32px; font-family: inherit;
}
.back-btn:hover { border-color: var(--v); color: var(--v); transform: translateX(-3px); }
.back-btn:active { transform: scale(0.96) translateX(-2px); transition-duration: 80ms; }

/* ── Search card ── */
.search-card {
  background: var(--surface); border-radius: var(--r-md); padding: 32px;
  border: 1.5px solid var(--line); box-shadow: var(--sh-sm);
}
.search-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--v); margin-bottom: 10px; }
.search-input {
  width: 100%; padding: 16px 20px; font-size: 16px;
  font-family: inherit; font-weight: 600;
  border: 2px solid var(--line); border-radius: var(--r-sm);
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--bg); letter-spacing: 0.02em;
}
.search-input:focus { border-color: var(--v); outline: none; box-shadow: 0 0 0 4px rgba(139,63,191,0.1); background: var(--surface); }
.search-btn {
  width: 100%; padding: 16px; margin-top: 12px;
  background: linear-gradient(135deg, var(--v), var(--v-lt));
  border: none; color: white; font-weight: 700; font-size: 15px;
  border-radius: var(--r-sm); cursor: pointer; font-family: inherit;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(139,63,191,0.25);
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,63,191,0.35); }
.search-btn:active { transform: scale(0.97); transition-duration: 80ms; }

/* ── Section ── */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head p { font-size: 17px; margin-top: 14px; }

/* ── Info card (contact info) ── */
.info-card { background: var(--surface); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.info-card-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--v); margin-bottom: 16px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; line-height: 1.5; }
.info-text { font-size: 15px; font-weight: 600; color: var(--ink); }
.info-sub  { font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* ── Status pill ── */
.status-bar {
  background: var(--surface); border-radius: var(--r-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; border: 1px solid var(--line); box-shadow: var(--sh-sm);
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-open .status-dot   { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.status-closed .status-dot { background: var(--ink-2); }
.status-text { font-size: 14px; font-weight: 700; color: var(--ink); }
.status-sub  { font-size: 12.5px; color: var(--ink-2); }

/* ── Hours table ── */
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-day    { font-weight: 700; color: var(--ink); }
.hours-closed { color: var(--ink-2); font-weight: 600; }
.hours-open   { color: #16a34a; font-weight: 700; }

/* ── CTA buttons ── */
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--v), var(--v-lt));
  color: white; padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(139,63,191,0.25);
}
.btn-call:hover { color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,63,191,0.38); }
.btn-call:active { transform: scale(0.96); transition-duration: 80ms; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white; padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
}
.btn-wa:hover { color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.35); }
.btn-wa:active { transform: scale(0.96); transition-duration: 80ms; }

.btn-outline-v {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line); color: var(--ink);
  padding: 12px 22px; border-radius: 100px; font-weight: 700;
  font-size: 14px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.3s var(--spring);
}
.btn-outline-v:hover { border-color: var(--v); color: var(--v); transform: translateY(-2px); }
.btn-outline-v:active { transform: scale(0.96); transition-duration: 80ms; }

/* ── Footer ── */
.footer { background: #0E0E12; color: white; padding: 72px 0 36px; }
.footer-text  { color: #666; line-height: 1.7; font-size: 14.5px; }
.footer-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #555; margin-bottom: 16px; }
.footer-link  { color: #666; text-decoration: none; display: block; margin-bottom: 10px; font-size: 14.5px; transition: color 0.2s; }
.footer-link:hover { color: var(--v-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px; padding-top: 24px; text-align: center; color: #444; font-size: 13px; }
.footer-bottom a { color: #444; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--v-lt); }

/* ── Floating buttons ── */
.float-buttons { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--spring), box-shadow 0.3s; position: relative;
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.26); }
.float-btn:active { transform: scale(0.93); transition-duration: 80ms; }
.float-wa  { background: #25D366; animation: waPulse 3s ease-in-out infinite; }
.float-wa:hover { animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 0 0 6px rgba(37,211,102,0.08); }
}
.float-tel { background: linear-gradient(135deg, var(--v), var(--v-lt)); }
.float-tooltip {
  position: absolute; right: 62px; background: var(--ink); color: white;
  padding: 5px 12px; border-radius: 7px; font-size: 12.5px; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.15s; font-family: inherit;
}
.float-btn:hover .float-tooltip { opacity: 1; }
.float-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--ink); }

/* ── Bottom nav mobile ── */
@media (max-width: 991px) { body { padding-bottom: 64px !important; } .float-buttons { bottom: 80px !important; } }
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(247,247,249,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--line);
  display: flex; z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -1px 0 var(--line), 0 -4px 16px rgba(0,0,0,0.06);
}
.bni {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 8px 4px 10px;
  color: var(--ink-2); text-decoration: none;
  font-size: 10px; font-weight: 700; gap: 3px; letter-spacing: 0.01em;
  transition: color 0.15s, transform 0.2s var(--spring);
}
.bni i { font-size: 21px; line-height: 1; }
.bni.active { color: var(--v); }
.bni:hover  { color: var(--v); transform: translateY(-2px); }
.bni:active { transform: scale(0.9); transition-duration: 80ms; }

/* ── Cookie banner ── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 2.5px solid var(--v);
  padding: 18px 24px; z-index: 10000; box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-text  { font-size: 13.5px; color: #555; flex: 1; min-width: 260px; }
.cookie-text strong { color: var(--ink); }
.cookie-text a { color: var(--v); font-weight: 600; }
.cookie-btns  { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-refuse {
  background: transparent; color: var(--ink-2); border: 1.5px solid var(--line);
  padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 13.5px;
  cursor: pointer; font-family: inherit; transition: border-color 0.15s, color 0.15s;
}
.cookie-refuse:hover { border-color: var(--ink-2); color: var(--ink); }
.cookie-accept {
  background: var(--v); color: white; border: none;
  padding: 9px 22px; border-radius: 100px; font-weight: 700; font-size: 13.5px;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, transform 0.2s var(--spring);
}
.cookie-accept:hover { background: var(--v-lt); transform: scale(1.03); }
.cookie-accept:active { transform: scale(0.96); transition-duration: 80ms; }

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: opacity 150ms, color 150ms !important; }
  .float-wa { animation: none !important; }
}
@media (prefers-reduced-transparency: reduce) {
  .navbar { background: var(--bg) !important; backdrop-filter: none !important; }
  .bottom-nav { background: var(--bg) !important; backdrop-filter: none !important; }
}

/* ── Plan cards (forfaits) ── */
.plan-card {
  background: var(--surface); border-radius: var(--r-lg); padding: 40px 30px;
  border: 2px solid var(--line) !important; position: relative; height: 100%;
  transition: transform 0.35s var(--spring), box-shadow 0.35s, border-color 0.2s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg) !important; border-color: rgba(139,63,191,0.2) !important; }
.plan-card:active { transform: scale(0.98); transition-duration: 100ms; }
.plan-card.featured { border-color: var(--v) !important; box-shadow: 0 12px 40px rgba(139,63,191,0.18) !important; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--v), var(--c));
  color: white; padding: 4px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,207,255,0.3);
}
.plan-name  { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.plan-data  { color: var(--ink-2); font-size: 14px; margin-bottom: 20px; }
.plan-price { font-size: 56px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -0.04em; }
.plan-price span { font-size: 18px; font-weight: 400; color: var(--ink-2); }
.plan-features { list-style: none; margin: 24px 0 28px; }
.plan-features li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.plan-features li:last-child { border: none; }
.plan-check { color: #10B981; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.btn-plan {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--v), var(--v-lt));
  color: white; padding: 16px; border-radius: var(--r-md);
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(139,63,191,0.25);
}
.btn-plan:hover { color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,63,191,0.4); }
.btn-plan:active { transform: scale(0.97); transition-duration: 80ms; }
.btn-plan-ghost {
  display: block; text-align: center;
  border: 2px solid var(--v); color: var(--v); background: transparent;
  padding: 14px; border-radius: var(--r-md); font-weight: 700; font-size: 15px;
  text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.3s var(--spring);
}
.btn-plan-ghost:hover { background: var(--v); color: white; transform: translateY(-2px); }
.btn-plan-ghost:active { transform: scale(0.97); transition-duration: 80ms; }
.badge-5g {
  display: inline-block; background: linear-gradient(135deg, #10B981, #059669);
  color: white; padding: 3px 9px; border-radius: 100px; font-size: 11px; font-weight: 900;
  margin-left: 5px; vertical-align: middle;
}

/* ── FAQ ── */
.faq-item {
  background: var(--surface); border-radius: var(--r-md); padding: 26px 30px;
  margin-bottom: 10px; border: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-question { font-size: 16px; font-weight: 700; color: var(--v); margin-bottom: 8px; letter-spacing: -0.01em; }
.faq-answer   { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }

/* ── Product card ── */
.product-card {
  background: var(--surface); border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--spring), box-shadow 0.35s;
  overflow: hidden; cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.product-card:active { transform: scale(0.98); transition-duration: 100ms; }
.product-card .product-img { height: 180px; object-fit: contain; width: 100%; padding: 16px; background: var(--bg); }
.product-card .product-body { padding: 18px; }
.product-card .product-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.product-card .product-price { font-size: 22px; font-weight: 900; color: var(--v); letter-spacing: -0.02em; margin: 8px 0; }

/* ── Marquee ── */
.marquee-strip { background: linear-gradient(135deg, var(--v) 0%, var(--v-lt) 50%, var(--c) 100%); padding: 12px 0; overflow: hidden; }
.marquee-inner {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track { display: flex; align-items: center; white-space: nowrap; animation: marquee 36s linear infinite; will-change: transform; flex-shrink: 0; min-width: 100%; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 7px; color: white; font-size: 12.5px; font-weight: 700; padding: 0 24px; }
.marquee-sep  { color: rgba(255,255,255,0.3); font-size: 14px; }

/* ── Responsive helpers ── */
@media (max-width: 768px) {
  .section, .section-sm { padding: 64px 0; }
  .main-content { padding: 28px 16px 48px; }
  .float-buttons { bottom: 20px; right: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 19px; }
  .float-tooltip { display: none; }
  .section-head { margin-bottom: 40px; }
}
