/* ============================================
   ANARHA LANDING PAGE — PREMIUM DESIGN SYSTEM
   ============================================ */

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

:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #e8850c;
  --accent-light: #f5a623;
  --accent-dark: #c56d00;
  --accent-glow: rgba(232, 133, 12, 0.3);
  --gradient-start: #e8850c;
  --gradient-end: #f5c842;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --success: #22c55e;
  --shopee: #ee4d2d;
  --tokped: #42b549;
  --whatsapp: #25d366;
  --surface-1: #080a0d;
  --surface-2: #222a35;
  --nav-scrolled-bg: rgba(10, 10, 10, 0.85);
  --floating-badge-bg: rgba(22, 22, 22, 0.9);
  --logo-border: rgba(255, 255, 255, 0.18);
  --feature-number: rgba(255, 255, 255, 0.03);
  --hero-image-brightness: 0.6;
  --hero-image-opacity: 0.18;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- SECTION COMMON --- */
.section {
  padding: var(--section-padding);
  position: relative;
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-left {
  text-align: left;
}

.section-header-left .section-desc {
  margin: 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  background: rgba(232, 133, 12, 0.1);
  border: 1px solid rgba(232, 133, 12, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-icon {
  width: 168px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Hero Background Art */
.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--hero-image-opacity);
  filter: brightness(var(--hero-image-brightness));
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.3), transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(232, 133, 12, 0.08);
  border: 1px solid rgba(232, 133, 12, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
  min-width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  opacity: 0.8;
}

.stat-rating-row {
  gap: 8px;
}

.stat-number-inline {
  display: inline-block;
}

.stat-stars {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ffcf7a;
  text-shadow: 0 0 12px rgba(255, 207, 122, 0.28);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
}

.btn-glow {
  box-shadow: 0 6px 20px var(--accent-glow);
}

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

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.5s both;
}

.product-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.product-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
}

.product-image-wrapper {
  position: relative;
  z-index: 2;
}

.product-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-img:hover {
  transform: scale(1.03) translateY(-8px);
}

.floating-badge {
  position: absolute;
  background: var(--floating-badge-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-hover);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.badge-1 {
  top: 15%;
  right: -10px;
  animation: floatY 3s ease-in-out infinite;
}

.badge-2 {
  bottom: 20%;
  left: -10px;
  animation: floatY 3s ease-in-out infinite 1.5s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
  background: var(--surface-2);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(232, 133, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.problem-punchline {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(232, 133, 12, 0.06), rgba(245, 200, 66, 0.04));
  border: 1px solid rgba(232, 133, 12, 0.15);
  border-radius: var(--border-radius);
}

.problem-punchline p {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.7;
}

/* ============================================
   SOLUTION / FEATURES SECTION
   ============================================ */
.section-solution {
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}

.solution-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 133, 12, 0.06), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Solution Split Layout */
.solution-layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.solution-product-img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 20px 50px rgba(232, 133, 12, 0.15));
  animation: floatY 4s ease-in-out infinite;
}

