/* ==========================================================================
   CompuHedge — Premium Enterprise Redesign (Light)
   Matches the CompuHedge web app: white surfaces, orange primary accent,
   subtle blue secondary, dark slate text. Stripe / modern-SaaS inspired.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Neutral surfaces */
  --bg: #ffffff;
  --bg-muted: #f6f8fb;     /* light gray section / app chrome */
  --bg-soft: #eef2f7;
  --panel: #fbfcfe;
  --border: #e6eaf1;
  --border-strong: #d5dbe6;

  /* Text */
  --text: #0f1b2d;         /* primary dark slate */
  --text-muted: #57637a;   /* secondary */
  --text-faint: #8a94a8;

  /* Brand accent (logo + app primary buttons) */
  --brand: #f7941e;
  --brand-strong: #e07c00;
  --brand-soft: rgba(247, 148, 30, 0.12);
  --brand-ring: rgba(247, 148, 30, 0.28);

  /* Secondary accent (app active/nav highlight) */
  --blue: #2563eb;
  --blue-soft: rgba(37, 99, 235, 0.10);

  /* Support */
  --positive: #1f9d72;

  /* Radii & shadows */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.05), 0 1px 3px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 27, 45, 0.12);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 76px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--text); margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 80px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--brand); display: inline-block; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.section-sub { color: var(--text-muted); font-size: 18px; margin: 0; }
.text-accent { color: var(--brand-strong); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(247, 148, 30, 0.30); }
.btn-primary:hover { background: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(224, 124, 0, 0.34); color: #fff; }
.btn-ghost { background: var(--bg); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-strong); transform: translateY(-2px); }
/* Secondary CTA on the light hero */
.btn-light { background: var(--bg); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-light:hover { border-color: var(--brand); color: var(--brand-strong); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.nav-link {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  padding: 9px 14px; border-radius: 8px; transition: color .2s ease, background .2s ease;
}
.nav-links a.nav-link:hover { color: var(--brand-strong); background: var(--brand-soft); }
/* The login inside the collapsible menu is only for mobile; hide on desktop */
.nav-menu > .nav-login { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login {
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
  padding: 10px 16px; border-radius: var(--r-md); border: 1px solid var(--border-strong);
  transition: all .2s ease;
}
.nav-login:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: background .2s; }

/* ==========================================================================
   Hero (light)
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -8%, var(--brand-soft), transparent 60%),
    radial-gradient(900px 480px at -5% 8%, var(--blue-soft), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  color: var(--text);
  padding: calc(var(--nav-h) + 84px) 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,27,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,27,45,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 25%, #000 0%, transparent 78%);
  mask-image: radial-gradient(75% 75% at 50% 25%, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 7px 14px 7px 11px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 60px); color: var(--text); line-height: 1.05; margin-bottom: 22px;
}
.hero h1 .brand-mark { color: var(--brand-strong); }
.hero-lede { font-size: 19px; color: var(--text-muted); max-width: 540px; margin-bottom: 18px; }
.hero-note { font-size: 15px; color: var(--text-faint); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.app-links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.app-links img { transition: transform .2s ease, opacity .2s ease; opacity: .94; }
.app-links a:hover img { transform: translateY(-2px); opacity: 1; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: -8% -6% -6% -2%;
  background: radial-gradient(closest-side, var(--brand-ring), transparent 70%);
  filter: blur(14px); z-index: 0; opacity: .7;
}
.hero-visual img {
  position: relative; z-index: 1; width: 100%; height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg);
}

/* Trust bar */
.trust-bar { position: relative; z-index: 2; margin-top: 64px; padding-top: 34px; border-top: 1px solid var(--border); }
.trust-bar p { text-align: center; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-stat { text-align: center; }
.trust-stat .num { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--text); }
.trust-stat .lbl { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--text-muted); font-size: 17.5px; margin-bottom: 18px; }
.about-since {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  font-size: 14px; font-weight: 600; color: var(--text);
  background: var(--bg-muted); border: 1px solid var(--border); padding: 10px 16px; border-radius: 999px;
}
.about-since svg { width: 18px; height: 18px; color: var(--brand-strong); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 34px 30px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h4 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 16px; margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card-wide { grid-column: span 2; }
@media (min-width: 993px) {
  .services-row-1 .card-wide { grid-column: span 2; }
}

/* ==========================================================================
   Advantages (feature list) — light
   ========================================================================== */
.advantages { background: var(--bg); }
.advantages .section-title { color: var(--text); }
.advantages .section-sub { color: var(--text-muted); }
.advantages .eyebrow { color: var(--brand-strong); }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feat {
  display: flex; gap: 18px; padding: 28px;
  background: var(--bg); border: 1px solid var(--border); border-left: 3px solid transparent; border-radius: var(--r-lg);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feat:hover { border-color: var(--border-strong); border-left-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat-span { grid-column: span 2; }
.feat-ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); border: 1px solid var(--brand-ring);
}
.feat-ic svg { width: 24px; height: 24px; }
.feat h4 { color: var(--text); font-size: 18.5px; margin-bottom: 8px; }
.feat p { color: var(--text-muted); font-size: 15.5px; margin: 0; }

/* ==========================================================================
   Customers (logo marquee)
   ========================================================================== */
.customers { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-cell {
  flex: 0 0 auto; width: 200px; height: 110px; display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px; transition: box-shadow .2s ease, border-color .2s ease;
}
.logo-cell:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.logo-cell img { max-height: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
.logo-cell:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 14px)); } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--bg); }
.tst-viewport { overflow: hidden; }
.tst-track {
  display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tst-slide { flex: 0 0 100%; padding: 0 6px; }
.tst-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 48px clamp(28px, 5vw, 64px); box-shadow: var(--shadow-md); max-width: 920px; margin: 0 auto;
}
.tst-quote { color: var(--brand); margin-bottom: 18px; }
.tst-quote svg { width: 40px; height: 40px; opacity: .9; }
.tst-text { font-size: 18px; line-height: 1.7; color: var(--text); margin-bottom: 26px; }
.tst-author { display: flex; align-items: center; gap: 16px; }
.tst-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: contain; background: var(--bg-muted); border: 1px solid var(--border); padding: 6px; }
.tst-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); }
.tst-role { font-size: 14.5px; color: var(--text-muted); }
.tst-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.tst-btn {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: var(--bg); border: 1px solid var(--border-strong); color: var(--text); transition: all .2s ease;
}
.tst-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.tst-dots { display: flex; gap: 9px; }
.tst-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); border: 0; cursor: pointer; padding: 0; transition: all .2s ease; }
.tst-dot.is-active { background: var(--brand); width: 26px; border-radius: 5px; }

