/* ==========================================================================
   LifterLMS Expert — Design System
   Deep Blue + Teal  |  Bootstrap 5 extension layer
   Author: LifterLMS Expert  |  Production-ready, WordPress-migration friendly
   ========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */
:root {
  /* Brand — deep blue + teal */
  --navy-900: #061a30;
  --navy-800: #0a2540;
  --navy-700: #0e3157;
  --blue-700: #0f4fa8;
  --blue-600: #1466d4;
  --blue-500: #2a7de1;
  --teal-600: #0e9c93;
  --teal-500: #12b6ac;
  --teal-400: #2ad0c4;
  --cyan-400: #35c8e8;

  /* Neutrals */
  --ink: #0b1b32;
  --slate-700: #33445c;
  --slate-500: #5a6b82;
  --slate-400: #7d8ba0;
  --line: #e5ecf4;
  --bg: #ffffff;
  --bg-soft: #f5f9fd;
  --bg-softer: #eef4fb;

  /* Semantic */
  --primary: var(--blue-600);
  --primary-dark: var(--blue-700);
  --accent: var(--teal-500);
  --success: #1aa06d;
  --danger: #d64545;

  /* Effects */
  --grad-brand: linear-gradient(120deg, var(--blue-700) 0%, var(--blue-500) 45%, var(--teal-500) 100%);
  --grad-brand-soft: linear-gradient(120deg, #0a2540 0%, #103a6b 55%, #0e6b74 100%);
  --grad-text: linear-gradient(90deg, #2a7de1 0%, #12b6ac 100%);
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 2px 6px rgba(10, 37, 64, .06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, .10);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .16);
  --shadow-brand: 0 18px 40px rgba(20, 102, 212, .28);

  /* Shape */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container-max: 1200px;
}

/* ------------------------------ Base ------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--slate-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--container-max); }

section { position: relative; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-softer { background: var(--bg-softer); }
.bg-navy { background: var(--navy-800); color: #cfe0f2; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------- Utility bits ------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-600);
  background: rgba(18, 182, 172, .10);
  padding: .4rem .85rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--teal-400); background: rgba(42, 208, 196, .14); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--slate-500); font-size: 1.08rem; }
.lead { font-size: 1.15rem; color: var(--slate-500); }

.divider-dots { letter-spacing: .35em; color: var(--teal-500); font-weight: 800; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  font-weight: 700;
  border-radius: 100px;
  padding: .8rem 1.6rem;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  border: 0;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }

.btn-brand {
  background: var(--grad-brand);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: var(--shadow-brand);
  position: relative;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 22px 46px rgba(20, 102, 212, .38);
}
.btn-outline-brand {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn-outline-brand:hover {
  border-color: var(--blue-500);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost-light {
  border: 1.5px solid rgba(255, 255, 255, .32);
  color: #fff; background: transparent;
}
.btn-ghost-light:hover { color: var(--navy-900); background: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn .bi { vertical-align: -2px; }

/* Pulsing CTA accent */
.btn-brand.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(18, 182, 172, .5);
  animation: ctaPulse 2.6s infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(18, 182, 172, .45); }
  70% { box-shadow: 0 0 0 16px rgba(18, 182, 172, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 182, 172, 0); }
}

/* ------------------------- Announcement bar ----------------------------- */
.announce {
  background: var(--navy-900);
  color: #d7e6f7;
  font-size: .875rem;
  text-align: center;
  padding: .55rem 1rem;
}
.announce a { color: var(--teal-400); font-weight: 700; }
.announce .bi { color: var(--teal-400); }

/* ------------------------------ Navbar ---------------------------------- */
.navbar {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  padding-top: .65rem; padding-bottom: .65rem;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--ink); font-size: 1.18rem; letter-spacing: -.02em; }
.navbar-brand:hover { color: var(--ink); }
.navbar-brand .logo-mark { width: 38px; height: 38px; }
.brand-em { color: var(--teal-600); }

.navbar .nav-link {
  color: var(--slate-700);
  font-weight: 600;
  padding: .5rem .9rem !important;
  border-radius: 8px;
  position: relative;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary-dark); }
.navbar .nav-link.active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .1rem;
  height: 2px; border-radius: 2px; background: var(--grad-text);
}
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  margin-top: .6rem !important;
}
.dropdown-item { border-radius: 10px; padding: .55rem .75rem; font-weight: 600; color: var(--slate-700); }
.dropdown-item:hover, .dropdown-item:focus { background: var(--bg-soft); color: var(--primary-dark); }
.dropdown-item .bi { color: var(--teal-600); margin-right: .5rem; }

/* --------------------------- Hero sections ------------------------------ */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(42, 208, 196, .16), transparent 60%),
    radial-gradient(900px 460px at 6% 6%, rgba(42, 125, 225, .14), transparent 55%),
    var(--bg-soft);
  overflow: hidden;
}
.hero .badge-verify {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: .45rem 1rem; font-weight: 700;
  color: var(--ink); font-size: .85rem; box-shadow: var(--shadow-sm);
}
.hero .badge-verify .bi { color: var(--teal-600); }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { max-width: 560px; }

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(42, 208, 196, .16), transparent 60%),
    var(--grad-brand-soft);
  color: #cfe0f2;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #b9cbe0; }

