/* ============================================
   APTUS.DIGITAL — Specialty Landing Pages
   Vertical scroll layout: dark hero → cream body → dark CTA footer
   Shared CSS for /saude/<especialidade> pages
   ============================================ */

/* ========== 1. RESET & BASE ========== */
:root {
  --lime: #5CFF00;
  --lime-dark: #4AD400;
  --lime-glow: rgba(92,255,0,0.25);
  --lime-subtle: rgba(92,255,0,0.08);
  --ink: #1a1a2e;
  --ink-light: #2d2d3a;
  --ink-muted: #6b6b80;
  --ink-faint: #9999aa;
  --cream: #f5f3ee;
  --white: #ffffff;
  --border: rgba(0,0,0,0.06);
  --font-d: "DM Serif Display", Georgia, serif;
  --font-b: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== 2. HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s var(--ease);
}
.logo-img { height: 24px; display: block; }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.nav a:hover { color: #fff; }
.nav-cta {
  background: var(--lime) !important; color: var(--ink) !important;
  padding: .45rem 1.1rem; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { opacity: .85; }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 102;
}
.mobile-menu-btn span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .25s var(--ease);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Header scrolled (light) — add .header--light via JS if needed */
.header--light {
  background: rgba(245,243,238,0.9);
  border-bottom-color: var(--border);
}
.header--light .nav a { color: var(--ink-muted); }
.header--light .nav a:hover { color: var(--ink); }
.header--light .mobile-menu-btn span { background: var(--ink); }

/* ========== 3. HERO SECTION ========== */
.hero {
  position: relative; overflow: hidden;
  padding: 8rem 2rem 5rem;
  background: var(--ink);
  color: #fff; text-align: center;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; border-radius: 999px;
  background: rgba(92,255,0,0.1); border: 1px solid rgba(92,255,0,0.2);
  color: var(--lime); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-badge svg { flex-shrink: 0; }
.hero .display-title { color: #fff; margin-bottom: 1rem; }
.hero .lead { color: rgba(255,255,255,0.7); margin: 0 auto 2rem; }
.hero .btn-row { justify-content: center; }

/* ========== 4. SECTIONS ========== */
section { padding: 5rem 2rem; }

.section-cream { background: var(--cream); color: var(--ink); }
.section-white { background: var(--white); color: var(--ink); }
.section-dark  { background: var(--ink); color: #fff; }
.section-dark .lead,
.section-dark .card p,
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark .section-tag { color: var(--lime); border-color: rgba(92,255,0,0.25); background: rgba(92,255,0,0.1); }

/* ========== 5. CONTAINER ========== */
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

/* ========== 6. TYPOGRAPHY ========== */
.section-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--lime-dark); background: var(--lime-subtle);
  border: 1.5px solid rgba(92,255,0,0.2);
  padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.display-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--ink); margin-bottom: 1rem;
}
.display-title--light { color: #fff; }
.accent { color: var(--lime-dark); font-style: italic; }
.section-dark .accent { color: var(--lime); }
.lead {
  font-size: 1.05rem; color: var(--ink-muted);
  line-height: 1.8; max-width: 640px; margin-bottom: 1.5rem;
}
.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }
.s-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--lime-dark); margin-bottom: .75rem;
}

