/* ============================================================
   RUANG CLARA — mystical tarot studio
   Deep midnight · warm gold · rose · purple
   ============================================================ */

:root {
  --bg-0: #0a0616;
  --bg-1: #120a28;
  --bg-2: #1a1238;
  --bg-3: #231847;
  --gold: #e8c97a;
  --gold-br: #f5d896;
  --gold-dim: #b49052;
  --rose: #d46a84;
  --rose-dim: #a84b66;
  --purple: #9a7cd4;
  --purple-dim: #6a4ca5;
  --cream: #f5f0e8;
  --muted: #b7a7d4;
  --dim: #8577a8;
  --line: rgba(232, 201, 122, 0.18);
  --line-2: rgba(255, 255, 255, 0.06);
  --glass: rgba(26, 18, 56, 0.55);
  --ok: #7ecd9b;
  --shadow: 0 10px 40px -10px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
  --glow-gold: 0 0 40px -8px rgba(232, 201, 122, 0.4);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tight: -0.02em;
  --serif: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg-1);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(154, 124, 212, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212, 106, 132, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(232, 201, 122, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0616 0%, #120a28 40%, #1a1238 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-br); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 15px; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--gold); }
::selection { background: rgba(232, 201, 122, 0.3); color: var(--cream); }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; letter-spacing: var(--tight); color: var(--cream); line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
h5 { font-size: 0.9rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(232, 201, 122, 0.06);
  margin-bottom: 18px;
}

/* Layout utilities */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0; background: linear-gradient(90deg, var(--gold), var(--rose));
  z-index: 9999; transition: width .1s;
}

/* Announcement marquee */
.announcement {
  background: linear-gradient(90deg, var(--bg-1), var(--bg-2) 50%, var(--bg-1));
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 10px 0;
  font-size: 0.82rem; color: var(--cream);
}
.announcement-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.announcement-track span { flex-shrink: 0; opacity: 0.92; }
.announcement-track b { color: var(--gold); font-weight: 600; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 6, 22, 0.7);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line-2);
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 28px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.brand-mark { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.brand-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.01em; }
.brand-text em { color: var(--gold); }
.nav-links { display: flex; gap: 28px; margin-left: auto; margin-right: 20px; }
.nav-links a {
  color: var(--cream); font-size: 0.9rem; font-weight: 500;
  opacity: 0.8; transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.cart-btn {
  position: relative; padding: 10px;
  color: var(--cream); transition: color .2s;
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: 3px; right: 3px;
  background: var(--gold); color: var(--bg-1);
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; line-height: 1;
  transform: scale(0); transition: transform .2s var(--ease);
}
.cart-count.show { transform: scale(1); }
.menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { width: 22px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--line);
    padding: 24px; flex-direction: column; gap: 18px; }
  .nav-links.open { display: flex; }
  .menu-btn { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all .25s var(--ease);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-br) 100%);
  color: var(--bg-1);
  box-shadow: 0 10px 24px -10px rgba(232, 201, 122, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(232, 201, 122, 0.6);
  color: var(--bg-1);
}
.btn-rose { background: linear-gradient(135deg, var(--rose) 0%, #e888a1 100%); color: #fff; box-shadow: 0 10px 24px -10px rgba(212, 106, 132, 0.5); }
.btn-rose:hover { color: #fff; box-shadow: 0 14px 30px -8px rgba(212, 106, 132, 0.6); }
.btn-purple { background: linear-gradient(135deg, var(--purple) 0%, #b79ce6 100%); color: #fff; box-shadow: 0 10px 24px -10px rgba(154, 124, 212, 0.5); }
.btn-purple:hover { color: #fff; }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(232, 201, 122, 0.04); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: var(--cream); border: 1px solid var(--line-2); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-shopee { background: #ee4d2d; color: #fff; }
.btn-shopee:hover { background: #d8401f; color: #fff; }
.btn-wide { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

/* Hero */
.hero {
  position: relative; min-height: min(90vh, 820px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px 100px; text-align: center;
  overflow: hidden;
}
.hero-stars {
  position: absolute; inset: 0; z-index: 0; opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 25% 70%, var(--gold), transparent),
    radial-gradient(1px 1px at 40% 15%, #fff, transparent),
    radial-gradient(1px 1px at 55% 55%, var(--gold-br), transparent),
    radial-gradient(1px 1px at 70% 30%, #fff, transparent),
    radial-gradient(1px 1px at 85% 80%, var(--gold), transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 80% 40%, var(--gold-br), transparent),
    radial-gradient(1px 1px at 35% 35%, #fff, transparent),
    radial-gradient(1px 1px at 65% 75%, var(--gold), transparent);
  background-size: 100% 100%; animation: twinkle 6s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.6; } }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(232, 201, 122, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 20% 60%, rgba(212, 106, 132, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 30% 60% at 80% 40%, rgba(154, 124, 212, 0.12) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-content h1 { margin-bottom: 22px; }
.hero-content p { font-size: 1.1rem; color: var(--muted); max-width: 640px; margin: 0 auto 36px; line-height: 1.65; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px;
  background: rgba(26, 18, 56, 0.5); border: 1px solid var(--line);
  border-radius: 999px; font-size: 0.85rem; color: var(--muted);
  backdrop-filter: blur(10px);
}
.hero-meta b { color: var(--gold); font-weight: 700; }
.hero-meta .stars-line { color: var(--gold); letter-spacing: 2px; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1px solid var(--line);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
  z-index: 2;
}
.hero-scroll span {
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(26, 18, 56, 0.35);
  padding: 28px 20px;
}
.trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.trust-item b { display: block; font-weight: 600; font-size: 0.92rem; color: var(--cream); }
.trust-item span { font-size: 0.78rem; color: var(--dim); }
@media (max-width: 780px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* Value section */
.value { padding: 100px 20px; }
.value-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.value-head h2 { margin-bottom: 12px; }
.value-grid {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
.value-grid li {
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s;
}
.value-grid li:hover { border-color: var(--line); transform: translateY(-4px); }
.value-grid svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 16px; }
.value-grid h3 { font-size: 1.15rem; margin-bottom: 6px; }
.value-grid p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 880px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .value-grid { grid-template-columns: 1fr; } }

/* Problem */
.problem { padding: 100px 20px; text-align: center; }
.problem h2 { margin-bottom: 48px; }
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1180px; margin: 0 auto 40px;
}
.problem-grid > div {
  background: rgba(26, 18, 56, 0.3); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 26px 22px; text-align: left;
  transition: border-color .3s, transform .3s;
}
.problem-grid > div:hover { border-color: var(--line); transform: translateY(-3px); }
.problem-grid span {
  display: block; font-family: var(--serif); font-size: 0.85rem;
  color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px;
}
.problem-grid h4 { font-size: 1.1rem; margin-bottom: 8px; }
.problem-grid p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.problem-note { font-size: 1rem; color: var(--muted); margin-top: 30px; }
.problem-note b { color: var(--gold); font-weight: 600; }
@media (max-width: 880px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .problem-grid { grid-template-columns: 1fr; } }

/* Featured & Products */
.featured, .products { padding: 100px 20px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); }

.filter-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 auto 40px; max-width: 1000px;
}
.chip {
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-2);
  color: var(--muted); font-size: 0.82rem; font-weight: 500;
  transition: .2s;
}
.chip:hover { color: var(--gold); border-color: var(--line); }
.chip.active {
  background: var(--gold); color: var(--bg-1);
  border-color: var(--gold); font-weight: 600;
}

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
.featured-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .product-grid, .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .product-grid, .featured-grid { grid-template-columns: 1fr; } }

.product-card {
  background: linear-gradient(180deg, rgba(35, 24, 71, 0.5), rgba(18, 10, 40, 0.7));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: var(--line); transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow-gold);
}
.product-card .pc-cover {
  aspect-ratio: 1 / 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a1a54 0%, #120a28 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.product-card.jodoh .pc-cover { background: linear-gradient(135deg, #4a1a2f 0%, #2a0f1a 100%); }
.product-card.karir .pc-cover { background: linear-gradient(135deg, #3d2e10 0%, #1e1608 100%); }
.product-card.diri .pc-cover { background: linear-gradient(135deg, #1c1a4a 0%, #0a0820 100%); }
.product-card.premium .pc-cover { background: linear-gradient(135deg, #3a1a54 0%, #15082a 100%); }
.product-card.tahunan .pc-cover { background: linear-gradient(135deg, #3a2a14 0%, #1e1308 100%); }
.product-card.member .pc-cover { background: linear-gradient(135deg, #4a2a14 0%, #2a1a08 100%); }
.product-card .pc-illus {
  width: 88%; height: 88%;
  color: var(--gold);
  filter: drop-shadow(0 2px 12px rgba(232, 201, 122, 0.18));
  transition: transform .4s ease;
}
.product-card:hover .pc-illus { transform: scale(1.05); }
.product-card.jodoh   .pc-illus { color: var(--rose);   filter: drop-shadow(0 2px 12px rgba(212, 106, 132, 0.22)); }
.product-card.diri    .pc-illus { color: var(--purple); filter: drop-shadow(0 2px 12px rgba(154, 124, 212, 0.22)); }
.product-card.premium .pc-illus { color: var(--purple); filter: drop-shadow(0 2px 12px rgba(154, 124, 212, 0.22)); }
.product-card .pc-tag {
  position: absolute; bottom: 10px; right: 10px;
  font-size: 0.62rem; font-family: var(--sans); font-weight: 600;
  color: var(--cream); background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.12);
}
.product-card .pc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--bg-1);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase;
}
.product-card .pc-badge.new { background: var(--rose); color: #fff; }
.product-card .pc-badge.premium { background: var(--purple); color: #fff; }
.product-card .pc-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card .pc-name { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 4px; line-height: 1.3; }
.product-card .pc-cat { font-size: 0.72rem; color: var(--dim); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.product-card .pc-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.product-card .pc-verified {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-family: var(--sans); font-weight: 500;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.10), rgba(238, 77, 45, 0.04));
  border: 1px solid rgba(238, 77, 45, 0.32);
  padding: 5px 10px 5px 6px; border-radius: 999px;
  margin-bottom: 12px;
  text-decoration: none;
  align-self: flex-start;
  transition: all .2s ease;
  letter-spacing: 0.01em;
}
.product-card .pc-verified:hover {
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.20), rgba(238, 77, 45, 0.08));
  border-color: rgba(238, 77, 45, 0.55);
  color: var(--cream); transform: translateY(-1px);
}
.product-card .pc-verified-tick {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ee4d2d; color: #fff;
  border-radius: 50%; font-size: 0.62rem; font-weight: 800;
  flex-shrink: 0;
}
.product-card .pc-verified-text b { color: var(--gold); font-weight: 700; }
.product-card .pc-verified-arrow { color: rgba(245, 240, 232, 0.45); font-size: 0.65rem; }
.product-card .pc-meta .pc-star { color: var(--gold); }
.product-card .pc-price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px;
  margin-top: auto;
}
.product-card .pc-price b { font-size: 1.15rem; color: var(--gold); font-weight: 700; font-family: var(--sans); }
.product-card .pc-price s { font-size: 0.82rem; color: var(--dim); }
.product-card .pc-price .disc {
  font-size: 0.7rem; font-weight: 700; color: var(--rose);
  background: rgba(212, 106, 132, 0.15); padding: 2px 6px; border-radius: 4px;
}
.product-card .pc-actions { display: flex; gap: 6px; }
.product-card .pc-add {
  flex: 1; padding: 10px; border-radius: 8px;
  background: var(--gold); color: var(--bg-1);
  font-size: 0.82rem; font-weight: 600;
  transition: .2s;
}
.product-card .pc-add:hover { background: var(--gold-br); }
.product-card .pc-info {
  width: 38px; padding: 10px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--muted); transition: .2s; font-size: 0.9rem;
}
.product-card .pc-info:hover { color: var(--gold); border-color: var(--line); }

/* Showcase sections */
.showcase { padding: 80px 20px; }
.showcase-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.showcase-grid.reverse > :first-child { order: 2; }
.showcase-text h2 { margin-bottom: 20px; }
.showcase-text p { color: var(--muted); margin-bottom: 22px; line-height: 1.7; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li {
  padding: 10px 0 10px 30px; position: relative;
  color: var(--cream); font-size: 0.95rem;
  border-bottom: 1px solid var(--line-2);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '✦'; position: absolute; left: 0; top: 10px;
  color: var(--gold); font-size: 0.9rem;
}
.showcase-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.price-tag { font-size: 0.82rem; color: var(--muted); font-style: italic; }
.showcase-media { display: flex; justify-content: center; }
.showcase-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; max-width: 360px; width: 100%;
  box-shadow: var(--shadow), var(--glow-gold);
  text-align: left;
}
.showcase-card.rose { border-color: rgba(212, 106, 132, 0.3); box-shadow: var(--shadow), 0 0 40px -8px rgba(212, 106, 132, 0.3); }
.showcase-card.purple { border-color: rgba(154, 124, 212, 0.3); box-shadow: var(--shadow), 0 0 40px -8px rgba(154, 124, 212, 0.3); }
.showcase-card.gold { border-color: rgba(232, 201, 122, 0.4); }
.sc-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gold);
  padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px;
  margin-bottom: 18px;
}
.showcase-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.showcase-card p { font-size: 0.94rem; color: var(--muted); margin-bottom: 20px; }
.sc-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.sc-price b { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.sc-price s { color: var(--dim); font-size: 0.95rem; }
@media (max-width: 880px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-grid.reverse > :first-child { order: unset; }
}

/* Bundle / Member banner */
.bundle-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(58, 26, 84, 0.5), rgba(74, 42, 20, 0.3));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0;
}
.bundle-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.bundle-text h2 { margin-bottom: 18px; }
.bundle-text p { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.bundle-perks { list-style: none; margin-bottom: 28px; }
.bundle-perks li { padding: 6px 0; color: var(--cream); font-size: 0.94rem; }
.bundle-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bundle-media { display: flex; justify-content: center; }
.bundle-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--gold); border-radius: var(--radius-lg);
  padding: 36px 32px; max-width: 360px; width: 100%;
  box-shadow: 0 20px 60px -20px rgba(232, 201, 122, 0.4);
  text-align: center;
}
.bc-tier { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.bc-price { font-family: var(--serif); font-size: 2.8rem; color: var(--cream); line-height: 1; margin-bottom: 24px; }
.bc-price span { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.bc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.bc-list span { padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; font-size: 0.88rem; }
.bc-list span::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.bc-stars { font-size: 0.82rem; color: var(--muted); letter-spacing: 2px; }
.bc-stars span { letter-spacing: 0; color: var(--dim); }
@media (max-width: 880px) { .bundle-inner { grid-template-columns: 1fr; gap: 40px; } }

/* How to */
.howto { padding: 100px 20px; text-align: center; }
.howto h2 { margin-bottom: 56px; }
.howto-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 1180px; margin: 0 auto 60px;
}
.step {
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 30px 24px; text-align: left;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.step:hover { border-color: var(--line); transform: translateY(-4px); }
.step-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  color: var(--gold); display: block; margin-bottom: 10px;
  opacity: 0.9;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.step b { color: var(--gold); }
.howto-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 980px; margin: 0 auto;
  padding-top: 40px; border-top: 1px solid var(--line-2);
}
.howto-stats > div { text-align: center; }
.howto-stats b {
  font-family: var(--serif); font-size: 3rem; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 6px;
}
.howto-stats span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 880px) {
  .howto-grid, .howto-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Compare */
.compare { padding: 100px 20px; text-align: center; }
.compare h2 { margin-bottom: 48px; }
.compare-table {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1080px; margin: 0 auto;
}
.compare-col {
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; text-align: left;
}
.compare-col.highlight {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(232,201,122,0.08), rgba(26,18,56,0.6));
  box-shadow: var(--glow-gold);
  transform: scale(1.02);
}
.compare-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-1);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
}
.compare-head { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.compare-head .dot { display: inline-block; width: 8px; height: 8px; border-radius: 4px; background: var(--gold); margin-bottom: 10px; }
.compare-head h3 { margin-bottom: 4px; }
.compare-head p { font-size: 0.85rem; color: var(--muted); }
.compare-col ul { list-style: none; }
.compare-col ul li {
  padding: 9px 0; font-size: 0.9rem; color: var(--cream);
  border-bottom: 1px solid var(--line-2);
}
.compare-col ul li:last-child { border-bottom: 0; }
.compare-note { margin-top: 32px; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 880px) {
  .compare-table { grid-template-columns: 1fr; }
  .compare-col.highlight { transform: none; }
}

/* Testimoni */
.testimoni { padding: 100px 20px; text-align: center; background: rgba(26, 18, 56, 0.25); }
.testimoni-head { max-width: 720px; margin: 0 auto 50px; }
.testimoni-track {
  display: flex; gap: 22px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 10px 40px 30px;
  scroll-padding: 40px; scrollbar-width: none;
}
.testimoni-track::-webkit-scrollbar { display: none; }
.testimoni-track figure {
  flex: 0 0 360px; scroll-snap-align: center;
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 26px;
  text-align: left;
}
.testimoni-track .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.testimoni-track blockquote {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.55; font-style: italic;
  color: var(--cream); margin-bottom: 16px;
}
.testimoni-track figcaption { font-size: 0.85rem; color: var(--muted); }
.testimoni-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.testimoni-dots span {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--line-2); transition: .3s;
}
.testimoni-dots span.active { background: var(--gold); width: 22px; }

/* FAQ */
.faq { padding: 100px 20px; }
.faq-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); margin-bottom: 10px;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--line); }
.faq-list summary {
  padding: 20px 24px; cursor: pointer;
  font-size: 1rem; font-weight: 500; color: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gold); }
.plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.plus::before, .plus::after {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--gold);
  transition: .2s;
}
.plus::before { width: 12px; height: 1.5px; }
.plus::after { width: 1.5px; height: 12px; }
details[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-list details div { padding: 0 24px 22px; border-top: 1px solid var(--line-2); padding-top: 16px; }
.faq-list details p { color: var(--muted); font-size: 0.94rem; line-height: 1.65; }
.faq-list b { color: var(--gold); font-weight: 600; }

/* Loyalty */
.loyalty { padding: 80px 20px; }
.loyalty-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
.loyalty-card {
  background: var(--glass); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.loyalty-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.loy-icon { font-size: 2rem; margin-bottom: 10px; }
.loyalty-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.loyalty-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }
.loyalty-card b { color: var(--gold); }
@media (max-width: 880px) { .loyalty-grid { grid-template-columns: repeat(2, 1fr); } }

/* Final CTA */
.cta-final {
  padding: 100px 20px;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232, 201, 122, 0.12) 0%, transparent 60%);
}
.cta-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--glass); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 50px 36px;
  backdrop-filter: blur(14px);
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--muted); margin-bottom: 26px; }
.newsletter { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 14px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--cream); font-size: 0.92rem;
  transition: border-color .2s;
}
.newsletter input:focus { outline: 0; border-color: var(--gold); background: rgba(255,255,255,0.06); }
.newsletter button { flex-shrink: 0; padding: 14px 22px; }
.newsletter-ok { margin-top: 16px; font-size: 0.9rem; color: var(--ok); }
.newsletter-ok b { color: var(--gold); }