/* Breadcrumbs */
.crumbs { font-size: .85rem; }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs .sep { color: rgba(255,255,255,.4); margin: 0 .5rem; }
.crumbs .cur { color: #fff; font-weight: 600; }

/* --------------------------- Floating dashboard ------------------------- */
.hero-visual { position: relative; }
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.1rem; position: relative; z-index: 2;
}
.mock-bar { display: flex; gap: .4rem; margin-bottom: .9rem; }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.mock-bar span:nth-child(1){ background:#ff6058;} .mock-bar span:nth-child(2){ background:#ffbd2e;} .mock-bar span:nth-child(3){ background:#28c840;}
.mock-row { display: flex; align-items: center; gap: .75rem; padding: .6rem .5rem; border-radius: 12px; }
.mock-row + .mock-row { border-top: 1px solid var(--bg-softer); }
.mock-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.mock-line { height: 9px; border-radius: 6px; background: var(--bg-softer); }

.float-chip {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: .7rem .9rem;
  display: flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink);
  font-size: .9rem; z-index: 3;
}
.float-chip .bi { font-size: 1.1rem; }
.float-a { top: 6%; left: -4%; animation: floatY 5.5s ease-in-out infinite; }
.float-b { bottom: 8%; right: -5%; animation: floatY 6.5s ease-in-out infinite .6s; }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; z-index: 1; }

/* ------------------------------ Cards ----------------------------------- */
.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-soft:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(20,102,212,.25); }

.feature-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 1.1rem;
  background: var(--grad-brand); box-shadow: var(--shadow-brand);
}
.feature-ico.alt { background: linear-gradient(135deg, var(--teal-600), var(--teal-400)); box-shadow: 0 14px 30px rgba(18,182,172,.3); }

.svc-card { display: block; color: inherit; }
.svc-card:hover { color: inherit; }
.svc-card h3 { transition: color .2s ease; }
.svc-card:hover h3 { color: var(--primary-dark); }
.svc-card .go { color: var(--primary); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; }
.svc-card:hover .go .bi { transform: translateX(4px); }
.svc-card .go .bi { transition: transform .2s ease; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.check-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 0;
  color: var(--teal-600); font-size: 1.1rem;
}
.check-list.on-dark li { color: #c9dcef; }
.check-list.on-dark li::before { color: var(--teal-400); }

/* Pill tags */
.tag { display: inline-block; background: var(--bg-soft); border: 1px solid var(--line); color: var(--slate-700);
  border-radius: 100px; padding: .35rem .85rem; font-size: .82rem; font-weight: 600; margin: .2rem; }
.tag .bi { color: var(--teal-600); margin-right: .35rem; }

/* ------------------------------ Stats ----------------------------------- */
.stat { text-align: center; padding: 1rem; }
.stat .num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat .num .suf { color: var(--teal-600); }
.stat .lbl { color: var(--slate-500); font-weight: 600; font-size: .95rem; margin-top: .4rem; }
.bg-navy .stat .num { color: #fff; }
.bg-navy .stat .num .suf { color: var(--teal-400); }
.bg-navy .stat .lbl { color: #9db6d2; }

/* ------------------------- Trust / logos strip -------------------------- */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.4rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: var(--slate-500); font-weight: 700; }
.trust-item .bi { color: var(--teal-600); font-size: 1.2rem; }

/* --------------------------- Process timeline --------------------------- */
.steps { counter-reset: step; position: relative; }
.step { position: relative; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); height: 100%; }
.step .step-num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: var(--grad-brand); margin-bottom: 1rem; font-size: 1.1rem;
}
.step h3 { font-size: 1.15rem; }

/* --------------------------- Integrations grid -------------------------- */
.integration {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem; text-align: center; font-weight: 700; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease; height: 100%;
}
.integration:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.integration .bi { font-size: 1.7rem; color: var(--teal-600); display: block; margin-bottom: .5rem; }
.integration small { display: block; color: var(--slate-400); font-weight: 500; }

/* ------------------------------ Accordion ------------------------------- */
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius) !important; margin-bottom: .85rem; overflow: hidden; background: #fff; }
.accordion-button { font-weight: 700; color: var(--ink); padding: 1.15rem 1.35rem; box-shadow: none !important; background: #fff; }
.accordion-button:not(.collapsed) { color: var(--primary-dark); background: var(--bg-soft); }
.accordion-button::after { background-size: 1.1rem; }
.accordion-body { color: var(--slate-500); padding: 0 1.35rem 1.25rem; }

/* --------------------------- CTA band ----------------------------------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 85% 10%, rgba(42, 208, 196, .22), transparent 60%),
    var(--grad-brand-soft);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0f2; }
.cta-band .deco { position: absolute; right: -40px; bottom: -40px; opacity: .15; font-size: 14rem; color: #fff; line-height: 1; }

/* ------------------------------ Blog ------------------------------------ */
.post-card { overflow: hidden; padding: 0; }
.post-thumb { aspect-ratio: 16/9; display: grid; place-items: center; color: #fff; position: relative; }
.post-thumb .bi { font-size: 3rem; opacity: .9; }
.post-body { padding: 1.4rem; }
.post-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--teal-600); }
.post-card h3 { font-size: 1.18rem; margin: .5rem 0 .6rem; }
.post-meta { font-size: .82rem; color: var(--slate-400); }

