/* 
 * MEKA Agency & Management - Luxury Minimal Design System
 * Elegant • Simple • Premium
 */

/* Fonts loaded via HTML link tags for better performance */

:root {
  /* Premium Dark Palette */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(20, 20, 22, 0.9);
  --bg-card-hover: rgba(28, 28, 32, 0.95);
  
  --gold: #c9a84c;
  --gold-light: #e3cc7a;
  --gold-dark: #9e7d2a;
  --gold-subtle: rgba(201, 168, 76, 0.1);
  --gold-border: rgba(201, 168, 76, 0.2);
  --gold-glow: rgba(201, 168, 76, 0.12);
  
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(201, 168, 76, 0.4);
  
  --text: #f5f5f5;
  --text-secondary: #9a9a9a;
  --text-muted: #6a6a6a;
  --text-gold: #d4b65a;
  
  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.2);
  
  --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.12);
  
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-primary: #fafaf8;
  --bg-secondary: #f2f0ec;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --gold-subtle: rgba(158, 125, 42, 0.08);
  --gold-border: rgba(158, 125, 42, 0.2);
  
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(158, 125, 42, 0.4);
  
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-gold: #8a6914;
  
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100dvh;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: #0a0a0a;
}

/* Minimal Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* === TYPOGRAPHY === */
.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.text-gold {
  color: var(--text-gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--text-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

.text-center { text-align: center; }

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  box-shadow: 0 2px 20px rgba(201, 168, 76, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.25);
  filter: brightness(1.1);
}

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

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--text-gold);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

[data-theme="light"] .navbar {
  background: rgba(250, 250, 248, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0a0a0a;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease);
}

.nav-link:hover { color: var(--text-gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.theme-toggle:hover {
  border-color: var(--gold-border);
  color: var(--text-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 992px) {
  .mobile-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s var(--ease-out);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-actions .btn { display: none; }
}

/* === HERO === */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 28px 0 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.6rem; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .hero-subtitle { margin: 0 auto 40px; }
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-cta { justify-content: center; }
}

/* Phone Mockup */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.social-float {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: float 5s ease-in-out infinite;
}

.social-ig { top: 12%; left: -20px; animation-delay: 0s; color: #e1306c; }
.social-tiktok { bottom: 28%; left: -30px; animation-delay: 1.5s; color: #25f4ee; }
.social-fb { top: 22%; right: -20px; animation-delay: 1s; color: #1877f2; }
.social-yt { bottom: 18%; right: -25px; animation-delay: 2.5s; color: #ff0000; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-mockup {
  width: 280px;
  height: 570px;
  background: #0a0a0a;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 168, 76, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1a1a1a;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding: 40px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  overflow: hidden;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
}

.insta-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.7rem;
}

.insta-stats strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.post-card {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

.post-tag {
  font-size: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .social-float { display: none; }
  .phone-mockup { width: 260px; height: 510px; }
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-primary);
}

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-gold);
  line-height: 1.1;
  margin-bottom: 6px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.stat-number.tick-flash {
  transform: scale(1.06);
  color: #fff;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Live Visitor Pill Badge */
.live-visitor-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: 0 2px 14px rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: live-pulse 2s infinite ease-out;
}

@keyframes live-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.live-counter-num {
  font-weight: 700;
  color: #25d366;
  letter-spacing: 0.5px;
  font-family: 'Inter', monospace, sans-serif;
  padding: 2px 6px;
  background: rgba(37, 211, 102, 0.12);
  border-radius: 6px;
}

.live-tag-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #25d366;
  color: #0a0a0a;
}

/* === SECTION HEADERS === */
.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 16px;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 400;
  line-height: 1.8;
}

/* === FEATURE GRID === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* === TENTANG / FEATURE SECTION WITH AMBASSADOR === */
.tentang-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .tentang-grid {
    grid-template-columns: 1fr;
  }
}

.tentang-ambassador-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.tentang-ambassador-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.tentang-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  position: relative;
  background: #111;
}

.tentang-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tentang-ambassador-card:hover .tentang-photo {
  transform: scale(1.05);
}

.tentang-ambassador-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-primary);
  flex-grow: 1;
  justify-content: center;
}

.tentang-ambassador-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.tentang-ambassador-title {
  font-size: 0.78rem;
  color: var(--text-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tentang-ambassador-quote {
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-top: 4px;
}

.feature-grid-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 600px) {
  .feature-grid-column {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* === AUDIENCE GRID === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.audience-card {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.audience-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.audience-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.audience-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* === COLLAB GRID === */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 640px) {
  .collab-grid { grid-template-columns: 1fr; }
}

.collab-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.collab-tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
  color: var(--text-gold);
}

.collab-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.collab-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-gold);
  line-height: 1;
  opacity: 0.6;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* === QUOTE === */
.quote-section {
  position: relative;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.quote-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}

.quote-text strong {
  color: var(--text-gold);
  font-style: normal;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 1rem;
}

.quote-author-info { text-align: left; }
.quote-author-name { font-weight: 600; font-size: 0.9rem; }
.quote-author-role { font-size: 0.78rem; color: var(--text-gold); }

@media (max-width: 768px) {
  .quote-card { padding: 40px 24px; }
  .quote-text { font-size: 1.25rem; }
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

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

.price-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-gold);
  letter-spacing: 1px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}