/* Footer */
.foot { padding: 70px 20px 28px; border-top: 1px solid var(--line-2); background: rgba(10, 6, 22, 0.6); }
.foot-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 0.9rem; max-width: 340px; margin-bottom: 12px; }
.foot-tagline { color: var(--gold); font-size: 0.8rem !important; font-style: italic; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col h5 { margin-bottom: 6px; }
.foot-col a { color: var(--muted); font-size: 0.88rem; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--line-2);
  color: var(--dim); font-size: 0.82rem;
}
@media (max-width: 780px) {
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* WA Float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 28px;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}
@media (max-width: 780px) { .wa-float { bottom: 80px; right: 16px; } }

/* Sticky mobile CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(10, 6, 22, 0.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cta.show { display: flex; }
.sticky-cta span { font-size: 0.85rem; color: var(--muted); }
.sticky-cta b { color: var(--cream); }
@media (min-width: 780px) { .sticky-cta.show { display: none; } }

/* Drawer */
.drawer-backdrop, .modal-backdrop, .popup-backdrop {
  position: fixed; inset: 0; background: rgba(10, 6, 22, 0.8);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none;
  transition: opacity .3s; z-index: 100;
}
.drawer-backdrop.show, .modal-backdrop.show, .popup-backdrop.show {
  opacity: 1; pointer-events: auto;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw);
  background: var(--bg-1); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; z-index: 110;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--line-2);
}
.drawer-head h3 { font-size: 1.2rem; }
.drawer-close, .modal-close, .popup-close {
  width: 36px; height: 36px; border-radius: 18px;
  background: rgba(255,255,255,0.05); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: .2s; font-size: 1.05rem;
}
.drawer-close:hover, .modal-close:hover, .popup-close:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart p { color: var(--muted); margin-bottom: 20px; }
.empty-cart span { display: block; font-size: 0.85rem; color: var(--dim); margin-top: 4px; }
.cart-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cart-items li {
  display: flex; gap: 12px; padding: 12px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
}
.cart-items .ci-mini {
  width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--gold); font-size: 1.2rem;
  border: 1px solid var(--line-2);
}
.cart-items .ci-info { flex: 1; min-width: 0; }
.cart-items .ci-info b { display: block; font-size: 0.92rem; color: var(--cream); margin-bottom: 2px; }
.cart-items .ci-info span { font-size: 0.8rem; color: var(--muted); }
.cart-items .ci-actions { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.cart-items .ci-qty { display: flex; align-items: center; background: rgba(0,0,0,0.2); border-radius: 6px; }
.cart-items .ci-qty button { width: 26px; height: 26px; font-size: 1rem; color: var(--muted); }
.cart-items .ci-qty button:hover { color: var(--gold); }
.cart-items .ci-qty input { width: 30px; text-align: center; background: transparent; border: 0; color: var(--cream); font-size: 0.85rem; }
.cart-items .ci-remove { margin-left: auto; font-size: 0.78rem; color: var(--dim); padding: 4px 8px; }
.cart-items .ci-remove:hover { color: var(--rose); }
.cart-items .ci-price { font-weight: 600; color: var(--gold); font-size: 0.92rem; }

.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line-2); }
.drawer-subtotal { display: flex; justify-content: space-between; font-size: 1rem; margin-bottom: 10px; }
.drawer-subtotal b { color: var(--gold); font-size: 1.15rem; }
.promo-input { display: flex; gap: 6px; margin-bottom: 12px; }
.promo-input input {
  flex: 1; padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--cream); font-size: 0.85rem;
}
.promo-input input:focus { outline: 0; border-color: var(--gold); }
.promo-input button { padding: 10px 16px; border-radius: 8px; background: rgba(232,201,122,0.1); color: var(--gold); border: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; }
.promo-input button:hover { background: rgba(232,201,122,0.15); }
.drawer-note { font-size: 0.78rem; color: var(--dim); margin-bottom: 14px; text-align: center; }
.checkout-options { display: flex; flex-direction: column; gap: 8px; }