/* ========== 7. CARDS GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem; margin-top: 2rem;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; background: var(--lime-subtle); color: var(--lime-dark);
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.red   { background: rgba(239,68,68,0.08); color: #ef4444; }
.card-icon.amber { background: rgba(245,158,11,0.08); color: #f59e0b; }
.card-icon.blue  { background: rgba(59,130,246,0.08); color: #3b82f6; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.card p { font-size: .9rem; color: var(--ink-muted); line-height: 1.6; }

/* Dark section cards */
.section-dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .card:hover {
  border-color: rgba(92,255,0,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.section-dark .card h3 { color: #fff; }

/* ========== 8. DATA TABLE ========== */
.data-table-wrap {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
  margin-top: 1.5rem;
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th,
.data-table td { padding: .85rem 1.2rem; text-align: left; }
.data-table thead th {
  background: var(--white); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted);
  border-bottom: 2px solid var(--border);
}
.data-table tbody tr { border-bottom: 1px solid var(--border); }
.data-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.015); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table td { font-size: .9rem; color: var(--ink-muted); }
.data-table .val { font-weight: 600; color: var(--ink); }
.data-table .money { color: var(--lime-dark); font-weight: 600; }
.status {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .65rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.status-green { background: rgba(74,212,0,0.08); color: var(--lime-dark); }
.status-red   { background: rgba(239,68,68,0.08); color: #ef4444; }
.status-amber { background: rgba(245,158,11,0.08); color: #f59e0b; }
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}

/* ========== 9. HIGHLIGHT BOX ========== */
.highlight-box {
  padding: 2rem; border-radius: 16px; margin-top: 2rem;
  border: 2px solid var(--lime); position: relative;
  background: linear-gradient(135deg, var(--white), var(--lime-subtle));
}
.highlight-box h3 {
  font-family: var(--font-d);
  font-size: 1.3rem; font-weight: 400; margin-bottom: .75rem;
}
.highlight-box p { color: var(--ink-muted); font-size: .95rem; }
.highlight-box ul { list-style: none; margin-top: .75rem; }
.highlight-box ul li {
  position: relative; padding-left: 1.5rem;
  margin-bottom: .4rem; font-size: .9rem; color: var(--ink-muted);
}
.highlight-box ul li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
}

/* ========== 10. STATS BAR ========== */
.stats-bar {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; margin-top: 2rem;
  justify-content: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-item .num {
  font-family: var(--font-d);
  font-size: 1.8rem; font-weight: 400; color: var(--ink); line-height: 1.2;
}
.stat-item .label { font-size: .78rem; color: var(--ink-muted); margin-top: .15rem; }

/* Dark stats variant */
.section-dark .stats-bar {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .stat-item .num { color: var(--lime); }
.section-dark .stat-item .label { color: rgba(255,255,255,0.6); }

/* ========== 11. BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 999px; font-weight: 600;
  font-size: .9rem; font-family: var(--font-b); cursor: pointer;
  border: none; transition: all .25s var(--ease); white-space: nowrap;
}
.btn-lime {
  background: var(--lime); color: var(--ink);
}
.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--lime-glow);
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ========== 11b. COMPLIANCE SECTION ========== */
.compliance-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.compliance-col h3 {
  font-family: var(--font-d); font-size: 1.15rem;
  font-weight: 400; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.compliance-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.compliance-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; line-height: 1.5;
}
.compliance-list li svg { flex-shrink: 0; margin-top: .15rem; }
.compliance-list.allowed li svg { color: var(--lime-dark); }
.compliance-list.forbidden li svg { color: #ef4444; }
.compliance-list li span { color: var(--ink-muted); }
.compliance-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 2rem; padding: 1rem 1.5rem;
  background: var(--lime-subtle); border: 2px solid var(--lime);
  border-radius: 14px; font-size: .9rem; font-weight: 600; color: var(--ink);
}
.compliance-badge svg { color: var(--lime-dark); flex-shrink: 0; }
@media (max-width: 768px) {
  .compliance-grid { grid-template-columns: 1fr; }
}

/* ========== 12. CTA SECTION ========== */
.cta-section {
  padding: 5rem 2rem;
  background: var(--ink); color: #fff;
}
.cta-section .display-title { color: #fff; }
.cta-section .lead { color: rgba(255,255,255,0.65); }
.cta-section .btn-lime { font-size: 1.05rem; padding: 1rem 2.5rem; }
.cta-section .btn-lime svg { width: 20px; height: 20px; }

/* CTA two-column layout */
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.cta-text { text-align: left; }
.cta-text .lead { margin-bottom: 1.5rem; max-width: none; }
.cta-benefits { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.cta-benefits li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: rgba(255,255,255,0.6);
}
.cta-benefits svg { color: var(--lime); flex-shrink: 0; }

/* CTA Form */
.cta-form-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; overflow: hidden;
  width: 100%; max-width: 440px;
}
.cta-form-head {
  background: rgba(92,255,0,0.1);
  border-bottom: 1px solid rgba(92,255,0,0.15);
  padding: 1rem 1.5rem;
}
.cta-form-head h3 {
  font-family: var(--font-d);
  font-size: 1.1rem; font-weight: 400; color: #fff;
}
.cta-form-head p { font-size: .78rem; color: rgba(255,255,255,0.45); }
.cta-form { padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.cta-fg { display: flex; flex-direction: column; gap: .2rem; }
.cta-fg label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,0.45); }
.cta-fg input {
  padding: .7rem .9rem;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: var(--font-b); font-size: .95rem; color: #fff;
  transition: border-color .25s;
}
.cta-fg input::placeholder { color: rgba(255,255,255,0.3); }
.cta-fg input:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(92,255,0,0.15); }
.cta-form .btn-lime { width: 100%; justify-content: center; margin-top: .25rem; }
.cta-form-note { font-size: .7rem; color: rgba(255,255,255,0.35); text-align: center; }
.cta-form-success {
  padding: 2rem 1.5rem; text-align: center; display: none;
}
.cta-form-success.visible { display: block; }
.cta-form-success .check {
  width: 56px; height: 56px; margin: 0 auto .8rem;
  background: rgba(92,255,0,0.1); border: 2px solid var(--lime);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--lime);
}
.cta-form-success h4 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 400;
  color: #fff; margin-bottom: .3rem;
}
.cta-form-success p { font-size: .85rem; color: rgba(255,255,255,0.5); }
.cta-meta {
  margin-top: 1.25rem; font-size: .8rem;
  color: rgba(255,255,255,0.4);
}

/* ========== 13. FLOATING WHATSAPP ========== */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all .25s var(--ease);
}
.floating-wa:hover { transform: scale(1.1) translateY(-3px); }
.floating-wa svg { width: 28px; height: 28px; }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ========== 13b. FLOATING MINI FORM ========== */
.float-form {
  position:fixed; bottom:0; left:0; right:0; z-index:95;
  background:var(--ink-light); border-top:1px solid rgba(255,255,255,0.1);
  transform:translateY(100%); transition:transform 400ms var(--ease);
  box-shadow:0 -8px 30px rgba(0,0,0,0.3);
  visibility:hidden;
}
.float-form.show { transform:translateY(0); visibility:visible; }
.float-form.dismissed { display:none; }
.float-form-bar {
  display:flex; align-items:center; justify-content:space-between;
  padding:.75rem 1.25rem; cursor:pointer;
}
.float-form-bar span { font-size:.85rem; font-weight:600; color:var(--lime); }
.float-form-bar .close-x {
  background:none; border:none; color:rgba(255,255,255,0.4);
  cursor:pointer; font-size:1.2rem; padding:0 .25rem; line-height:1;
}
.float-form-body {
  padding:0 1.25rem 1rem; display:none;
}
.float-form.expanded .float-form-body { display:flex; flex-direction:column; gap:.6rem; }
.float-form-body input {
  padding:.6rem .8rem; background:rgba(255,255,255,0.06);
  border:2px solid rgba(255,255,255,0.1); border-radius:8px;
  font-family:var(--font-b); font-size:.9rem; color:#fff;
  transition:border-color .2s;
}
.float-form-body input::placeholder { color:rgba(255,255,255,0.3); }
.float-form-body input:focus { outline:none; border-color:var(--lime); }
.float-form-body .btn { width:100%; font-size:.85rem; padding:.65rem; }
.floating-wa.hidden-by-float { opacity:0; pointer-events:none; }
@media (min-width:769px) {
  .float-form { left:auto; right:24px; bottom:90px; width:360px; border-radius:16px; border:1px solid rgba(255,255,255,0.1); }
}

