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

:root {
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Selaras mood mini game (malam retro + emas + lime) */
  --lime:       #7fff00;
  --green:      #22c55e;
  --green-dark: #15803d;
  --green-glow: rgba(127,255,0,.22);
  --gold:       #ffd700;
  --gold-dark:  #c9a227;
  --orange:     #f97316;
  --panel:      #1a1a2e;
  --panel-deep: #12121f;
  --border-line:#4a4a8a;
  --bg:         #0d0d1a;
  --bg-2:       #12121f;
  --bg-card:    #1a1a2e;
  --bg-card-2:  #16162a;
  --border:     rgba(74,74,138,.35);
  --text:       #eeedf5;
  --text-muted: #aaaacc;
  --text-dim:   #7a7a9a;
  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  28px;
  --shadow:     0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== GRADIENT TEXT ===================== */
.gradient-text {
  background: linear-gradient(135deg, var(--lime) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(13,13,26,.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(74,74,138,.55);
  border-radius: 12px;
  background: rgba(26,26,46,.75);
  color: var(--lime);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-burger:hover {
  background: rgba(127,255,0,.12);
  border-color: rgba(127,255,0,.35);
}
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(13,13,26,.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 199;
  width: min(340px, 92vw);
  height: 100dvh;
  max-height: 100dvh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(0,0,0,.45);
  transform: translateX(100%);
  transition: transform .28s ease;
  padding: calc(72px + env(safe-area-inset-top, 0px)) 20px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-drawer.is-open {
  transform: translateX(0);
}
.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-mobile-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(127,255,0,.1);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s;
}
.nav-mobile-close:hover {
  background: rgba(127,255,0,.18);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-links a {
  display: block;
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.nav-mobile-links a:hover {
  background: rgba(127,255,0,.08);
  color: var(--lime);
}

body.nav-menu-open {
  overflow: hidden;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--green-dark) 100%);
  color: #0d0d1a;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px var(--green-glow), 0 0 24px rgba(255,215,0,.12);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-secondary:hover {
  border-color: rgba(127,255,0,.45);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(127,255,0,.1);
  color: var(--lime);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid rgba(74,74,138,.55);
  transition: background .2s, transform .2s, border-color .2s;
  white-space: nowrap;
}
.btn-wa:hover {
  background: rgba(127,255,0,.16);
  border-color: rgba(127,255,0,.35);
  transform: translateY(-1px);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,74,138,.35) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,.14) 0%, transparent 70%);
  bottom: -150px; right: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(127,255,0,.1) 0%, transparent 70%);
  top: 50%; left: 60%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,46,.85);
  border: 1px solid rgba(74,74,138,.55);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-align: left;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 36px;
  line-height: 1.7;
  text-align: left;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: flex-start;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: max(24px, calc((100vw - min(1160px, 100vw)) / 2 + 24px));
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== SECTION ===================== */
.section { padding: 100px 0; }
.section-dark {
  background: var(--bg-2);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74,74,138,.12) 0%, transparent 60%);
  pointer-events: none;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,26,46,.9);
  border: 1px solid rgba(74,74,138,.5);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.light { background: rgba(127,255,0,.1); border-color: rgba(127,255,0,.25); color: var(--lime); }
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(170,170,204,.78); }
.section-header.light .section-title { color: var(--text); }

/* ===================== PRODUCTS GRID ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===================== PRODUCT CARD ===================== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 40px var(--green-glow), 0 0 28px rgba(255,215,0,.08);
  border-color: rgba(74,74,138,.65);
}
.product-card:hover::before { opacity: 1; }

.product-card.featured {
  background: linear-gradient(145deg, #1e1e36, #12121f);
  border-color: rgba(127,255,0,.35);
  box-shadow: 0 8px 40px rgba(127,255,0,.12), 0 0 32px rgba(74,74,138,.2);
}
.product-card.featured::before { opacity: 1; }

.card-featured-label {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
}

.card-badge-tier {
  display: inline-block;
  background: rgba(127,255,0,.1);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.card-badge-tier.premium {
  background: rgba(255,215,0,.12);
  color: var(--gold);
}
.card-badge-tier.bali {
  background: rgba(249,115,22,.12);
  color: var(--orange);
}
.card-badge-tier.kambing-tier {
  background: rgba(139,92,246,.12);
  color: #a78bfa;
}

.card-animal-icon {
  font-size: 52px;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}

.card-content { flex: 1; display: flex; flex-direction: column; }

.card-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-name {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 12px;
  color: var(--text);
}

.card-price { margin-bottom: 10px; }
.price-range {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.5px;
}
.price-range em { font-style: normal; color: var(--lime); }
.price-range .price-suffix {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.card-weight {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card-weight .fa-solid {
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: rgba(127,255,0,.12);
  color: var(--lime);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
  flex-shrink: 0;
}

.card-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--lime), var(--green-dark));
  color: #0d0d1a;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 100px;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px var(--green-glow);
  margin-top: auto;
}
.card-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--green-glow);
}

/* Merch card — lebar 3 kolom di grid produk */
.merch-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #1c1a2e, #120f20);
  border-color: rgba(167,139,250,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1000px) {
  .products-grid .merch-card {
    grid-column: span 3;
  }
}
.merch-card::before {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
}
.merch-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.merch-emoji { font-size: 56px; }
.merch-inner h3 { font-size: 20px; line-height: 1.3; color: var(--text); }
.merch-inner p { font-size: 14px; color: var(--text-dim); max-width: 280px; }
@media (min-width: 1000px) {
  .merch-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 32px;
    max-width: none;
    text-align: left;
  }
  .merch-inner .merch-emoji { margin: 0; }
  .merch-inner h3 { flex: 1 1 200px; margin: 0; min-width: 180px; }
  .merch-inner p {
    flex: 1 1 240px;
    margin: 0;
    max-width: 360px;
  }
  .merch-inner .merch-cta { flex: 0 0 auto; margin: 0; min-width: 160px; }
}
.merch-cta {
  background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.3) !important;
}