/* Modal */
.modal, .popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(540px, 94vw); max-height: 92vh;
  z-index: 120; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.modal.open, .popup.open { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.modal-card, .popup {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 80px -20px rgba(0,0,0,0.6), var(--glow-gold);
  display: flex; flex-direction: column; max-height: 92vh;
}
.modal-card { height: auto; }
.form-card { width: min(620px, 94vw); }
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 26px 16px; border-bottom: 1px solid var(--line-2);
}
.modal-head h3 { font-size: 1.35rem; margin-bottom: 4px; }
.step-label { font-size: 0.78rem; color: var(--muted); }
.modal-body { padding: 24px 26px; overflow-y: auto; flex: 1; }

.pay-summary {
  background: rgba(232, 201, 122, 0.06); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.pay-summary span { font-size: 0.85rem; color: var(--muted); }
.pay-summary b { font-size: 1.3rem; color: var(--gold); }
.pay-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-2);
  text-align: left; transition: .2s;
}
.pay-method:hover { border-color: var(--gold); background: rgba(232,201,122,0.05); }
.pm-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--bg-1);
}
.pm-icon svg { width: 28px; height: 28px; }
.pm-icon.shopeepay { background: #ee4d2d; color: #fff; }
.pm-icon.gopay { background: #00aed6; color: #fff; }
.pm-text { flex: 1; }
.pm-text b { display: block; font-size: 0.98rem; color: var(--cream); margin-bottom: 2px; }
.pm-text span { font-size: 0.82rem; color: var(--muted); }
.pm-chev { width: 20px; height: 20px; color: var(--dim); flex-shrink: 0; }
.pay-note { margin-top: 18px; font-size: 0.78rem; color: var(--dim); text-align: center; line-height: 1.5; }

/* Payment detail (step 2) */
.pay-detail { text-align: center; }
.pay-back { display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; padding: 6px 10px; border-radius: 6px; }
.pay-back:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.pay-amount-big {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold); margin-bottom: 4px;
}
.pay-amount-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.qris-box {
  background: #fff; border-radius: var(--radius); padding: 18px;
  max-width: 260px; margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.qris-box img { width: 100%; height: auto; border-radius: 6px; }
.qris-placeholder {
  aspect-ratio: 1; background:
    repeating-linear-gradient(45deg, #eee 0, #eee 8px, #f5f5f5 8px, #f5f5f5 16px);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: #333; font-family: var(--sans); font-size: 0.82rem; text-align: center; padding: 20px; font-weight: 600;
}
.qris-caption { text-align: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.pay-account {
  background: rgba(232, 201, 122, 0.06); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; margin-bottom: 18px;
  text-align: center;
}
.pay-account .pa-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pay-account .pa-number { font-family: var(--serif); font-size: 2rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 8px; }
.pay-account .pa-name { font-size: 0.88rem; color: var(--cream); }
.pay-account .pa-copy {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.82rem; color: var(--gold); transition: .2s;
}
.pay-account .pa-copy:hover { background: rgba(232,201,122,0.1); }
.pay-instructions {
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 18px; text-align: left;
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}
.pay-instructions ol { padding-left: 20px; }
.pay-instructions li { margin-bottom: 4px; }
.pay-instructions b { color: var(--gold); font-weight: 600; }

/* Form modal */
.intake-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; }
.form-row.split { flex-direction: row; gap: 12px; }
.form-row.split label { flex: 1; }
.form-row label { display: flex; flex-direction: column; font-size: 0.85rem; color: var(--muted); font-weight: 500; gap: 6px; }
.form-row label em { color: var(--rose); font-style: normal; font-family: inherit; font-size: 0.9em; }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--cream); font-size: 0.92rem; font-family: inherit;
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--gold); background: rgba(255,255,255,0.06);
}
.form-row textarea { resize: vertical; min-height: 80px; font-family: inherit; line-height: 1.5; }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c97a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--muted); padding: 10px 0; }
.form-consent input { flex-shrink: 0; margin-top: 3px; accent-color: var(--gold); }
.form-note { font-size: 0.78rem; color: var(--dim); text-align: center; margin-top: 6px; }

/* Exit popup */
.popup { width: min(460px, 94vw); padding: 0; }
.popup .popup-inner { padding: 40px 30px 30px; text-align: center; }
.popup-close { position: absolute; top: 14px; right: 14px; }
.popup-eyebrow {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.popup h3 { font-size: 1.8rem; margin-bottom: 12px; line-height: 1.15; }
.popup p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.popup b { color: var(--gold); }
.popup form { display: flex; flex-direction: column; gap: 10px; }
.popup input {
  padding: 14px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--cream); font-size: 0.92rem;
}
.popup input:focus { outline: 0; border-color: var(--gold); }
.popup-small { font-size: 0.8rem; color: var(--dim); margin-top: 14px; }
.popup-small a { color: var(--muted); text-decoration: underline; }

/* Toast */
.toast {
  position: fixed; bottom: 110px; left: 50%; transform: translateX(-50%) translateY(40px);
  background: var(--bg-2); border: 1px solid var(--gold);
  color: var(--cream); padding: 14px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0; transition: transform .3s var(--ease), opacity .3s;
  z-index: 130; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Print hide */
@media print { .nav, .wa-float, .sticky-cta, .announcement, .drawer, .modal, .popup { display: none !important; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
