/* ========================================
   TELOS FITNESS - COMPLETE CSS STYLESHEET
   Brutalist, Dark-Mode Editorial Design
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */

:root {
  /* Colors */
  --color-bg-primary: #080808;
  --color-bg-card: #111111;
  --color-bg-dark: #151515;
  --color-text-primary: #F2EFE9;
  --color-text-muted: #888;
  --color-text-muted-dark: #666;
  --color-text-muted-light: #999;
  --color-border-card: #1e1e1e;
  --color-border-subtle: #222;
  --color-border-subtle-light: #2a2a2a;
  --color-accent-gold: #C9A84C;
  --color-accent-gold-light: rgba(201, 168, 76, 0.15);
  --color-accent-gold-dark: rgba(201, 168, 76, 0.08);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --spacing-unit: 16px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 100px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  @media (max-width: 768px) {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  @media (max-width: 768px) {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  @media (max-width: 768px) {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

p {
  margin: 0 0 1em 0;
  color: var(--color-text-primary);
}

a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: #dbb955;
}

/* ========================================
   LAYOUT & STRUCTURE
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

section {
  width: 100%;
  padding: var(--spacing-4xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-2xl) 0;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-md);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.75rem;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: #000;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.btn-primary:hover {
  background-color: #dbb955;
  color: #000;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-subtle);
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  border-color: var(--color-text-muted);
  color: var(--color-text-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-subtle-light);
}

.btn-outline:hover {
  border-color: var(--color-text-muted);
  background-color: rgba(242, 239, 233, 0.05);
  color: var(--color-text-primary);
}

.btn-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-featured {
  border: 2px solid var(--color-accent-gold);
  box-shadow: 0 0 40px var(--color-accent-gold-light);
}

.card-featured:hover {
  box-shadow: 0 0 60px var(--color-accent-gold-light);
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: transparent;
  z-index: 1000;
  transition: background-color var(--transition-base);
}

nav.scrolled {
  background-color: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08), 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* Nav Brand (avatar + logo) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-ig-story + .nav-ig-story {
  margin-left: -6px;
}

.nav-ig-story {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  position: relative;
  z-index: 1;
}

.nav-ig-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9, #4c68d7, #6b8ee7, #f09433);
  z-index: 0;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  transition: transform 0.3s ease;
}

.nav-ig-story:hover .nav-ig-ring {
  transform: scale(1.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.nav-logo img {
  height: 40px;
  margin-right: var(--spacing-md);
}

.nav-links {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: width var(--transition-base);
}

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

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) 0;
  min-width: 200px;
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-border-card);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  color: var(--color-accent-gold);
  background: rgba(201, 168, 76, 0.06);
}

/* Mobile dropdown */
.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: var(--spacing-sm) 0 0 var(--spacing-lg);
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
}

.mobile-dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.mobile-dropdown.active .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu a {
  font-size: 10px;
  color: var(--color-text-muted-light);
}

.nav-client-login {
  font-size: 11px;
  color: var(--color-text-muted-light) !important;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-client-login:hover {
  opacity: 1;
  color: var(--color-accent-gold) !important;
}

.nav-cta {
  margin-left: var(--spacing-lg);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--spacing-lg);
    background-color: var(--color-bg-primary);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-cta {
    margin-left: 0;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
  padding-top: 70px;
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 120%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle noise texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Animated floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.09) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, 40px) scale(1.1); }
  50% { transform: translate(30px, 80px) scale(0.95); }
  75% { transform: translate(-40px, 30px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -40px) scale(1.08); }
  66% { transform: translate(40px, -60px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -60px) scale(1.15); }
}

/* Mouse-tracking spotlight */
.hero-spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease-out, top 0.3s ease-out;
  will-change: left, top;
}

/* Hero text reveal animation */
.hero-text-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text-reveal:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-text-reveal:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero label animation */
.hero-label {
  opacity: 0;
  animation: heroLabelIn 0.6s ease forwards 0.1s;
}

@keyframes heroLabelIn {
  0% { opacity: 0; letter-spacing: 8px; }
  100% { opacity: 1; letter-spacing: 3px; }
}

/* Hero staggered fade ups */
.hero-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade-up:nth-child(3) { animation-delay: 0.6s; }
.hero-fade-up:nth-child(4) { animation-delay: 0.75s; }
.hero-fade-up:nth-child(5) { animation-delay: 0.9s; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
}

