/* ============================================
   HIJIR Minyak Selaras — Landing Page
   Palette: Black #0A0A0A · Gold #C9A227 · Cream #E8DEC8
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-elev: #141414;
  --bg-elev-2: #1c1c1c;
  --gold: #C9A227;
  --gold-bright: #E4BD3F;
  --gold-deep: #8a6e1a;
  --cream: #E8DEC8;
  --cream-muted: #b8ad96;
  --white: #FFFFFF;
  --line: rgba(201, 162, 39, 0.18);
  --line-soft: rgba(232, 222, 200, 0.08);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --section-y: clamp(80px, 10vw, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 7vw, 84px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }

.serif-italic { font-style: italic; color: var(--gold); }

p.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
}

p.body {
  color: var(--cream-muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  border-bottom: 1px solid var(--line-soft);
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.logo .tiny {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--cream-muted);
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-muted);
  transition: color 0.3s ease;
  padding: 4px 8px;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.hero-aurora {
  position: absolute;
  inset: -50%;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201, 162, 39, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(201, 162, 39, 0.08), transparent 60%);
  animation: aurora 18s ease-in-out infinite alternate;
  filter: blur(8px);
}
@keyframes aurora {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(3%, -2%) rotate(8deg) scale(1.08); }
  100% { transform: translate(-2%, 3%) rotate(-6deg) scale(1.05); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(232, 222, 200, 0.04) 0, transparent 1px, transparent 3px),
    repeating-radial-gradient(circle at 80% 70%, rgba(232, 222, 200, 0.03) 0, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .line > span {
  display: block;
  transform: translateY(110%);
  animation: revealUp 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-copy h1 .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero-copy h1 .line:nth-child(3) > span { animation-delay: 0.3s; }

@keyframes revealUp { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 28px;
  max-width: 480px;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
}

.hero-meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}
.hero-meta .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.hero-meta .item svg { width: 16px; height: 16px; color: var(--gold); }

.hero-cta-row {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* Buttons */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0A0A0A;
  background: var(--gold);
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(201, 162, 39, 0.4);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; flex-shrink: 0; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost svg { width: 14px; height: 14px; }

/* Hero product visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: visible;
  opacity: 0;
  transform: translateY(20px);
  animation: heroProductIn 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s forwards;
}
@keyframes heroProductIn { to { opacity: 1; transform: translateY(0); } }

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.35), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-elev);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   GENERIC SECTION
   ============================================ */
section {
  padding: var(--section-y) 24px;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.6s; }

/* ============================================
   SECTION 2 — HOOK
   ============================================ */
.hook {
  padding: clamp(100px, 14vw, 180px) 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0c08 50%, var(--bg) 100%);
}
.hook-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.25;
  font-style: italic;
  color: var(--cream);
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 40px;
}
.hook-quote .accent { color: var(--gold); font-style: italic; }
.hook-resolve {
  max-width: 540px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--cream-muted);
  line-height: 1.7;
}
.hook-resolve strong { color: var(--white); font-weight: 500; }

/* ============================================
   SECTION 3 — APA ITU HIJIR
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-text { max-width: 520px; }
.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 20px; }

.about-badges {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(201, 162, 39, 0.04);
}
.badge svg { width: 12px; height: 12px; color: var(--gold); }

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.4;
}

/* ============================================
   SECTION 4 — TIGA DIMENSI
   ============================================ */
.dim-section { background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 100%); }
.dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.dim-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 48px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.dim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.dim-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dim-card:hover::before { opacity: 1; }

