/* ============================================
   lm created it - V3 "SHINY GOLD" UI
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Deep Dark Bases */
  --bg-deep: #050505;
  --bg-surface: #111111;
  --bg-glass: rgba(17, 17, 17, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* The Metallic Gold Vibe */
  --gold-glow: rgba(252, 246, 186, 0.15);

  /* Typography */
  --text-main: #FAFAF9;
  --text-muted: #A1A1AA;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================ */
.hidden-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger for pricing cards */
.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.3s; }

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* THE SHINY METALLIC TEXT GRADIENT */
.text-gold {
  background: linear-gradient(to right, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

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

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.card-tag {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  /* Slightly rounded, modern tech feel */
  font-family: var(--font-main);
  letter-spacing: -0.01em;
}

.btn-primary {
  /* Metallic Gold Button */
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
  color: #000;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 246, 186, 0.4);
  background: linear-gradient(135deg, #FCF6BA, #B38728, #FBF5B7);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #BF953F;
}

.btn-outline:hover {
  background: rgba(191, 149, 63, 0.1);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-text-1 {
  display: inline-block;
}

.logo-dot {
  display: inline-block;
  color: #BF953F;
  transition: opacity 0.3s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5px;
}

.logo-text-2 {
  display: inline-block;
  color: #BF953F;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When dot vanishes, text shifts left gracefully */
.logo.snitch-active .logo-dot {
  opacity: 0;
  transform: scale(0.5); /* Helps shrink visually before disconnect */
}

.logo.snitch-active .logo-text-2 {
  transform: translateX(-0.35em); /* Responsive gap close */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
  color: var(--text-main);
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Premium Blur Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
}

.orb-gold {
  background: rgba(191, 149, 63, 0.15);
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
}

.orb-dark {
  background: rgba(255, 255, 255, 0.04);
  width: 800px;
  height: 800px;
  bottom: -20%;
  right: -10%;
}


/* ============================================
   TRUST-HACK MARQUEE
============================================ */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.marquee-track .marquee-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: #BF953F;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* ============================================
   THE WOLF WORKFLOW (Vertical Sales Pitch)
============================================ */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

.workflow-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* The vertical glowing line */
.workflow-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(191,149,63,0.1), #BF953F, rgba(191,149,63,0.1));
  z-index: 0;
}

.workflow-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 80px;
  z-index: 1;
}

.workflow-step:last-child {
  margin-bottom: 0;
}

/* The glowing dot on the line */
.workflow-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050505;
  border: 2px solid #BF953F;
  box-shadow: 0 0 15px rgba(191,149,63,0.5);
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -60px;
  left: 40px;
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(191,149,63,0.3) 0%, rgba(191,149,63,0) 100%);
  -webkit-background-clip: text;
  color: transparent;
  z-index: -1;
  line-height: 1;
  letter-spacing: -0.05em;
}

.workflow-step h3 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.workflow-step p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.highlighted-pitch {
  color: #FBF5B7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .workflow-container::before {
    left: 12px;
  }
  .workflow-step {
    padding-left: 40px;
  }
  .workflow-step::before {
    left: 5px;
  }
  .step-number {
    font-size: 6rem;
    left: 20px;
    top: -40px;
  }
  .workflow-step h3 {
    font-size: 1.8rem;
  }
}

