/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --color-bg:       #050505;
  --color-surface:  #0F0F0F;
  --color-border:   #1C1C1C;
  --color-gold:     #D4AF37;
  --color-gold-dim: #B8922A;
  --color-gold-glow:rgba(212,175,55,0.15);
  --color-text:     #FAFAFA;
  --color-muted:    #888888;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --container-w:    1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─ CONTAINER ─ */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─ CURSOR ─ */
#cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--color-gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.cursor-hover #cursor-dot { width: 12px; height: 12px; }
.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ─ PARTICLES ─ */
#web-particles {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.75; mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(5,5,5,0.88);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--container-w); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { transition: filter .3s; }
.nav-logo:hover img { filter: drop-shadow(0 0 6px rgba(212,175,55,0.4)); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: var(--color-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--color-text); }

/* Nav dropdown */
.nav-services-trigger { position: relative; }
.nav-services-trigger > a { display: flex; align-items: center; gap: 6px; }
.nav-services-trigger > a::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s;
}
.nav-services-trigger:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 480px; background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px); border: 1px solid rgba(212,175,55,0.12);
  padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.nav-services-trigger:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px;
  border-radius: 4px; transition: background .15s;
}
.nav-dropdown-item:hover { background: rgba(212,175,55,0.06); }
.nav-dropdown-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--color-gold); opacity: .7; }
.nav-dropdown-text span { display: block; font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 2px; }
.nav-dropdown-text p { font-size: 11px; color: var(--color-muted); line-height: 1.4; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; font-size: 12px; font-weight: 600; letter-spacing: .06em;
  border: none; cursor: none; transition: all .3s var(--ease-out); white-space: nowrap;
  text-transform: uppercase;
}
.btn-gold.solid {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #050505;
}
.btn-gold.solid:hover { transform: scale(1.02); box-shadow: 0 0 24px rgba(212,175,55,0.4); }
.btn-gold.outline { background: transparent; color: var(--color-gold); border: 1px solid var(--color-gold); }
.btn-gold.outline:hover { background: var(--color-gold-glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--color-text); transition: all .3s; }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 24px; }
}
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(5,5,5,0.98); border-bottom: 1px solid var(--color-border);
  padding: 24px; transform: translateY(-100%); opacity: 0;
  transition: all .3s ease; z-index: 90;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 15px;
  color: var(--color-muted); border-bottom: 1px solid var(--color-border);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe1c3?auto=format&fit=crop&w=2400&q=80');
  background-size: cover; background-position: center 40%;
  transform: scale(1.08); will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.45) 0%,
    rgba(5,5,5,0.25) 40%,
    rgba(5,5,5,0.75) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 900px; padding: 0 24px;
}
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-gold);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 24px; height: 1px;
  background: var(--color-gold); opacity: 0.7;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px); font-weight: 300;
  line-height: 1.04; letter-spacing: -0.01em;
  color: var(--color-text); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--color-gold); }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: rgba(255,255,255,0.72);
  font-weight: 300; line-height: 1.7;
  max-width: 640px; margin: 0 auto 44px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--color-gold); opacity: 0.6;
}
.scroll-indicator span { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(212,175,55,0.25); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: var(--color-gold); animation: scrollDown 2s infinite ease-in-out;
}
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: var(--color-gold); line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 11px; color: var(--color-muted);
  letter-spacing: 0.06em; line-height: 1.4;
}
.trust-divider {
  width: 1px; height: 48px;
  background: var(--color-border); margin: 0 auto;
}
@media (max-width: 768px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--color-gold); opacity: 0.7; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════
   OPPORTUNITY SECTION