.hero-subtext {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-subtext {
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
  }
}

.hero .btn-group {
  justify-content: center;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
  background-color: var(--color-bg-primary);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
}

@media (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.step {
  display: flex;
  flex-direction: column;
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  font-weight: 700;
}

.step-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.step-description {
  font-size: 14px;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

/* ========================================
   ABOUT/ORIGIN SECTION
   ======================================== */

.about {
  background-color: var(--color-bg-primary);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

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

.stat {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
  background-color: var(--color-bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  perspective: 1000px;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .pricing-card.featured {
    order: -1;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  position: relative;
  transition: all var(--transition-slow);
  min-width: 0;
}

.pricing-card > .btn {
  margin-top: auto;
}

.pricing-card-growth {
  background: #0d0d0d;
  border: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card-growth:hover {
  border-color: #555;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 2px solid var(--color-accent-gold);
  box-shadow: 0 0 40px var(--color-accent-gold-light);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 60px var(--color-accent-gold-light);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background-color: var(--color-accent-gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
  text-transform: uppercase;
}

.pricing-description {
  font-size: 14px;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.pricing-cta {
  margin-bottom: var(--spacing-xl);
  width: 100%;
}

.pricing-card.featured .pricing-cta {
  background-color: var(--color-accent-gold);
}

.pricing-card:not(.featured) .pricing-cta {
  background-color: var(--color-bg-dark);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-size: 14px;
  color: var(--color-text-primary);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon.included {
  color: var(--color-accent-gold);
  font-weight: bold;
}

.feature-icon.excluded {
  color: var(--color-text-muted-dark);
  font-weight: bold;
}

.feature-text {
  flex-grow: 1;
}

.feature-item.excluded .feature-text {
  color: var(--color-text-muted-dark);
}

/* ========================================
   QUIZ SECTION
   ======================================== */

.quiz {
  background-color: var(--color-bg-primary);
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

.quiz-progress {
  margin-bottom: var(--spacing-2xl);
}

.quiz-progress-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.quiz-progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--color-bg-card);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border-card);
}

.quiz-progress-fill {
  height: 100%;
  background-color: var(--color-accent-gold);
  width: 0%;
  transition: width var(--transition-slow);
}

.quiz-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp var(--transition-slow) ease;
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-primary);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.quiz-option {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 14px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--color-accent-gold);
  background-color: rgba(201, 168, 76, 0.05);
  color: var(--color-text-primary);
}

.quiz-option.selected {
  border-color: var(--color-accent-gold);
  background-color: var(--color-accent-gold-dark);
  color: var(--color-text-primary);
}

.quiz-result {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  animation: fadeInUp var(--transition-slow) ease;
}

.quiz-result-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.quiz-score-ring {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--spacing-xl);
  position: relative;
}

.quiz-score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.quiz-score-circle-bg {
  fill: none;
  stroke: var(--color-border-card);
  stroke-width: 4;
}

.quiz-score-circle {
  fill: none;
  stroke: var(--color-accent-gold);
  stroke-width: 4;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  transition: stroke-dashoffset var(--transition-slow);
}

.quiz-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.quiz-score-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  line-height: 1;
}

.quiz-score-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--spacing-sm);
}

.quiz-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border-card);
}

.breakdown-item {
  text-align: center;
}

.breakdown-bar {
  width: 100%;
  height: 8px;
  background-color: var(--color-bg-primary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.breakdown-bar-fill {
  height: 100%;
  background-color: var(--color-accent-gold);
  width: 0%;
  transition: width var(--transition-slow);
}

.breakdown-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  background-color: var(--color-bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.testimonial-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 30px var(--color-accent-gold-light);
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-right: 4px;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  border-top: 1px solid var(--color-border-card);
  padding-top: var(--spacing-lg);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--color-bg-primary);
  border-radius: 50%;
  border: 1px solid var(--color-accent-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  font-weight: bold;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
  background-color: var(--color-bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--color-accent-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--spacing-lg);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-base);
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
}

.faq-question:hover {
  background-color: rgba(242, 239, 233, 0.02);
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-primary);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-card);
  padding: var(--spacing-2xl) 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted-light);
  transition: color var(--transition-base);
}

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