.dim-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  display: block;
  font-style: italic;
}
.dim-icon { width: 56px; height: 56px; margin-bottom: 28px; color: var(--gold); }
.dim-icon svg { width: 100%; height: 100%; }
.dim-card h3 { margin-bottom: 20px; font-size: 28px; }
.dim-card ul {
  list-style: none;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.dim-card li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--cream-muted);
  display: flex;
  gap: 12px;
  line-height: 1.5;
}
.dim-card li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
.dim-card li strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* ============================================
   SECTION 5 — BAHAN ALAMI
   ============================================ */
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
.ingr-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.4s ease;
}
.ingr-card:hover {
  background: var(--bg-elev-2);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.ingr-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: transform 0.5s ease;
}
.ingr-card:hover .ingr-icon { transform: scale(1.15) rotate(-3deg); }
.ingr-icon svg { width: 100%; height: 100%; }
.ingr-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.ingr-sub {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.ingr-sub strong { color: var(--gold); font-weight: 500; }

/* ============================================
   SECTION 6 — CARA PAKAI
   ============================================ */
.usage-section { background: linear-gradient(180deg, var(--bg) 0%, #0d0c08 50%, var(--bg) 100%); }
.usage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.usage-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}
.usage-steps { list-style: none; }
.usage-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.usage-step:last-child { border-bottom: none; }
.usage-step .n {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.usage-step h4 {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.usage-step p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 400;
}
.usage-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--cream-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ============================================
   SECTION 7 — TESTIMONI
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.testi-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: transform 0.4s ease;
  display: block;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.testi-handle { font-size: 11px; color: var(--cream-muted); letter-spacing: 0.04em; }

.testi-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.testi-card:hover .testi-play { transform: translate(-50%, -50%) scale(1.1); }
.testi-card.playing .testi-play { opacity: 0; }
.testi-play svg { width: 22px; height: 22px; color: var(--bg); margin-left: 3px; }

.testi-cta { text-align: center; margin-top: 56px; }
.testi-cta .count {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--cream-muted);
  font-style: italic;
  margin-bottom: 12px;
}
.testi-cta .count strong { color: var(--gold); font-style: normal; font-weight: 600; }

/* ============================================
   SECTION 8 — UNTUK SIAPA
   ============================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.who-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.who-card:hover { border-color: var(--gold); background: var(--bg-elev-2); }
.who-icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 20px; }
.who-icon svg { width: 100%; height: 100%; }
.who-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
.who-card p { font-size: 13px; color: var(--cream-muted); line-height: 1.5; }

/* ============================================
   SECTION 9 — TRUST
   ============================================ */
.trust-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.trust-section blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  font-style: italic;
  color: var(--cream);
  margin: 40px 0;
  position: relative;
  padding: 0 32px;
  font-weight: 400;
}
.trust-section blockquote::before,
.trust-section blockquote::after {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 48px;
  position: absolute;
  line-height: 1;
}
.trust-section blockquote::before { content: "\201C"; top: -8px; left: 0; }
.trust-section blockquote::after  { content: "\201D"; bottom: -28px; right: 0; }

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.trust-badge svg { width: 36px; height: 36px; color: var(--gold); }
.trust-badge span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================
   SECTION 10 — FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0c08 0%, #0A0A0A 100%);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 162, 39, 0.18), transparent 65%);
  z-index: 0;
  animation: aurora 14s ease-in-out infinite alternate;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 24px; }
.final-cta .sub {
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 300;
}
.final-cta .urgent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.final-cta .urgent .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
.final-cta .btn-primary { padding: 22px 44px; font-size: 16px; }
.final-cta .price-note {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 64px 24px 100px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .logo { font-size: 26px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--cream-muted); max-width: 320px; line-height: 1.6; }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE STICKY WA CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 0 1px rgba(201, 162, 39, 0.3);
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mobile-sticky-cta svg { width: 18px; height: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .usage-grid { grid-template-columns: 1fr; gap: 48px; }
  .dim-grid { grid-template-columns: 1fr; gap: 20px; }
  .ingr-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 640px) {
  .nav { padding: 14px 16px; }
  .nav-cta { padding: 8px 12px; font-size: 11px; }
  .nav-cta .full { display: none; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-meta { gap: 14px 20px; }
  .ingr-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ingr-card { padding: 20px 8px; }
  .ingr-icon { width: 44px; height: 44px; }
  .ingr-name { font-size: 13px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  section { padding-left: 20px; padding-right: 20px; }
  .usage-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .usage-step .n { font-size: 32px; }
  .usage-step p { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   CARA ORDER
   ============================================ */
.order-section { background: linear-gradient(180deg, #0e0e0e 0%, var(--bg) 100%); }

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 0 24px;
}
.order-step {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.order-step:hover { border-color: var(--gold); transform: translateY(-4px); }
.order-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
}
.order-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.08);
  border-radius: 50%;
  color: var(--gold);
}
.order-icon svg { width: 26px; height: 26px; }
.order-step h4 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.order-step p { font-size: 14px; color: var(--cream-muted); line-height: 1.65; }
.order-wa { text-align: center; margin-top: 40px; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-summary:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-summary { color: var(--gold); }
.faq-item.open .faq-icon { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 15px; color: var(--cream-muted); line-height: 1.75; padding-bottom: 20px; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--cream-muted);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 98;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); color: var(--gold); }

/* Scroll margin for anchor sections */
section[id] { scroll-margin-top: 80px; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.bp-section { background: var(--bg); }

.bp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 0 24px;
}
.bp-card {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.bp-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.bp-img { aspect-ratio: 16 / 9; overflow: hidden; }
.bp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bp-card:hover .bp-img img { transform: scale(1.04); }
.bp-body { padding: 24px; }
.bp-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bp-body h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 14px;
}
.bp-read {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.bp-all { text-align: center; margin-top: 36px; }

/* Responsive — new sections */
@media (max-width: 980px) {
  .order-steps { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 640px) {
  .bp-grid { grid-template-columns: 1fr; }
  .order-section, .faq-section, .bp-section { padding-top: 60px; padding-bottom: 60px; }
  .faq-summary { font-size: 15px; }
  .back-to-top { bottom: 90px; right: 16px; }
}