/* ============================================
   PRICING TIER CARDS
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  border-color: rgba(191, 149, 63, 0.8);
  background: var(--bg-surface);
  transform: scale(1.04);
  box-shadow: 0 15px 50px rgba(191, 149, 63, 0.15);
  z-index: 10;
}

.pricing-card.premium.visible-reveal {
  transform: scale(1.04) translateY(0);
}

/* The Domination — top tier elite card */
.pricing-card.domination {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, #161616 0%, #1a1606 100%);
  box-shadow:
    0 0 0 1px rgba(252,246,186,0.15),
    0 20px 60px rgba(252,246,186,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.pricing-card.domination::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(252,246,186,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card.domination:hover {
  border-color: rgba(252,246,186,0.4);
  box-shadow:
    0 0 0 1px rgba(252,246,186,0.25),
    0 25px 70px rgba(252,246,186,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.pricing-card.domination .pricing-features li::before {
  background: #FCF6BA;
  box-shadow: 0 0 6px rgba(252,246,186,0.5);
}

.domination-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #FCF6BA, #BF953F);
  color: #0a0a0a;
  border-radius: 3px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 14px;
}

.domination-roi-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(252,246,186,0.08);
  border: 1px solid rgba(252,246,186,0.3);
  color: #FCF6BA;
  border-radius: 4px;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.pricing-card.domination:hover .domination-roi-badge {
  animation: dom-glow 1.8s ease-in-out infinite;
}

@keyframes dom-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(252,246,186,0.2); border-color: rgba(252,246,186,0.3); }
  50% { box-shadow: 0 0 22px rgba(252,246,186,0.5), 0 0 44px rgba(252,246,186,0.2); border-color: #FCF6BA; }
}

.btn-domination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
  width: 100%;
  background: linear-gradient(135deg, #FFFFFF 0%, #FCF6BA 50%, #BF953F 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 24px rgba(252,246,186,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-domination:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(252,246,186,0.35);
  background: linear-gradient(135deg, #FCF6BA 0%, #FFFFFF 50%, #FCF6BA 100%);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 3rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.pricing-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #BF953F;
  border-radius: 50%;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   PRICING BADGES
============================================ */
.roi-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(191,149,63,0.15);
  border: 1px solid #BF953F;
  color: #FBF5B7;
  border-radius: 4px;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card.premium:hover .roi-badge {
  animation: roi-glow 1.8s ease-in-out infinite;
}

@keyframes roi-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(191,149,63,0.4); border-color: #BF953F; }
  50% { box-shadow: 0 0 22px rgba(251,245,183,0.7), 0 0 44px rgba(191,149,63,0.3); border-color: #FBF5B7; color: #fff; }
}

.most-popular-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #BF953F;
  color: #0a0a0a;
  border-radius: 3px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 14px;
}

.annual-nudge {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  margin-bottom: 0;
}

.bespoke-price {
  font-size: 1.6rem !important;
  color: rgba(255,255,255,0.55) !important;
  letter-spacing: 0.05em;
}

.target-audience {
  display: block;
  font-size: 0.85rem;
  color: #BF953F;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CAPACITY WARNING (ANTI-SELL)
============================================ */
.capacity-warning {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 32px;
  background: rgba(234, 179, 8, 0.05);
  border-left: 4px solid #eab308;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.warning-header h4 {
  color: #eab308;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.capacity-warning p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.capacity-warning strong {
  color: var(--text-main);
}

/* ============================================
   RISK REVERSAL
============================================ */
.risk-reversal {
  background: rgba(191, 149, 63, 0.05);
  border: 1px solid rgba(191, 149, 63, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: left;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.risk-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.risk-reversal h4 {
  color: #FBF5B7;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.risk-reversal p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .risk-reversal {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
}

/* ============================================
   CLOSER CTA SECTION
============================================ */
.closer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closer-section h2 {
  font-size: 4rem;
  margin-bottom: 24px;
}

.closer-section p {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-weight: 400;
}

/* ============================================
   OBJECTION DESTROYER FAQ
============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: rgba(191, 149, 63, 0.4);
}

.faq-item summary {
  padding: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  list-style: none; /* removes default arrow in some browsers */
  position: relative;
}

/* Custom Arrow */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #BF953F;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: "-";
  transform: translateY(-50%);
}

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

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.problem-card {
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(191,149,63,0.3);
  transform: translateY(-3px);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

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

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

/* ============================================
   SPEED COMPARISON
============================================ */
.speed-comparison {
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 48px;
}

.speed-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.speed-label-col {
  width: 120px;
  flex-shrink: 0;
}

.speed-site-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.old-label { color: rgba(255,80,80,0.85); }
.new-label { color: rgba(80,220,130,0.9); }

.speed-bar-col {
  flex-grow: 1;
}

.speed-bar-track {
  height: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.speed-bar {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 0s;
}

.speed-bar-old {
  background: linear-gradient(to right, rgba(255,80,80,0.7), rgba(220,60,60,0.5));
}

.speed-bar-new {
  background: linear-gradient(to right, #BF953F, #FCF6BA);
}

.speed-value-col {
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}

.speed-value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.speed-value-old { color: rgba(255,100,100,0.85); }
.speed-value-new { color: #BF953F; }

@media (max-width: 600px) {
  .speed-comparison { padding: 28px 24px; }
  .speed-label-col { width: 90px; }
}

/* ============================================
   WHO IT'S FOR / NOT FOR
============================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fit-card {
  border-radius: 20px;
  padding: 36px;
  border: 1px solid;
}

.fit-yes {
  background: rgba(80,200,120,0.05);
  border-color: rgba(80,200,120,0.2);
}

.fit-no {
  background: rgba(255,80,80,0.04);
  border-color: rgba(255,80,80,0.15);
}

.fit-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.fit-icon {
  font-size: 1.6rem;
}

.fit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-yes .fit-list li {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.fit-yes .fit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(80,200,120,0.7);
  font-weight: 700;
}

.fit-no .fit-list li {
  color: rgba(255,255,255,0.5);
  font-size: 0.98rem;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.fit-no .fit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255,100,100,0.6);
  font-weight: 700;
}

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

/* ============================================
   AVAILABILITY SIGNAL
============================================ */
.availability-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(191,149,63,0.08);
  border: 1px solid rgba(191,149,63,0.25);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BF953F;
  box-shadow: 0 0 8px rgba(191,149,63,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(191,149,63,0.8); }
  50% { opacity: 0.5; box-shadow: 0 0 14px rgba(191,149,63,0.4); }
}

/* ============================================
   NEXT STEPS / WHAT HAPPENS AFTER BOOKING
============================================ */
.next-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.next-steps-grid::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 64px;
  bottom: 64px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(191,149,63,0.15), #BF953F, rgba(191,149,63,0.15));
}

.next-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.next-step:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.next-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid #BF953F;
  box-shadow: 0 0 20px rgba(191,149,63,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #BF953F;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.next-step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.next-step-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  padding: 120px 0;
  overflow: hidden;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 220px;
}

/* ============================================
   FOOTER
============================================ */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #BF953F;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  .next-steps-grid::before {
    display: none;
  }
  .next-step {
    flex-direction: column;
    gap: 16px;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   THE GOLDEN SNITCH (GAMIFICATION)
============================================ */
#golden-snitch {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #BF953F;
  border-radius: 50%;
  box-shadow: 0 0 20px 8px rgba(191,149,63,0.6), 0 0 40px 15px rgba(252,246,186,0.2);
  z-index: 9999;
  cursor: crosshair;
  top: 0; 
  left: 0;
  opacity: 0; /* JS handles fade in */
  pointer-events: auto;
  transform-origin: center center;
}

.snitch-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgba(191,149,63,0.7);
  border-radius: 50%;
  z-index: 9998;
  top: 0; 
  left: 0;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 10px 4px rgba(191,149,63,0.4);
  transform-origin: center center;
}

.snitch-explode {
  animation: snitchexplode 0.5s forwards !important;
}

@keyframes snitchexplode {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(6); opacity: 0.9; background: #FCF6BA; }
  100% { transform: scale(15); opacity: 0; display: none; }
}

/* ============================================
   PREMIUM MODAL
============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(191, 149, 63, 0.6);
  border-radius: 16px;
  padding: 48px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(191, 149, 63, 0.15);
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #BF953F;
}

.modal-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #FBF5B7;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.discount-code {
  background: rgba(191,149,63,0.1);
  border: 1px dashed #BF953F;
  color: #FBF5B7;
  padding: 16px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 32px;
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {

  .uniform-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .pricing-card.premium {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}