.cat-pill { display: inline-block; padding: .5rem 1rem; border-radius: 100px; border: 1px solid var(--line);
  background: #fff; font-weight: 600; color: var(--slate-700); margin: .25rem; font-size: .9rem; transition: all .2s ease; }
.cat-pill:hover, .cat-pill.active { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* --------------------------- Case studies ------------------------------- */
.case-card { overflow: hidden; padding: 0; height: 100%; }
.case-top { padding: 1.6rem; color: #fff; }
.case-top .badge-demo { background: rgba(255,255,255,.2); border-radius: 100px; padding: .25rem .7rem; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.case-body { padding: 1.5rem; }
.metric-row { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.metric { flex: 1; min-width: 90px; }
.metric .m-num { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.metric .m-lbl { font-size: .8rem; color: var(--slate-400); font-weight: 600; }

/* ------------------------------ Forms ----------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form-label { font-weight: 700; color: var(--ink); font-size: .9rem; margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem 1rem; font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus, .form-select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(42, 125, 225, .12); }
.form-control.is-invalid { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .82rem; margin-top: .3rem; display: none; }
.field-error.show { display: block; }
.form-note { font-size: .82rem; color: var(--slate-400); }
.form-alert { border-radius: 12px; padding: .9rem 1.1rem; font-weight: 600; display: none; }
.form-alert.show { display: block; }
.form-alert.ok { background: rgba(26,160,109,.1); color: var(--success); border: 1px solid rgba(26,160,109,.3); }
.form-alert.err { background: rgba(214,69,69,.08); color: var(--danger); border: 1px solid rgba(214,69,69,.3); }

.contact-aside { background: var(--grad-brand-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); color: #cfe0f2; height: 100%; }
.contact-aside h3 { color: #fff; }
.contact-aside .ci { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-aside .ci .bi { color: var(--teal-400); font-size: 1.3rem; flex: 0 0 auto; margin-top: .1rem; }
.contact-aside a { color: #fff; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--navy-900); color: #9db6d2; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer h5 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #9db6d2; display: inline-block; padding: .25rem 0; }
.site-footer a:hover { color: var(--teal-400); }
.site-footer .navbar-brand { color: #fff; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: inline-grid; place-items: center; background: rgba(255,255,255,.06); color: #cfe0f2; margin-right: .5rem; }
.footer-social a:hover { background: var(--grad-brand); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: #6f88a6; }

/* --------------------------- Prose (articles) --------------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .7rem; }
.prose p, .prose li { color: var(--slate-700); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose blockquote { border-left: 4px solid var(--teal-500); padding: .5rem 0 .5rem 1.3rem; color: var(--slate-500); font-style: italic; margin: 1.5rem 0; }

/* ---------------------- Scroll reveal animations ------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.in { opacity: 1; transform: none; }

.fade-up { animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) both; }
.fade-up.a1 { animation-delay: .1s; } .fade-up.a2 { animation-delay: .25s; } .fade-up.a3 { animation-delay: .4s; } .fade-up.a4 { animation-delay: .55s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: none; } }

.spin-slow { animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------ Helpers --------------------------------- */
.shadow-soft { box-shadow: var(--shadow-md) !important; }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.text-slate { color: var(--slate-500) !important; }
.fw-800 { font-weight: 800 !important; }
.maxw-620 { max-width: 620px; }
.z-2 { position: relative; z-index: 2; }
.icon-badge { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(18,182,172,.12); color: var(--teal-600); font-size: 1.3rem; flex: 0 0 auto; }

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 991.98px) {
  .navbar-collapse { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin-top: .7rem; box-shadow: var(--shadow-md); }
  .navbar .nav-link.active::after { display: none; }
  .float-chip { display: none; }
  .cta-band .deco { display: none; }
}
@media (max-width: 767.98px) {
  body { font-size: .98rem; }
  .hero { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .badge-verify { margin-inline: auto; }
  .section-head { margin-bottom: 2rem; }
}

/* ---------------------- Reduced motion preference ----------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .float-a, .float-b, .spin-slow, .btn-brand.pulse::after { animation: none !important; }
}

/* ---------------------- Print (clean fallback) -------------------------- */
@media print {
  .navbar, .announce, .site-footer, .cta-band, .float-chip { display: none !important; }
  body { color: #000; }
}