.footer-socials {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted-light);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: #000;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border-card);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-legal a:hover {
  color: var(--color-accent-gold);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Intersection Observer - triggered by JS adding .visible class */
.animate-on-scroll.visible {
  animation: fadeInUp var(--transition-slow) ease forwards;
}

.animate-on-scroll.visible.delay-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.visible.delay-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.visible.delay-3 {
  animation-delay: 0.3s;
}

.animate-on-scroll.visible.delay-4 {
  animation-delay: 0.4s;
}

/* Elements with .animate-on-scroll start hidden, become visible via JS */

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.text-gold {
  color: var(--color-accent-gold);
}

.text-muted {
  color: var(--color-text-muted-light);
}

.mt-small {
  margin-top: var(--spacing-sm);
}

.mt-medium {
  margin-top: var(--spacing-md);
}

.mt-large {
  margin-top: var(--spacing-lg);
}

.mb-small {
  margin-bottom: var(--spacing-sm);
}

.mb-medium {
  margin-bottom: var(--spacing-md);
}

.mb-large {
  margin-bottom: var(--spacing-lg);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   FOCUS & ACCESSIBILITY
   ======================================== */

:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  nav,
  footer {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }
}

/* ========================================
   HERO SECTION - MISSING STYLES
   ======================================== */

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--color-text-muted-light);
  max-width: 600px;
  margin: var(--spacing-lg) auto var(--spacing-2xl);
  line-height: 1.5;
}

.hero-free-link {
  display: inline-block;
  margin-top: var(--spacing-lg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

/* Gold text gradient on headline second line */
.hero-text-gold {
  background: linear-gradient(135deg, #F2EFE9 0%, #C9A84C 40%, #E8D48B 60%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold accent line above label */
.hero-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  margin: 0 auto var(--spacing-lg);
}

/* Horizontal rule between headline and subtext */
.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
  margin: var(--spacing-xl) auto var(--spacing-xl);
}

/* Hero benefits checklist */
.hero-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin: 0 auto var(--spacing-2xl);
  max-width: 560px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
}

@media (max-width: 600px) {
  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }
}

.hero-free-link:hover {
  opacity: 1;
}

/* Social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-proof-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  letter-spacing: 1px;
}

.hero-proof-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(201, 168, 76, 0.2);
}

@media (max-width: 768px) {
  .hero-proof {
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
  }

  .hero-proof-number {
    font-size: 1.25rem;
  }
}

.hero-bg-accent {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-bg-accent {
    width: 250px;
    height: 250px;
    bottom: -15%;
    right: -10%;
  }
}

/* ========================================
   HOW IT WORKS - MISSING STYLES
   ======================================== */

/* ---- Pillars Bento Grid ---- */
.pillars-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "a a a b b"
    "c c d d d";
  gap: 16px;
  margin-bottom: var(--spacing-3xl);
}

.pillars-bento .pillar-card:nth-child(1) { grid-area: a; }
.pillars-bento .pillar-card:nth-child(2) { grid-area: b; }
.pillars-bento .pillar-card:nth-child(3) { grid-area: c; }
.pillars-bento .pillar-card:nth-child(4) { grid-area: d; }

/* Card base */
.pillar-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.04);
}

/* Hero cards get extra visual weight */
.pillar-hero {
  background: linear-gradient(165deg, #111111 0%, #0c0c08 100%);
  border-color: rgba(201, 168, 76, 0.15);
}

.pillar-hero:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 60px rgba(201, 168, 76, 0.06);
}

/* Giant background number */
.pillar-bg-number {
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-bg-number {
  opacity: 0.1;
}

.pillar-hero .pillar-bg-number {
  font-size: 9rem;
  opacity: 0.06;
}

/* Gold accent line at top */
.pillar-accent-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, rgba(201, 168, 76, 0.2));
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width 0.4s ease;
}

.pillar-card:hover .pillar-accent-line {
  width: 70px;
}

.pillar-hero .pillar-accent-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8D48B, rgba(201, 168, 76, 0.1));
}

/* Icon */
.pillar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrap {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
  transform: scale(1.05);
}

/* Label */
.pillar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  opacity: 0.7;
  margin-bottom: 8px;
}

/* Name */
.pillar-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #F2EFE9 20%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-hero .pillar-name {
  font-size: 1.75rem;
}

