/* ===================================================================
   NYVORA DIGITAL — MEMBER DASHBOARD
   Design tokens: Primary #2563EB · Background #F8FAFC · Card #FFFFFF
   Text #0F172A · Muted #64748B · Border #E2E8F0 · Success #16A34A
   Typeface: Inter (single family, weight does the work of hierarchy)
=================================================================== */

/* ---------------------------------------------------------------
   1. RESET & BASE
--------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  /* Brand palette (fixed by brief) */
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #DBEAFE;
  --color-bg: #F8FAFC;
  --color-card: #FFFFFF;
  --color-text: #0F172A;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-success: #16A34A;
  --color-success-light: #DCFCE7;

  /* Accent tints used only for card icon chips — kept subtle, never louder than primary */
  --accent-amber: #D97706;
  --accent-amber-bg: #FEF3C7;
  --accent-violet: #7C3AED;
  --accent-violet-bg: #EDE9FE;
  --accent-green: #16A34A;
  --accent-green-bg: #DCFCE7;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.10), 0 2px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.16), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
  --shadow-primary: 0 12px 24px -8px rgba(37, 99, 235, 0.35);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;

  /* Layout */
  --shell-width: 1120px;
  --nav-height: 72px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul { list-style: none; }

/* Visible keyboard focus — accessibility floor */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------------
   2. PAGE LOADER
--------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 500ms var(--ease-out), visibility 500ms var(--ease-out);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  display: flex;
  gap: 8px;
}

.loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: loaderBounce 900ms var(--ease-out) infinite;
}

.loader__dot:nth-child(2) { animation-delay: 120ms; }
.loader__dot:nth-child(3) { animation-delay: 240ms; }

@keyframes loaderBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-10px); opacity: 1; }
}

/* ---------------------------------------------------------------
   3. AMBIENT BACKGROUND — floating blobs + faint grid
--------------------------------------------------------------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  will-change: transform;
}

.ambient__blob--one {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, #93C5FD, transparent 70%);
  animation: driftOne 22s ease-in-out infinite;
}

.ambient__blob--two {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -160px;
  background: radial-gradient(circle at 60% 40%, #C4B5FD, transparent 70%);
  animation: driftTwo 26s ease-in-out infinite;
}

.ambient__blob--three {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: 30%;
  background: radial-gradient(circle at 50% 50%, #A7F3D0, transparent 70%);
  animation: driftThree 30s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes driftOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 50px) scale(1.08); }
}
@keyframes driftTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(0.95); }
}
@keyframes driftThree {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

@media (max-width: 640px) {
  .ambient__blob { filter: blur(48px); opacity: 0.4; }
}

/* ---------------------------------------------------------------
   4. NAVBAR — sticky, glass
--------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.navbar.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02), 0 8px 24px -16px rgba(15, 23, 42, 0.12);
}

.navbar__inner {
  max-width: var(--shell-width);
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #3B82F6, #1D4ED8);
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.brand__mark--sm { width: 26px; height: 26px; border-radius: 8px; box-shadow: none; }

.brand__logo-img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  display: block;
}

.brand__text {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand__suffix { color: var(--color-text-muted); font-weight: 500; }

/* Desktop links */
.navbar__links {
  display: none;
  align-items: center;
  gap: 4px;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.navbar__link i { width: 16px; height: 16px; }

.navbar__link:hover { color: var(--color-text); background: rgba(15, 23, 42, 0.04); }

.navbar__link.is-active {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}

/* Right actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text-muted);
  transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.theme-toggle i { width: 17px; height: 17px; }

.theme-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary-light);
  transform: rotate(-14deg);
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.navbar__burger span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.navbar__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  transition: max-height var(--dur-med) var(--ease-out);
}

.mobile-menu.is-open { max-height: 260px; }

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.mobile-menu__link i { width: 18px; height: 18px; color: var(--color-text-muted); }

.mobile-menu__link--accent { color: var(--color-primary-dark); }
.mobile-menu__link--accent i { color: var(--color-primary); }

@media (min-width: 860px) {
  .navbar__links { display: flex; }
  .navbar__burger { display: none; }
  .mobile-menu { display: none; }
}

/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.btn i { width: 15px; height: 15px; }

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(37, 99, 235, 0.42);
}

.btn--secondary {
  background: var(--color-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: var(--color-success);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(22, 163, 74, 0.4);
}

.btn--whatsapp:hover {
  background: #15803D;
  transform: translateY(-2px);
}

.btn--whatsapp span { display: none; }

@media (min-width: 640px) {
  .btn--whatsapp span { display: inline; }
}

/* Ripple */
.ripple {
  position: relative;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: rippleAnim 620ms ease-out forwards;
  pointer-events: none;
}

.btn--secondary .ripple-circle { background: rgba(37, 99, 235, 0.14); }

@keyframes rippleAnim {
  to { transform: scale(2.6); opacity: 0; }
}

/* ---------------------------------------------------------------
   6. SCROLL REVEAL (fade-up)
--------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .ambient__blob { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------
   7. HERO
--------------------------------------------------------------- */
main { padding-top: 40px; padding-bottom: 96px; }

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  background: linear-gradient(160deg, #1D4ED8 0%, #2563EB 46%, #3B82F6 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  padding-bottom: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
  z-index: -1;
}

.hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__eyebrow i { width: 13px; height: 13px; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #DCFCE7;
}

.hero__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.22);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.08); }
}