═══════════════════════════════════════════════════════════ */
.opportunity {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative; overflow: hidden;
}
.opportunity-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.opportunity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.opp-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px); font-weight: 300;
  line-height: 1.1; margin-bottom: 28px;
}
.opp-headline em { font-style: italic; color: var(--color-gold); }
.opp-body { font-size: 16px; color: var(--color-muted); line-height: 1.8; margin-bottom: 20px; }
.opp-callout {
  border-left: 2px solid var(--color-gold);
  padding-left: 20px;
  margin: 28px 0;
}
.opp-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: var(--color-text);
  line-height: 1.5;
}
.opp-cards { display: flex; flex-direction: column; gap: 20px; }
.opp-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  padding: 24px 28px;
  position: relative; overflow: hidden;
  transition: border-color .3s;
}
.opp-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--color-gold); opacity: 0;
  transition: opacity .3s;
}
.opp-card:hover { border-color: rgba(212,175,55,0.3); }
.opp-card:hover::before { opacity: 1; }
.opp-card-title { font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.opp-card-text { font-size: 13px; color: var(--color-muted); line-height: 1.6; }
@media (max-width: 900px) { .opportunity-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ═══════════════════════════════════════════════════════════
   SHOWCASE SECTION
═══════════════════════════════════════════════════════════ */
.showcase-section {
  padding: 100px 0 120px;
  background: var(--color-surface);
  position: relative;
}
.showcase-header { text-align: center; margin-bottom: 56px; }
.showcase-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-muted); border: 1px solid var(--color-border);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
}
.showcase-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.showcase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; margin-bottom: 16px;
}
.showcase-title em { font-style: italic; color: var(--color-gold); }
.showcase-sub {
  font-size: 15px; color: var(--color-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* Player wrapper */
.showcase-player-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
}
.showcase-player {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 12px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.18),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 100px rgba(212,175,55,0.05);
  cursor: pointer;
  transition: box-shadow .4s ease;
}
.showcase-player:hover {
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.32),
    0 50px 100px rgba(0,0,0,0.7),
    0 0 140px rgba(212,175,55,0.08);
}
.showcase-cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2; transition: opacity .6s ease;
}
.showcase-cover.hidden { opacity: 0; pointer-events: none; }
.showcase-bg-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.2) 50%, rgba(5,5,5,0.7) 100%),
    url('https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fit=crop&w=1600&q=75')
    center/cover;
  filter: brightness(0.5) saturate(0.6);
  transition: transform .8s var(--ease-out);
}
.showcase-player:hover .showcase-bg-img { transform: scale(1.03); }
.showcase-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.6) 100%);
}
.showcase-badge {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 8px;
  padding: 8px 14px; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-gold);
}
.showcase-play-wrap {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.showcase-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(212,175,55,0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
  transition: background .3s, border-color .3s, transform .3s;
}
.showcase-play-btn:hover {
  background: rgba(212,175,55,0.18);
  border-color: rgba(212,175,55,0.9);
  transform: scale(1.08);
}
.showcase-play-btn::before, .showcase-play-btn::after {
  content: ''; position: absolute; inset: -12px;
  border-radius: 50%; border: 1px solid rgba(212,175,55,0.2);
  animation: tourPulse 2.4s ease-in-out infinite;
}
.showcase-play-btn::after { inset: -24px; animation-delay: .8s; }
@keyframes tourPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.06); opacity: 1; }
}
.showcase-play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.showcase-play-cta {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.showcase-cover-info {
  position: absolute; bottom: 24px; left: 0; right: 0;
  z-index: 5; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
.showcase-iframe-wrap {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .6s ease;
}
.showcase-iframe-wrap.active { opacity: 1; pointer-events: auto; }
.showcase-iframe-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.showcase-note {
  text-align: center; margin-top: 20px;
  font-size: 11px; color: var(--color-muted); letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════════════════════════ */
.case-study {
  padding: 120px 0;
  background: var(--color-bg);
}
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.case-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 300;
  line-height: 1.15; margin-bottom: 24px;
}
.case-h2 em { font-style: italic; color: var(--color-gold); }
.case-body {
  font-size: 15px; color: var(--color-muted);
  line-height: 1.8; margin-bottom: 20px; font-weight: 300;
}
.case-quote {
  border-left: 2px solid var(--color-gold); padding-left: 20px;
  margin: 32px 0;
}
.case-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: rgba(255,255,255,0.85);
  line-height: 1.5; margin-bottom: 8px;
}
.case-quote cite { font-size: 11px; color: var(--color-muted); letter-spacing: 0.1em; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metric-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  transition: border-color .3s;
}
.metric-card:hover { border-color: rgba(212,175,55,0.3); }
.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--color-gold);
  line-height: 1; margin-bottom: 8px;
}
.metric-label { font-size: 12px; color: var(--color-muted); line-height: 1.5; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; gap: 56px; } }
@media (max-width: 600px) { .case-metrics { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════════════════ */
.benefits {
  padding: 120px 0;
  background: var(--color-surface);
}
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; margin-bottom: 16px;
}
.benefits-title em { font-style: italic; color: var(--color-gold); }
.benefits-sub {
  font-size: 15px; color: var(--color-muted);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s;
}
.benefit-card:hover {
  border-color: rgba(212,175,55,0.28);
  transform: translateY(-6px);
}
.benefit-icon {
  width: 44px; height: 44px; margin-bottom: 20px;
  color: var(--color-gold);
}
.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--color-text);
  margin-bottom: 10px;
}
.benefit-text { font-size: 13px; color: var(--color-muted); line-height: 1.65; font-weight: 300; }
@media (max-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   WHO IS THIS FOR
═══════════════════════════════════════════════════════════ */
.audience {
  padding: 120px 0;
  background: var(--color-bg);
}
.audience-header { text-align: center; margin-bottom: 64px; }
.audience-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; margin-bottom: 16px;
}
.audience-title em { font-style: italic; color: var(--color-gold); }
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  padding: 40px 36px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.015);
  position: relative; overflow: hidden;
  transition: border-color .3s;
}
.audience-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.audience-card:hover { border-color: rgba(212,175,55,0.2); }
.audience-card:hover::after { opacity: 1; }
.audience-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: rgba(212,175,55,0.08);
  position: absolute; top: 16px; right: 24px; line-height: 1;
  pointer-events: none; user-select: none;
}
.audience-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--color-text);
  margin-bottom: 12px;
}
.audience-card-sub {
  font-size: 10px; color: var(--color-gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.audience-card-body { font-size: 14px; color: var(--color-muted); line-height: 1.7; font-weight: 300; }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--color-surface);
  position: relative;
}
.process-header { text-align: center; margin-bottom: 80px; }
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 300;
  line-height: 1.1;
}
.process-title em { font-style: italic; color: var(--color-gold); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 16.67%; right: 16.67%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3; pointer-events: none;
}
.process-step { padding: 0 40px; text-align: center; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--color-gold); position: relative; z-index: 2;
}
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--color-text);
  margin-bottom: 12px;
}
.process-step-text { font-size: 13px; color: var(--color-muted); line-height: 1.65; font-weight: 300; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MID CTA
═══════════════════════════════════════════════════════════ */
.mid-cta {
  padding: 100px 0;
  background: var(--color-bg);
  text-align: center; position: relative; overflow: hidden;
}
.mid-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mid-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 300;
  line-height: 1.2; margin-bottom: 16px;
  position: relative; z-index: 2;
}
.mid-cta-title em { font-style: italic; color: var(--color-gold); }
.mid-cta-sub {
  font-size: 15px; color: var(--color-muted);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.7; position: relative; z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--color-surface);
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 300;
  line-height: 1.1; margin-bottom: 12px;
}
.faq-title em { font-style: italic; color: var(--color-gold); }
.faq-sub { font-size: 14px; color: var(--color-muted); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.015);
  overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(212,175,55,0.2); }