/* Description */
.pillar-desc {
  color: var(--color-text-muted-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tags */
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-tag {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
  .pillars-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d";
  }
}

@media (max-width: 640px) {
  .pillars-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
  }

  .pillar-card {
    padding: 28px 22px 22px;
  }

  .pillar-bg-number,
  .pillar-hero .pillar-bg-number {
    font-size: 5rem;
  }

  .pillar-hero .pillar-name {
    font-size: 1.5rem;
  }
}

/* ========================================
   ABOUT SECTION - MISSING STYLES
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.about-story .section-label {
  margin-bottom: var(--spacing-md);
}

.about-story .section-heading {
  margin-bottom: var(--spacing-lg);
}

/* About highlights */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* About blockquote */
.about-quote {
  border-left: 2px solid var(--color-accent-gold);
  padding-left: var(--spacing-lg);
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

.about-quote cite {
  display: block;
  margin-top: var(--spacing-sm);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

/* Photo column */
.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* Secondary photo row */
.about-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-photo-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--color-border-card);
}

.about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.about-photo-secondary:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.03);
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
}

.about-photo {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.6s ease;
}

.about-photo-frame:hover .about-photo {
  filter: grayscale(0%) contrast(1.05);
}

/* Gold corner accents */
.photo-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.photo-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--color-accent-gold);
  border-left: 2px solid var(--color-accent-gold);
}

.photo-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--color-accent-gold);
  border-right: 2px solid var(--color-accent-gold);
}

/* Stats row under photo */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.stat-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: var(--spacing-md) var(--spacing-sm);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-sm);
}

.stat-inline .stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-accent-gold);
  line-height: 1;
}

.stat-inline .stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.3;
}

@media (max-width: 968px) {
  .about-photo-col {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
}

/* ========================================
   PRICING SECTION - MISSING STYLES
   ======================================== */

.pricing-header {
  margin-bottom: var(--spacing-xl);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-gold);
}

.price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.pricing-alt {
  margin-bottom: var(--spacing-lg);
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: var(--color-text-primary);
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  list-style: none;
  margin-bottom: var(--spacing-xl);
  flex-grow: 1;
  padding: 0;
}

.feature-included {
  opacity: 1;
}

.feature-gold {
  color: var(--color-accent-gold);
}

.feature-excluded {
  opacity: 0.6;
}

.guarantee {
  text-align: center;
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee svg {
  margin-bottom: var(--spacing-md);
}

/* ========================================
   QUIZ SECTION - MISSING STYLES
   ======================================== */

.quiz-section {
  background-color: var(--color-bg-primary);
}

.quiz-intro {
  text-align: center;
  padding: var(--spacing-2xl);
}

.quiz-intro h3 {
  margin-bottom: var(--spacing-md);
}

.quiz-question-card {
  display: none;
  padding: var(--spacing-2xl);
  transition: opacity 0.3s ease;
}

.quiz-question-card.active {
  display: block;
}

.quiz-question-counter {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: inline-block;
  margin-bottom: var(--spacing-xs);
}

.quiz-question-text {
  margin-bottom: var(--spacing-xl);
  font-size: 1.25rem;
  line-height: 1.5;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.quiz-progress-bar-fill {
  width: 12.5%;
  height: 100%;
  background: var(--color-accent-gold);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.quiz-lead-capture {
  display: none;
  padding: var(--spacing-2xl);
  text-align: center;
}

.quiz-lead-capture.active {
  display: block;
}

.quiz-lead-capture h3 {
  margin-bottom: var(--spacing-sm);
}

.quiz-lead-capture form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 400px;
  margin: 0 auto;
}

.quiz-results {
  display: none;
  padding: var(--spacing-2xl);
  text-align: center;
}

.quiz-results.active {
  display: block;
}

.quiz-score-ring {
  transition: stroke-dashoffset 1.2s ease-out;
}

.quiz-tier-name {
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.quiz-tier-description {
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quiz-pillar-bars {
  text-align: left;
  margin-bottom: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.quiz-pillar-bar {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: var(--spacing-md);
}

.quiz-pillar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  text-align: right;
}

.quiz-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.quiz-bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.quiz-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  border-radius: 0 5px 5px 0;
}

.quiz-pillar-score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: left;
}

.quiz-weakest-link {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl) var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.quiz-weakest-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-accent-gold);
}