.solution-text-side {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.feature-card.feature-highlight {
  background: linear-gradient(135deg, rgba(232, 133, 12, 0.08), rgba(245, 200, 66, 0.03));
  border-color: rgba(232, 133, 12, 0.2);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--feature-number);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(232, 133, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.feature-card p strong {
  color: var(--text-primary);
}

.feature-card p em {
  color: var(--accent-light);
  font-style: normal;
}

/* ============================================
   HOW TO USE SECTION
   ============================================ */
.section-usage {
  background: var(--surface-2);
}

.usage-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.usage-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  transition: all 0.4s;
}

.usage-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.usage-phase {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.phase-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.phase-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.phase-tag.pre {
  background: rgba(232, 133, 12, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(232, 133, 12, 0.25);
}

.phase-tag.post {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.usage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 133, 12, 0.12);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.usage-step p strong {
  color: var(--text-primary);
}

.usage-result {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 10px;
}

.usage-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.divider-line {
  flex: 1;
  width: 1px;
  background: var(--border-hover);
}

.divider-icon {
  min-width: 56px;
  height: 30px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--accent);
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.4s;
}

.ingredient-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.ingredient-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
}

.ingredient-summary::-webkit-details-marker {
  display: none;
}

.ingredient-summary::marker {
  content: "";
}

.ingredient-info {
  flex: 1;
}

.ingredient-toggle {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  opacity: 0.85;
}

.ingredient-toggle::before,
.ingredient-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-secondary);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ingredient-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ingredient-accordion[open] .ingredient-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.ingredient-desc {
  margin: 0;
  padding: 0 24px 22px 96px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ingredient-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ingredient-circle.fire {
  background: rgba(232, 133, 12, 0.12);
}

.ingredient-circle.cool {
  background: rgba(59, 130, 246, 0.12);
}

.ingredient-circle.heat {
  background: rgba(239, 68, 68, 0.12);
}

.ingredient-circle.flora {
  background: rgba(236, 72, 153, 0.12);
}

.ingredient-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ingredient-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-ingredients {
  background: var(--surface-1);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.section-testimonials {
  background: var(--surface-2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.testimonial-card.featured {
  border-color: rgba(232, 133, 12, 0.25);
  background: linear-gradient(135deg, rgba(232, 133, 12, 0.06), var(--bg-card));
}

.testimonial-stars {
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-text strong {
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-hover);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   ORDER / CTA SECTION
   ============================================ */
.section-order {
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.order-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.order-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 133, 12, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Order Split Layout */
.order-layout {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.order-product-visual {
  display: none;
}

.order-product-img {
  max-height: 480px;
  width: auto;
  border-radius: var(--border-radius-lg);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s;
}

.order-product-img:hover {
  transform: scale(1.03);
}

.order-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.order-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
}

.order-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.order-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 28px;
}

.package-card {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.98), rgba(12, 12, 12, 0.95));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 44%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.package-card.featured {
  border-color: rgba(232, 133, 12, 0.45);
  box-shadow: 0 18px 40px rgba(232, 133, 12, 0.18);
}

.package-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.package-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}

.package-launch {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(232, 133, 12, 0.35);
  background: rgba(232, 133, 12, 0.1);
}

.package-media-wrap {
  position: relative;
  z-index: 1;
  min-height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  margin-bottom: 14px;
  padding: 12px;
}

.package-media-wrap::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 26px;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 133, 12, 0.34), rgba(0, 0, 0, 0));
  filter: blur(5px);
  pointer-events: none;
}

.package-thumb {
  width: 100%;
  height: 214px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35));
}

.package-thumb-box {
  max-width: 186px;
}

.package-thumb-bottle {
  max-width: 106px;
}

.package-copy {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
  min-height: 52px;
}

.package-copy strong {
  color: var(--text-primary);
}

.package-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
}

.package-savings {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffcf7a;
  background: rgba(232, 133, 12, 0.16);
  border: 1px solid rgba(232, 133, 12, 0.32);
}

.package-note {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--accent-light);
  margin-top: 8px;
}

.order-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s;
  min-width: 200px;
}

.order-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.order-btn.shopee:hover {
  border-color: var(--shopee);
  box-shadow: 0 12px 32px rgba(238, 77, 45, 0.15);
}

.order-btn.tokped:hover {
  border-color: var(--tokped);
  box-shadow: 0 12px 32px rgba(66, 181, 73, 0.15);
}

.order-btn.whatsapp:hover {
  border-color: var(--whatsapp);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.15);
}

.order-btn-icon {
  font-size: 1.5rem;
}

.order-btn-text {
  text-align: left;
}

.order-btn-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-btn-store {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.order-guarantee {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.guarantee-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--surface-2);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle span {
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.4s;
}

.faq-toggle span:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle span:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface-1);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 184px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0.8);
}

.wa-fab.visible {
  opacity: 1;
  transform: scale(1);
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 40px;
  }

  100% {
    opacity: 0;
    height: 40px;
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .product-showcase {
    max-width: 360px;
    margin: 0 auto;
  }

  .solution-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-product-visual {
    order: -1;
  }

  .solution-product-img {
    max-height: 360px;
  }

  .section-header-left {
    text-align: center;
  }

  .section-header-left .section-desc {
    margin: 0 auto;
  }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-product-visual {
    order: -1;
  }

  .order-product-img {
    max-height: 320px;
    margin: 0 auto;
  }

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

  .order-desc {
    margin: 0 auto 40px;
  }

  .order-packages {
    max-width: 760px;
    margin: 0 auto 28px;
  }

  .order-buttons {
    justify-content: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    animation: fadeInDown 0.3s ease;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .usage-grid {
    flex-direction: column;
  }

  .usage-divider {
    flex-direction: row;
    width: 100%;
  }

  .divider-line {
    height: 1px;
    width: 100%;
  }

  .order-buttons {
    flex-direction: column;
    align-items: center;
  }

  .order-packages {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .package-media-wrap {
    min-height: 210px;
  }

  .package-thumb {
    height: 186px;
  }

  .package-thumb-box {
    max-width: 170px;
  }

  .package-thumb-bottle {
    max-width: 96px;
  }

  .package-copy {
    min-height: 0;
  }

  .ingredient-summary {
    padding: 18px;
  }

  .ingredient-desc {
    padding: 12px 18px 18px;
  }

  .order-btn {
    width: 100%;
    max-width: 320px;
  }

  .order-guarantee {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