.faq-q {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 500; color: var(--color-text);
  transition: color .2s;
}
.faq-q:hover { color: var(--color-gold); }
.faq-q-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  position: relative;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.faq-q-icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q-icon::after  { width: 1px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 14px; color: var(--color-muted); line-height: 1.75; font-weight: 300;
  border-top: 1px solid var(--color-border);
  padding-top: 20px; margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.final-cta {
  padding: 160px 0;
  background: var(--color-bg);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px); font-weight: 300;
  line-height: 1.05; margin-bottom: 24px;
  position: relative; z-index: 2;
}
.final-cta-title em { font-style: italic; color: var(--color-gold); }
.final-cta-sub {
  font-size: 16px; color: var(--color-muted);
  max-width: 560px; margin: 0 auto 48px;
  line-height: 1.7; font-weight: 300;
  position: relative; z-index: 2;
}
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════
   INTERNAL LINKS BAR
═══════════════════════════════════════════════════════════ */
.internal-links {
  padding: 48px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.internal-links-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.internal-links-label { font-size: 11px; color: var(--color-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.internal-links-list { display: flex; gap: 8px; flex-wrap: wrap; }
.internal-link {
  font-size: 12px; color: var(--color-muted);
  border: 1px solid var(--color-border); padding: 6px 14px;
  transition: color .2s, border-color .2s;
}
.internal-link:hover { color: var(--color-gold); border-color: rgba(212,175,55,0.3); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { transition: filter .4s; }
.footer-logo:hover img { filter: drop-shadow(0 0 8px rgba(212,175,55,0.35)); }
.footer-tagline { font-size: 13px; color: var(--color-muted); line-height: 1.6; max-width: 280px; margin-bottom: 24px; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-gold);
  border: 1px solid rgba(212,175,55,0.2); padding: 8px 16px;
  transition: border-color .2s;
}
.footer-wa:hover { border-color: var(--color-gold); box-shadow: 0 0 14px rgba(212,175,55,0.15); }
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--color-muted); transition: color .2s; }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--color-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--color-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--color-text); }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ═══════════════════════════════════════════════════════════
   GENERAL RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .btn-gold { padding: 12px 20px; font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