.quiz-weakest-link h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-sm);
}

.quiz-weakest-link p {
  color: var(--color-text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.quiz-cta-btn {
  width: 100%;
  max-width: 360px;
}

.quiz-retake-btn {
  width: 100%;
  max-width: 360px;
}

.quiz-see-score-btn {
  width: 100%;
}

.quiz-start-btn {
  margin: 0 auto;
}

/* ========================================
   FAQ SECTION - MISSING STYLES
   ======================================== */

.faq-section {
  background-color: var(--color-bg-primary);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

/* ========================================
   TESTIMONIALS SECTION - MISSING STYLES
   ======================================== */

.testimonial-text {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* ========================================
   FOOTER - MISSING STYLES
   ======================================== */

.site-footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-card);
  padding: var(--spacing-2xl) 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-brand h3 {
  margin-bottom: 0;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-social {
  display: flex;
  gap: var(--spacing-lg);
}

/* ========================================
   MOBILE MENU - MISSING STYLES
   ======================================== */

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .quiz-pillar-bar {
    grid-template-columns: 90px 1fr 40px;
    gap: var(--spacing-sm);
  }

  .quiz-pillar-label {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
}

.mobile-menu.active {
  max-height: 500px;
}

.mobile-menu ul {
  list-style: none;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu a {
  color: var(--color-text-primary);
  font-size: 14px;
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--color-accent-gold);
}

.mobile-menu .btn {
  width: 100%;
}

/* ========================================
   SECTION DESCRIPTION - MISSING STYLES
   ======================================== */

.section-description {
  color: var(--color-text-muted-light);
  max-width: 640px;
  margin: 0 auto var(--spacing-3xl);
  font-size: 1rem;
  line-height: 1.6;
}

/* ========================================
   INSTAGRAM FEED SECTION
   ======================================== */

.ig-section {
  position: relative;
  padding: var(--spacing-2xl) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-card);
  border-bottom: 1px solid var(--color-border-card);
  overflow: hidden;
}

/* Header row */
.ig-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.ig-section-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-text-muted-light);
}

.ig-section-brand svg {
  opacity: 0.6;
}

.ig-section-brand a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast);
}

.ig-section-brand a:hover {
  color: var(--color-text-primary);
}

.ig-section-follow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.ig-section-follow:hover {
  opacity: 1;
}

/* Carousel track */
.ig-track {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  animation: ig-scroll 90s linear infinite;
  width: max-content;
}

.ig-track:hover {
  animation-play-state: paused;
}

/* Edge fade masks - use a wrapper div since ::before/::after on a.ig-card are already used */
.ig-section > .ig-edge-fade-left,
.ig-section > .ig-edge-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.ig-edge-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-primary), transparent);
}

.ig-edge-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-primary), transparent);
}

/* Individual card */
a.ig-card {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
}

a.ig-card:hover {
  transform: scale(1.04);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
              0 0 24px rgba(201, 168, 76, 0.08);
}

/* Top gradient overlay - masks embed header chrome */
a.ig-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, #080808 0%, rgba(8, 8, 8, 0.7) 40%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* Bottom gradient overlay */
a.ig-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.5) 50%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* Embed sizing - crop header by shifting up */
.ig-card iframe,
.ig-card .instagram-media {
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
  margin: -56px 0 0 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  pointer-events: none;
}