/* ========== 13c. INLINE CTA BANNER ========== */
.inline-cta {
  margin-top:2.5rem; padding:2rem; border-radius:16px;
  background:var(--ink); color:#fff; text-align:center;
}
.inline-cta h3 {
  font-family:var(--font-d); font-size:1.3rem; font-weight:400;
  margin-bottom:.5rem;
}
.inline-cta h3 em { color:var(--lime); font-style:italic; }
.inline-cta p { font-size:.9rem; color:rgba(255,255,255,0.55); margin-bottom:1rem; }
.inline-cta .btn { font-size:.9rem; }

/* ========== 14. FOOTER ========== */
.footer {
  text-align: center; padding: 3rem 2rem;
  color: var(--ink-faint); font-size: .8rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer img { height: 22px; opacity: .4; margin-bottom: .5rem; display: inline-block; }
.footer a { color: var(--ink-muted); transition: color .2s; }
.footer a:hover { color: var(--ink); }

/* Dark footer variant */
.footer--dark {
  background: var(--ink-light);
  border-top-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
}
.footer--dark a { color: rgba(255,255,255,0.5); }
.footer--dark a:hover { color: #fff; }
.footer--dark img { filter: brightness(0) invert(1); }

/* ========== 15. SCROLL REVEAL ========== */
/* Default: everything visible. JS adds .will-reveal to hide elements below fold */
.will-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.will-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ========== 16. RESPONSIVE ========== */

/* --- Tablet (max 768px) --- */
@media (max-width: 768px) {
  /* Header */
  .header { padding: 0 1rem; height: 56px; }
  .logo-img { height: 20px; }
  .mobile-menu-btn { display: flex; align-items: center; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 280px;
    height: 100vh; height: 100dvh;
    background: var(--ink); border-left: 1px solid rgba(255,255,255,0.08);
    flex-direction: column; padding: 4rem 1.5rem 2rem; gap: 1rem;
    transition: right .4s var(--ease); z-index: 101;
  }
  .nav.active { right: 0; }
  .nav a { font-size: 1rem; color: rgba(255,255,255,0.7); }

  /* Sections */
  section { padding: 3.5rem 1.25rem; }

  /* Hero */
  .hero { padding: 6rem 1.25rem 3.5rem; min-height: auto; }

  /* Typography */
  .display-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .lead { font-size: .95rem; }
  .section-tag { font-size: .6rem; padding: .25rem .7rem; }

  /* Cards — single column */
  .cards-grid { grid-template-columns: 1fr; gap: .75rem; }
  .cards-grid-5 { grid-template-columns: repeat(2, 1fr); gap: .6rem; }

  /* Stats bar */
  .stats-bar { gap: 1.25rem; padding: 1.25rem; }
  .stat-item .num { font-size: 1.4rem; }

  /* Data table */
  .data-table th,
  .data-table td { padding: .65rem .8rem; font-size: .82rem; }
  .data-table-wrap { margin-top: 1rem; }

  /* Highlight box */
  .highlight-box { padding: 1.5rem; }
  .highlight-box h3 { font-size: 1.1rem; }

  /* Buttons */
  .btn { font-size: .85rem; padding: .75rem 1.4rem; }
  .btn-lg { font-size: .9rem; padding: .85rem 1.8rem; }
  .btn-row { gap: .5rem; }

  /* CTA */
  .cta-section { padding: 3.5rem 1.25rem; }
  .cta-section .btn-lime { font-size: .95rem; padding: .9rem 2rem; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .cta-text { text-align: center; }
  .cta-benefits { align-items: center; }
  .cta-form-box { max-width: 100%; margin: 0 auto; }

  /* Floating WA */
  .floating-wa { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .floating-wa svg { width: 24px; height: 24px; }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
  section { padding: 2.5rem 1rem; }
  .hero { padding: 5.5rem 1rem 3rem; }

  .display-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .lead { font-size: .88rem; max-width: 100%; }

  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }

  .cards-grid { gap: .6rem; }
  .cards-grid-5 { grid-template-columns: 1fr; }
  .card { padding: 1.25rem; }

  .stats-bar { flex-direction: column; gap: 1rem; }

  .data-table-wrap { border-radius: 12px; }
  .data-table th,
  .data-table td { padding: .55rem .6rem; font-size: .78rem; }

  .highlight-box { padding: 1.25rem; }

  .cta-section { padding: 2.5rem 1rem; }
  .cta-section .btn-lime { width: 100%; }
}
