/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
img, svg { display: block; }

/* ── CSS VARIABLES ── */
:root {
  --color-bg:        #0a0a0f;
  --color-bg-card:   #111118;
  --color-border:    #1e1e2e;
  --color-gold:      #c9a84c;
  --color-gold-dim:  rgba(201,168,76,0.12);
  --color-amber:     #e07b39;
  --color-white:     #f4f4f4;
  --color-muted:     #9a9aaa;
  --color-dark-foot: #07070c;
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', sans-serif;
  --font-mono:       'Space Mono', monospace;
  --max-w:           1200px;
  --section-pad:     120px;
  --radius:          12px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 60px;
  line-height: 1.15;
}
.gold { color: var(--color-gold); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-pad) 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: #dbbe60; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 6px;
  border: 1px solid rgba(244,244,244,0.25);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(244,244,244,0.08); border-color: var(--color-white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--color-white); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--color-gold);
  color: #0a0a0f;
  padding: 10px 22px;
  border-radius: 6px;
  transition: var(--transition);
  animation: pulseGold 3s ease-in-out infinite;
}
.nav-cta:hover { background: #dbbe60; animation: none; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: dotDrift 20s linear infinite;
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: 28px;
  line-height: 1.08;
  letter-spacing: -1px;
}
.gold-word { color: var(--color-gold); }
.word-animate {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 20px 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
  width: 100%;
  text-align: center;
}
.trust-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-muted);
}
.scroll-caret {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  animation: bounceCaret 2s ease-in-out infinite;
  z-index: 1;
}

/* ── PROBLEM SECTION ── */
.problem-section { background: var(--color-bg); }
.cards-grid { display: grid; gap: 24px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.two-col   { grid-template-columns: repeat(2, 1fr); }

.problem-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
}
.problem-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.08);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.card-body {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}
.gold-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--color-gold);
  text-align: center;
  margin-top: 64px;
  line-height: 1.5;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d16 100%);
}
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.06);
}
.service-icon { margin-bottom: 4px; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.3;
}
.service-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
}
.service-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-amber);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  letter-spacing: 0.5px;
}

/* ── PROCESS SECTION ── */
.process-section { background: var(--color-bg); }
.process-timeline { position: relative; margin-bottom: 48px; }
.timeline-line {
  position: absolute;
  top: 28px;
  left: 60px; right: 60px;
  height: 1px;
  background: var(--color-border);
}
.timeline-line-fill {
  height: 100%;
  background: var(--color-gold);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  position: absolute;
  top: -20px;
}
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
  z-index: 1;
  flex-shrink: 0;
  margin-top: 21px;
}
.step-content { padding-top: 16px; }
.step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-amber);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--color-muted); line-height: 1.7; }
.process-guarantee {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  background: var(--color-gold-dim);
}

/* ── RESULTS SECTION ── */
.results-section {
  background: linear-gradient(180deg, #0d0d16 0%, var(--color-bg) 100%);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.result-card {
  background: var(--color-bg-card);
  padding: 56px 40px;
  text-align: center;
  transition: var(--transition);
}
.result-card:hover { background: #141420; }
.result-metric { margin-bottom: 16px; }
.result-metric .stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
}
.result-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.result-context { font-size: 14px; color: var(--color-muted); line-height: 1.7; }
.results-disclaimer { text-align: center; font-size: 13px; color: var(--color-muted); font-style: italic; }

/* ── WHO IS THIS FOR ── */
.fit-section { background: var(--color-bg); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 60px;
  align-items: start;
}
.fit-divider { background: var(--color-border); align-self: stretch; }
.fit-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.fit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yes-icon { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); }
.no-icon { background: rgba(154,154,170,0.08); border: 1px solid rgba(154,154,170,0.2); }
.fit-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 600;
}
.fit-col-title.muted { color: var(--color-muted); }
.fit-list { display: flex; flex-direction: column; gap: 16px; }
.fit-list li {
  font-size: 15px;
  color: var(--color-white);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.muted-list li { color: var(--color-muted); }
.muted-list li::before { content: '✕'; color: var(--color-muted); }

/* ── PRICING SECTION ── */
.pricing-section { background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d16 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 48px rgba(201,168,76,0.12);
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--color-gold);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-sub {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-features li {
  font-size: 14px;
  color: var(--color-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 12px;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-border);
  color: var(--color-white);
  transition: var(--transition);
}
.pricing-cta:hover { border-color: var(--color-gold); color: var(--color-gold); }
.pricing-cta-gold {
  background: var(--color-gold);
  color: #0a0a0f;
  border-color: var(--color-gold);
}
.pricing-cta-gold:hover { background: #dbbe60; color: #0a0a0f; border-color: #dbbe60; }
.pricing-note { text-align: center; font-size: 14px; color: var(--color-muted); }

/* ── BOOKING CTA SECTION ── */
.booking-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d14 0%, #111108 50%, #0d0d14 100%);
  z-index: 0;
}
.booking-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.booking-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.booking-inner {
  position: relative;
  z-index: 1;
}
.eyebrow.light { color: rgba(201,168,76,0.7); }
.booking-headline {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--color-white);
  margin-bottom: 28px;
  line-height: 1.15;
}
.booking-headline em { color: var(--color-gold); font-style: italic; }
.booking-body {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 48px;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 24px;
}
.btn-booking:hover {
  background: var(--color-gold);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.booking-subtext {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(154,154,170,0.6);
  display: block;
}

/* ── FAQ SECTION ── */
.faq-section { background: var(--color-bg); }
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
  gap: 24px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding-bottom: 28px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--color-dark-foot);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.footer-tagline { font-size: 15px; color: var(--color-muted); margin-bottom: 8px; line-height: 1.5; }
.footer-sub { font-family: var(--font-mono); font-size: 11px; color: rgba(154,154,170,0.5); letter-spacing: 1px; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: var(--color-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-white); }
.footer-email {
  font-size: 15px;
  color: var(--color-gold);
  transition: var(--transition);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(201,168,76,0.3);
}
.footer-email:hover { text-decoration-color: var(--color-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: rgba(154,154,170,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(154,154,170,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-muted); }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .timeline-line { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 16px 24px; font-size: 16px; width: 100%; }
  .nav-cta { margin: 16px 24px 0; padding: 14px 24px; text-align: center; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-bar { padding: 16px 20px; }
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .booking-headline { font-size: 1.8rem; }
}