/* Shimmer loading state before embeds render */
.ig-card .instagram-media:not(iframe) {
  min-height: 480px;
  background: linear-gradient(110deg, #0a0a0a 30%, #151515 50%, #0a0a0a 70%);
  background-size: 300% 100%;
  animation: ig-shimmer 2s ease-in-out infinite;
}

@keyframes ig-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Play button overlay */
.ig-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.ig-card-play svg {
  margin-left: 2px; /* optical centering for play triangle */
}

a.ig-card:hover .ig-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Scroll animation */
@keyframes ig-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .ig-section {
    padding: var(--spacing-xl) 0;
  }

  .ig-section-header {
    margin-bottom: var(--spacing-md);
  }

  a.ig-card {
    width: 220px;
    height: 360px;
    border-radius: 12px;
  }

  .ig-card iframe,
  .ig-card .instagram-media {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
  }

  .ig-card-play {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  a.ig-card {
    width: 300px;
    height: 460px;
  }

  .ig-card iframe,
  .ig-card .instagram-media {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
  }

  .ig-card-play {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   DYNAMIC ENHANCEMENTS
   Premium micro-interactions & visual effects
   ======================================== */

/* --- Grain Texture Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.5);
}

/* --- Custom Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

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

/* --- Button Shine Sweep Effect --- */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn-shine:hover::after {
  animation: btnShineSweep 0.6s ease forwards;
}

@keyframes btnShineSweep {
  0% { left: -60%; }
  100% { left: 130%; }
}

/* Enhanced button hover - all primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35), 0 0 60px rgba(201, 168, 76, 0.1);
}

/* --- 3D Card Tilt Effect --- */
.card-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  will-change: transform;
}

.card-tilt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

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

.card-tilt:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(201, 168, 76, 0.05);
}

@media (max-width: 768px) {
  .card-tilt {
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
    transform: none;
  }
}

/* --- Enhanced Card Hover Glow --- */
.how-card {
  position: relative;
  overflow: hidden;
}

.how-card .how-number {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.how-card:hover .how-number {
  opacity: 0.4;
  transform: scale(1.1);
}

.how-card .how-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-card:hover .how-icon {
  transform: translateY(-4px);
}

/* --- Featured Pricing Card Shimmer --- */
.card-featured {
  position: relative;
  overflow: visible;
}

.card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.04),
    transparent
  );
  animation: featuredShimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes featuredShimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Featured card border glow animation */
.card-featured {
  border: 2px solid var(--color-accent-gold);
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.1); }
  100% { box-shadow: 0 0 50px rgba(201, 168, 76, 0.2), 0 0 80px rgba(201, 168, 76, 0.05); }
}

/* --- Enhanced Testimonial Cards --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card .testimonial-quote svg {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-quote svg {
  transform: scale(1.15);
  opacity: 0.6;
}

.testimonial-card .testimonial-avatar {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* --- Enhanced Section Transitions --- */
.how-it-works,
.about,
.pricing,
.quiz-section,
.testimonials,
.faq-section {
  position: relative;
}

.how-it-works::before,
.pricing::before,
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* --- Varied Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s ease;
  filter: blur(4px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Slide from left variant */
.animate-on-scroll[data-anim="slide-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-anim="slide-left"].visible {
  transform: translateX(0);
}

/* Slide from right variant */
.animate-on-scroll[data-anim="slide-right"] {
  transform: translateX(40px);
}

.animate-on-scroll[data-anim="slide-right"].visible {
  transform: translateX(0);
}

/* Scale up variant */
.animate-on-scroll[data-anim="scale"] {
  transform: scale(0.9);
}

.animate-on-scroll[data-anim="scale"].visible {
  transform: scale(1);
}

/* Enhanced stagger with blur */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }

/* --- Stat Number Counter Animation --- */
.stat-inline .stat-number {
  transition: color 0.3s ease;
}

.stat-inline:hover .stat-number {
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.stat-inline {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-inline:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

/* --- Enhanced FAQ Accordion --- */
.faq-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.faq-item.active {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.05);
}

.faq-answer {
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease;
}

/* --- About Photo Parallax --- */
.about-photo {
  transition: filter 0.8s ease, transform 0.8s ease;
}

.about-photo-frame:hover .about-photo {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.03);
}

/* Photo corner accent animation */
.photo-corner {
  transition: all 0.5s ease;
}

.about-photo-frame:hover .photo-corner-tl {
  top: 8px;
  left: 8px;
}

.about-photo-frame:hover .photo-corner-br {
  bottom: 8px;
  right: 8px;
}

/* --- Guarantee Section Enhancement --- */
.guarantee {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.guarantee:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.05);
}

/* --- Instagram Section Enhancement --- */
.ig-section {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

/* --- Footer Enhancement --- */
.site-footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

/* --- Page Load Animation (opt-in via class) --- */
body.page-load-anim {
  animation: pageLoad 0.6s ease forwards;
}

@keyframes pageLoad {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* --- Smooth link hover for all sections --- */
.nav-links a,
.mobile-menu a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-accent-gold);
}

/* --- Pricing Badge Pulse --- */
.pricing-badge {
  animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  100% { box-shadow: 0 0 12px 4px rgba(201, 168, 76, 0.15); }
}