.hero__title {
  font-size: clamp(26px, 4.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.hero__desc {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero__desc strong { color: #fff; font-weight: 700; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.hero__meta-value {
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__meta-value i { width: 15px; height: 15px; }

.hero__meta-value--success { color: #86EFAC; }

.hero__meta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
}

@media (min-width: 720px) {
  .hero { padding: 56px 52px; }
}

/* ---------------------------------------------------------------
   8. SECTION HEADING
--------------------------------------------------------------- */
.section-heading {
  margin-top: 56px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-heading h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-heading p {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------
   9. FEATURE CARDS GRID
--------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--dur-med) var(--ease-out);
}

.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }

.card__icon i { width: 22px; height: 22px; }

.card__icon--blue { background: var(--color-primary-light); color: var(--color-primary-dark); }
.card__icon--amber { background: var(--accent-amber-bg); color: var(--accent-amber); }
.card__icon--violet { background: var(--accent-violet-bg); color: var(--accent-violet); }
.card__icon--green { background: var(--accent-green-bg); color: var(--accent-green); }

.card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.card__btn { width: 100%; }

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ---------------------------------------------------------------
   10. HELP STRIP
--------------------------------------------------------------- */
.help-strip {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.help-strip__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.help-strip__text i {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.help-strip__text strong {
  display: block;
  color: var(--color-text);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.help-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 4px;
  transition: gap var(--dur-fast) var(--ease-out);
}

.help-strip__link i { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.help-strip__link:hover i { transform: translateX(3px); }

@media (min-width: 720px) {
  .help-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------------------------------------------------------
   11. FOOTER
--------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
  background: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------------------------------------------------------
   12. BACK TO TOP
--------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-text);
  color: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), background var(--dur-fast) var(--ease-out);
  z-index: 90;
}

.to-top i { width: 18px; height: 18px; }

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover { background: var(--color-primary); }

/* ---------------------------------------------------------------
   13. MOBILE REFINEMENTS
   Prioritas utama: mayoritas member akan membuka dashboard ini
   dari HP. Blok ini menyempurnakan jarak, ukuran tombol, dan
   keterbacaan khusus untuk layar kecil (≤ 480px & ≤ 360px).
--------------------------------------------------------------- */
@media (max-width: 480px) {
  :root { --nav-height: 64px; }

  .shell { padding: 0 16px; }

  /* Navbar sedikit lebih ramping supaya area konten lebih lega */
  .navbar__inner { gap: 8px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__text { font-size: 15px; }
  .brand__suffix { display: none; } /* "Digital" disembunyikan, cukup "Nyvora" + logo */

  .btn--whatsapp { padding: 9px 12px; }

  /* Semua tombol jadi target sentuh yang nyaman (≥44px tinggi) */
  .btn { min-height: 46px; padding: 12px 18px; font-size: 14.5px; }
  .theme-toggle,
  .navbar__burger { width: 42px; height: 42px; }

  /* Hero: padding lebih pas, judul tidak terlalu besar, isi tidak sesak */
  main { padding-top: 20px; padding-bottom: 56px; }
  .hero { padding: 28px 20px; border-radius: var(--radius-md); }
  .hero__title { font-size: 24px; line-height: 1.25; }
  .hero__desc { font-size: 14.5px; }
  .hero__top { margin-bottom: 18px; }
  .hero__meta { gap: 14px; padding-top: 18px; }
  .hero__meta-divider { display: none; } /* hindari garis pemisah nyangkut di tengah baris saat wrap */

  /* Section heading & grid card lebih rapat, enak di-scroll satu tangan */
  .section-heading { margin-top: 40px; margin-bottom: 18px; }
  .section-heading h2 { font-size: 20px; }
  .grid { gap: 14px; }
  .card { padding: 22px 20px; }
  .card__desc { margin-bottom: 18px; }

  .help-strip { padding: 18px 18px; gap: 14px; }

  .to-top { width: 46px; height: 46px; right: 16px; bottom: 16px; }
}

/* Layar sangat kecil (HP lama / lebar sempit, mis. 320–360px) */
@media (max-width: 360px) {
  .hero__title { font-size: 21px; }
  .hero__eyebrow { font-size: 11.5px; padding: 5px 10px; }
  .hero__status { font-size: 11.5px; }
  .card__title { font-size: 16px; }
  .btn { font-size: 14px; padding: 11px 14px; }
}

/* Pastikan tombol full-width di kartu tetap nyaman walau teks tombol panjang */
@media (max-width: 400px) {
  .card__btn { font-size: 14px; }
}