.note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
  text-align: center;
}

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,74,138,.55);
  box-shadow: 0 12px 36px rgba(0,0,0,.35), 0 0 24px rgba(127,255,0,.06);
}
.feat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon-wrap.green {
  background: rgba(127,255,0,.12);
  color: var(--lime);
}
.feat-icon-wrap.orange {
  background: rgba(249,115,22,.15);
  color: var(--orange);
}
.feat-icon-wrap.gold {
  background: rgba(255,215,0,.12);
  color: var(--gold);
}
.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: rgba(170,170,204,.72);
  line-height: 1.6;
}

/* ===================== VOUCHER ===================== */
.voucher-section { padding: 0 0 100px; }
.voucher-card {
  background: linear-gradient(145deg, #1c1a2e, #120f20);
  border: 1px solid rgba(74,74,138,.45);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
  margin-top:100px
}
.voucher-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,215,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.voucher-left { flex: 1; }
.voucher-tag {
  display: inline-block;
  background: rgba(127,255,0,.1);
  border: 1px solid rgba(127,255,0,.28);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.voucher-left h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}
.voucher-left h3 span { color: var(--gold); }
.voucher-left p { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; }
.voucher-btn {
  background: linear-gradient(135deg, var(--lime), var(--green-dark)) !important;
  color: #0d0d1a !important;
  box-shadow: 0 4px 20px var(--green-glow), 0 0 24px rgba(255,215,0,.12) !important;
}
.voucher-right { flex-shrink: 0; }
.voucher-emoji-stack {
  display: flex;
  gap: 4px;
  font-size: 52px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}

/* ===================== CTA SECTION ===================== */
.cta-section { padding: 0px 0px 100px 0px; }
.cta-card {
  background: linear-gradient(145deg, #16162a, #0d0d1a);
  border: 1px solid rgba(74,74,138,.45);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(127,255,0,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 12px 0 16px;
  line-height: 1.1;
}
.cta-content p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 28px;
}
.big-btn {
  font-size: 17px !important;
  padding: 16px 32px !important;
}
.cta-partner {
  margin-top: 16px !important;
  font-size: 13px !important;
  color: var(--text-dim) !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}
.cta-partner strong { color: var(--text-muted); }
.cta-deco {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  margin-left: auto;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74,74,138,.45);
}
.c1 { inset: 0; animation: rotate 12s linear infinite; }
.c2 { inset: 20px; animation: rotate 8s linear infinite reverse; border-color: rgba(255,215,0,.25); }
.c3 { inset: 40px; animation: rotate 6s linear infinite; border-color: rgba(127,255,0,.2); }
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.deco-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 72px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo .logo-img {
  height: 48px;
  max-width: 220px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--lime);
  font-weight: 600;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: .7; }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ===================== FLOATING WA ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile-backdrop { display: block; }
  .nav-mobile-drawer { display: flex; }
  .cta-card { flex-direction: column; padding: 48px 32px; }
  .cta-deco { display: none; }
  .voucher-card { flex-direction: column; padding: 36px 28px; }
}
@media (max-width: 600px) {
  .hero-inner {
    text-align: center;
  }
  .hero-title {
    font-size: 60px;
    letter-spacing: -1px;
    text-align: center;
  }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-scroll-hint {
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
  }
  .hero-stats { gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid .merch-card { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary,
  .btn-wa {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  .card-cta {
    width: 100%;
    box-sizing: border-box;
  }
  .cta-card { padding: 40px 24px; }
}