.price-amount span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.price-features li svg {
  color: var(--text-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  text-align: center;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.faq-question:hover { color: var(--text-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* === CTA BANNER === */
.cta-banner {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-subtle) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-banner { padding: 50px 24px; }
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 20px;
  font-size: 0.9rem;
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--text-gold); }

/* SEO Tags */
.seo-tags-wrapper {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.seo-tags-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.seo-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-pill {
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.seo-pill:hover {
  border-color: var(--gold-border);
  color: var(--text-gold);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* === FLOATING WA WITH BA AVATAR === */
.whatsapp-float-ba {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float-ba:hover {
  transform: translateY(-4px);
}

.wa-ba-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--whatsapp);
  box-shadow: 0 4px 24px var(--whatsapp-glow);
}

.wa-ba-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.3;
  z-index: -1;
  animation: wa-pulse 2.5s infinite;
}

.wa-ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-ba-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.wa-ba-bubble {
  position: relative;
  background: var(--whatsapp);
  color: white;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--whatsapp-glow);
  animation: bubble-bounce 3s ease-in-out infinite;
}

.wa-ba-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--whatsapp);
}

@keyframes bubble-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* === FLOATING VISITOR BADGE (BOTTOM LEFT) === */
.floating-visitor-badge {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  user-select: none;
  cursor: default;
}

[data-theme="light"] .floating-visitor-badge {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(158, 125, 42, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 20px rgba(201, 168, 76, 0.06);
}

.floating-visitor-badge:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(201, 168, 76, 0.15);
}

.floating-visitor-label {
  color: var(--text-secondary);
  font-size: 0.76rem;
}

.floating-visitor-num {
  font-family: 'Inter', monospace, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-gold);
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.floating-visitor-num.tick-flash {
  transform: scale(1.12);
  color: #25d366;
}

.floating-live-tag {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

@media (max-width: 600px) {
  .floating-visitor-badge {
    bottom: 80px;
    left: 14px;
    padding: 8px 12px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .floating-visitor-label { display: none; }
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 998;
}

@media (max-width: 600px) {
  .mobile-sticky-bar { display: flex; gap: 10px; }
  .whatsapp-float-ba { bottom: 80px; }
  .footer { padding-bottom: 90px; }
}

/* === DIVIDER === */
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.5;
}

/* === AMBASSADOR SECTION (kept for compatibility) === */
.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .ambassador-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ambassador-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.ambassador-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
}

.ambassador-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.ambassador-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ambassador-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.ambassador-card:hover .ambassador-photo { transform: scale(1.05); }

.ambassador-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  pointer-events: none;
}

.ambassador-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ambassador-socials {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.4s var(--ease);
}

.ambassador-card:hover .ambassador-socials {
  opacity: 1;
  transform: translateX(0);
}

.ambassador-social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.ambassador-social-icon:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.ambassador-info { padding: 20px; }

.ambassador-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.ambassador-role {
  font-size: 0.78rem;
  color: var(--text-gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.ambassador-stats { display: flex; gap: 16px; }

.amb-stat { display: flex; flex-direction: column; }

.amb-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.amb-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === BRAND AMBASSADOR SPOTLIGHT BANNER (LIKE REFERENCE) === */
.ambassador-spotlight-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(20, 20, 22, 0.8) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.ambassador-spotlight-banner.reverse {
  grid-template-columns: 1fr 300px;
}

[data-theme="light"] .ambassador-spotlight-banner {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  border-color: rgba(158, 125, 42, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06), var(--shadow-gold);
}

.spotlight-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: #111;
  aspect-ratio: 4 / 5;
}

[data-theme="light"] .spotlight-photo-card {
  border-color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.spotlight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.ambassador-spotlight-banner:hover .spotlight-photo {
  transform: scale(1.04);
}

.spotlight-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.spotlight-content h2 span {
  color: var(--text-gold);
}

.spotlight-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 580px;
}

.spotlight-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .ambassador-spotlight-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    gap: 32px;
  }
  .spotlight-photo-card {
    max-width: 280px;
    margin: 0 auto;
  }
  .spotlight-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-cta {
    justify-content: center;
  }
  .spotlight-content h2 {
    font-size: 2.2rem;
  }
}

/* === DUAL AMBASSADOR SHOWCASE (PRIA & WANITA) === */
.dual-ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .dual-ambassadors-grid {
    grid-template-columns: 1fr;
  }
}

.ambassador-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .ambassador-showcase-card {
    grid-template-columns: 1fr;
  }
}

.ambassador-showcase-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.ambassador-showcase-photo-wrap {
  position: relative;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  background: #111;
}

.ambassador-showcase-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.ambassador-showcase-card:hover .ambassador-showcase-photo {
  transform: scale(1.06);
}

.ambassador-showcase-details {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ambassador-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ambassador-showcase-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.ambassador-showcase-role {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.ambassador-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 12px;
}

.amb-pill {
  font-size: 0.72rem;
  padding: 3px 10px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--text);
}

/* ===== Ambassador Spotlight Banner ===== */
.ambassador-spotlight-banner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  padding: 40px;
  margin-top: 40px;
}

.ambassador-spotlight-banner.reverse {
  grid-template-columns: 1fr 300px;
}

.spotlight-photo-card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1);
}

.spotlight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-content h2 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.spotlight-content h2 span {
  color: var(--gold);
}

.spotlight-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.spotlight-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BA Group Photo Showcase ===== */
.ba-group-showcase {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.08);
}

.ba-group-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===== Responsive for Ambassador Banners ===== */
@media (max-width: 768px) {
  .ambassador-spotlight-banner {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .ambassador-spotlight-banner.reverse {
    grid-template-columns: 1fr;
  }

  .spotlight-photo-card {
    max-width: 260px;
    margin: 0 auto;
  }

  .spotlight-content h2 {
    font-size: 1.4rem;
  }

  .spotlight-cta {
    justify-content: center;
  }
}