/* ==========================================================================
   Team
   ========================================================================== */
.team { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 940px; margin: 0 auto; }
.team-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 22px; text-align: center; }
.team-info h5 { font-size: 19px; margin-bottom: 4px; }
.team-info p { color: var(--brand-strong); font-weight: 600; font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Contact / CTA — light
   ========================================================================== */
.contact { background: var(--bg); }
.contact-wrap {
  background:
    radial-gradient(640px 320px at 90% 0%, var(--brand-soft), transparent 62%),
    radial-gradient(560px 300px at 0% 100%, var(--blue-soft), transparent 60%),
    var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.contact-wrap .section-title { color: var(--text); }
.contact-wrap .eyebrow { color: var(--brand-strong); }
.contact-intro { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }
.contact-details { display: grid; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--text); font-size: 15.5px; }
.contact-item .ic { width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto; display: grid; place-items: center; background: var(--brand-soft); border: 1px solid var(--brand-ring); color: var(--brand-strong); }
.contact-item .ic svg { width: 19px; height: 19px; }
.contact-item span.lbl { display: block; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.contact-item a:hover { color: var(--brand-strong); }
.contact-cta { text-align: left; }
.contact-cta .card-soft {
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px;
}
.contact-cta h3 { color: var(--text); font-size: 23px; margin-bottom: 12px; }
.contact-cta p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 22px; }

/* ==========================================================================
   Footer — light
   ========================================================================== */
.site-footer { background: var(--bg-muted); color: var(--text-muted); padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; line-height: 1.7; color: var(--text-muted); }
.footer-col h3 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 15px; color: var(--text-muted); transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--brand-strong); }
.footer-contact p { font-size: 14.5px; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a:hover { color: var(--brand-strong); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 14px; margin: 0; color: var(--text-faint); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; border: 0; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-strong); color: #fff; }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 540px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-span { grid-column: span 1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .site-nav .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav .nav-menu.is-open { display: flex; }
  .nav-menu .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-menu .nav-links a.nav-link { color: var(--text); padding: 12px 10px; border-radius: 8px; }
  .nav-menu > .nav-login { display: block; color: var(--text); border-color: var(--border-strong); text-align: center; margin-top: 8px; }
  .section { padding: 72px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-h) + 56px); }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .tst-text { font-size: 16.5px; }
}

/* Mini CTA
   ========================================================================== */
.mini-cta { background: var(--bg-alt); }
.mini-wrap {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  background:
    radial-gradient(600px 300px at 100% 50%, var(--brand-soft), transparent 60%),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
}
.mini-body p { color: var(--text-muted); font-size: 17px; max-width: 540px; }
.mini-badge {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 140px;
}
.mini-pill {
  font-size: 2.6rem; font-weight: 800; font-family: var(--font-head);
  color: var(--brand-strong); line-height: 1;
  background: var(--brand-soft); border-radius: 999px;
  padding: 18px 28px;
}
.mini-badge p { font-size: 14px; color: var(--text-muted); margin: 0; }
.mini-badge p:first-of-type { font-weight: 600; color: var(--text); font-size: 15px; }

@media (max-width: 640px) {
  .mini-wrap { grid-template-columns: 1fr; }
  .mini-badge { flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
