/* ==========================================================================
   AI AGENT WORKSHOP LANDING PAGE - DESIGN SYSTEM & STYLESHEET
   Brand: innoGold Pro | Aesthetic: Elevated Dark Obsidian & Gold Glassmorphism
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES / DESIGN SYSTEM TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Obsidian & Surface Levels */
  --color-obsidian-base: #0B0F19;
  --color-obsidian-surface: #131B2E;
  --color-surface-card: rgba(19, 27, 46, 0.7);
  --color-surface-card-hover: rgba(24, 34, 56, 0.85);
  --color-surface-glass: rgba(19, 27, 46, 0.6);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glass-border-light: rgba(255, 255, 255, 0.12);

  /* Gold Accent Palette */
  --color-gold-bright: #F3C649;
  --color-gold-mid: #D4AF37;
  --color-gold-dark: #B8860B;
  --color-gold-glow: rgba(243, 198, 73, 0.4);
  --color-gold-border: rgba(243, 198, 73, 0.3);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #F3C649 0%, #D4AF37 50%, #B8860B 100%);
  --gradient-gold-hover: linear-gradient(135deg, #FFE082 0%, #F3C649 50%, #D4AF37 100%);
  --gradient-headline: linear-gradient(135deg, #FFFFFF 20%, #F3C649 70%, #D4AF37 100%);
  --gradient-card-highlight: linear-gradient(180deg, rgba(243, 198, 73, 0.12) 0%, rgba(19, 27, 46, 0.8) 100%);
  
  /* Cyan Accent (used by the agenda break-card) */
  --color-cyan: #06B6D4;
  --color-cyan-glow: rgba(6, 182, 212, 0.3);
  --gradient-radial-cyan: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  --gradient-radial-gold: radial-gradient(circle, rgba(243, 198, 73, 0.25) 0%, transparent 70%);

  /* Aurora Palette — brand-locked RGB triplets (gold-dominant, obsidian-cool support) */
  --aurora-gold: 243, 198, 73;      /* --color-gold-bright */
  --aurora-amber: 212, 175, 55;     /* --color-gold-mid    */
  --aurora-bronze: 184, 134, 11;    /* --color-gold-dark   */
  --aurora-deep: 38, 68, 122;       /* deep sapphire, derived from obsidian surface */
  --aurora-cyan: 6, 182, 212;       /* --color-cyan, used sparingly as a cool rim */
  --gradient-radial-sapphire: radial-gradient(circle, rgba(38, 68, 122, 0.28) 0%, transparent 70%);

  /* Status Colors */
  --color-danger: #EF4444;
  --color-danger-bg: rgba(239, 68, 68, 0.08);
  --color-danger-border: rgba(239, 68, 68, 0.25);
  --color-success: #10B981;
  --color-success-bg: rgba(16, 185, 129, 0.1);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --color-text-primary: #F8FAFC;
  --color-text-secondary: #CBD5E1;
  --color-text-muted: #94A3B8;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 25px rgba(243, 198, 73, 0.35);
  --shadow-gold-hover: 0 0 40px rgba(243, 198, 73, 0.6);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-obsidian-base);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Headings & Buttons Font Setup */
h1, h2, h3, h4, h5, h6,
.btn, .badge, .nav-brand, .section-tag, .pricing-badge, .agenda-time {
  font-family: var(--font-heading);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. REUSABLE UTILITIES & LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-bright);
  background: rgba(243, 198, 73, 0.1);
  border: 1px solid var(--color-gold-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(243, 198, 73, 0.15);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFFFFF 40%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid System Helpers */
.grid-container {
  display: grid;
}

.flex-container {
  display: flex;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTA ANIMATIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary, .btn-glow {
  background: var(--gradient-gold);
  color: var(--color-obsidian-base);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover, .btn-glow:hover {
  background: var(--gradient-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
  color: #000000;
}

.btn-primary:active, .btn-glow:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  border: 1px solid var(--color-glass-border-light);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold-border);
  color: var(--color-gold-bright);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Glowing Pulsing Button Effect */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(243, 198, 73, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(243, 198, 73, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(243, 198, 73, 0.4);
  }
}

.btn-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   5. HEADER & STICKY NAVIGATION (#navbar)
   -------------------------------------------------------------------------- */
header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(11, 15, 25, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: padding var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 15, 25, 0.92);
  border-bottom-color: var(--color-gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Brand Logo Image (nav + footer) */
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(243, 198, 73, 0.25));
  transition: height var(--transition-normal), filter var(--transition-fast);
}

.nav-brand:hover .brand-logo,
.footer-brand:hover .brand-logo {
  filter: drop-shadow(0 0 18px rgba(243, 198, 73, 0.45));
}

.navbar.scrolled .brand-logo {
  height: 31px;
}

.brand-logo-footer {
  height: 42px;
}

.brand-gold {
  color: var(--color-gold-bright);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(243, 198, 73, 0.3));
}

.brand-pro {
  color: var(--color-text-primary);
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(243, 198, 73, 0.15);
  color: var(--color-gold-bright);
  border: 1px solid var(--color-gold-border);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--color-gold-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (#hero)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* --- Aurora Borealis Animated Background -----------------------------------
   Brand-locked: gold is the light source, deep sapphire (the obsidian surface
   pushed to saturation) is the cool counterweight. Cyan appears only as a thin
   rim so it echoes the agenda break-card accent without going neon.
   Shapes are wide ellipses rather than circles so they read as drifting
   curtains instead of blobs.
   -------------------------------------------------------------------------- */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Cool base wash: keeps the gold curtains from floating on flat black */
.aurora-bg::before {
  content: '';
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(ellipse 80% 62% at 50% -5%, rgba(var(--aurora-deep), 0.40) 0%, transparent 62%),
    radial-gradient(ellipse 60% 45% at 90% 58%, rgba(var(--aurora-deep), 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.aurora-glow {
  position: absolute;
  filter: blur(100px);
  opacity: 0.7;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}

/* 1 — Primary gold curtain, upper left */
.aurora-1 {
  top: -30%;
  left: -14%;
  width: 82vw;
  height: 58vw;
  background: radial-gradient(ellipse 62% 55% at 46% 50%,
    rgba(var(--aurora-gold), 0.55) 0%,
    rgba(var(--aurora-amber), 0.34) 40%,
    rgba(var(--aurora-bronze), 0.14) 62%,
    transparent 78%);
  animation: aurora-flow-1 20s infinite ease-in-out;
}

/* 2 — Sapphire counterweight, upper right. The cyan stop stays low so the
   screen-blend with gold reads as warm light, not a green cast. */
.aurora-2 {
  top: 2%;
  right: -20%;
  width: 76vw;
  height: 54vw;
  background: radial-gradient(ellipse 58% 50% at 54% 48%,
    rgba(var(--aurora-deep), 0.55) 0%,
    rgba(var(--aurora-cyan), 0.10) 46%,
    rgba(var(--aurora-deep), 0.14) 68%,
    transparent 82%);
  animation: aurora-flow-2 26s infinite ease-in-out;
}

/* 3 — Warm bronze bridge, low and wide, where the two meet */
.aurora-3 {
  bottom: -30%;
  left: 8%;
  width: 88vw;
  height: 52vw;
  background: radial-gradient(ellipse 64% 48% at 50% 46%,
    rgba(var(--aurora-amber), 0.38) 0%,
    rgba(var(--aurora-bronze), 0.24) 36%,
    rgba(var(--aurora-deep), 0.24) 64%,
    transparent 84%);
  animation: aurora-flow-3 32s infinite ease-in-out;
}

/* Loops are seamless (0% === 100%) so they run continuously instead of
   ping-ponging, and the amplitudes are large enough to read at a glance. */
@keyframes aurora-flow-1 {
  0%   { transform: translate3d(-7%, -5%, 0) scale(1.00) rotate(-7deg); opacity: 0.45; }
  30%  { transform: translate3d(9%, 7%, 0)   scale(1.24) rotate(9deg);  opacity: 0.82; }
  62%  { transform: translate3d(3%, 14%, 0)  scale(0.90) rotate(-2deg); opacity: 0.55; }
  100% { transform: translate3d(-7%, -5%, 0) scale(1.00) rotate(-7deg); opacity: 0.45; }
}

@keyframes aurora-flow-2 {
  0%   { transform: translate3d(6%, 4%, 0)   scale(1.00) rotate(6deg);   opacity: 0.40; }
  35%  { transform: translate3d(-11%, -8%, 0) scale(1.26) rotate(-10deg); opacity: 0.72; }
  68%  { transform: translate3d(-3%, -15%, 0) scale(0.92) rotate(4deg);   opacity: 0.5; }
  100% { transform: translate3d(6%, 4%, 0)   scale(1.00) rotate(6deg);   opacity: 0.40; }
}

@keyframes aurora-flow-3 {
  0%   { transform: translate3d(-5%, 3%, 0)  scale(1.00) rotate(4deg);  opacity: 0.36; }
  40%  { transform: translate3d(12%, -9%, 0) scale(1.28) rotate(-8deg); opacity: 0.66; }
  72%  { transform: translate3d(5%, -4%, 0)  scale(1.06) rotate(7deg);  opacity: 0.46; }
  100% { transform: translate3d(-5%, 3%, 0)  scale(1.00) rotate(4deg);  opacity: 0.36; }
}

/* --- Aurora curtains: the actual "northern lights" motion -------------------
   Vertical light shafts cut out of a gradient with a repeating mask, then
   skewed and slid so they lean and travel the way real curtains do.
   -------------------------------------------------------------------------- */
.aurora-curtains {
  position: absolute;
  inset: -12% -20%;
  pointer-events: none;
}

.curtain {
  position: absolute;
  top: -25%;
  height: 135%;
  transform-origin: 50% 0%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

/* Each shaft group uses an irregular mask period with soft-alpha edges, so the
   bands read as light rather than as a repeating stripe pattern. Periods and
   angles differ per curtain to stop the three layers forming a moiré. */
.curtain-1 {
  left: 0%;
  width: 50%;
  filter: blur(38px);
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(var(--aurora-gold), 0.42) 20%,
    rgba(var(--aurora-amber), 0.20) 44%,
    rgba(var(--aurora-amber), 0.06) 60%,
    transparent 74%);
  -webkit-mask-image: repeating-linear-gradient(96deg,
    transparent 0px, rgba(0, 0, 0, 0.30) 16px, #000 34px,
    rgba(0, 0, 0, 0.45) 52px, transparent 66px, transparent 82px,
    #000 104px, rgba(0, 0, 0, 0.35) 118px, transparent 138px, transparent 158px);
  mask-image: repeating-linear-gradient(96deg,
    transparent 0px, rgba(0, 0, 0, 0.30) 16px, #000 34px,
    rgba(0, 0, 0, 0.45) 52px, transparent 66px, transparent 82px,
    #000 104px, rgba(0, 0, 0, 0.35) 118px, transparent 138px, transparent 158px);
  animation: curtain-wave-1 14s ease-in-out infinite;
}

.curtain-2 {
  left: 26%;
  width: 54%;
  filter: blur(34px);
  background: linear-gradient(to bottom,
    transparent 2%,
    rgba(var(--aurora-cyan), 0.14) 22%,
    rgba(var(--aurora-deep), 0.32) 46%,
    rgba(var(--aurora-deep), 0.10) 62%,
    transparent 78%);
  -webkit-mask-image: repeating-linear-gradient(101deg,
    transparent 0px, rgba(0, 0, 0, 0.4) 20px, #000 44px,
    rgba(0, 0, 0, 0.3) 62px, transparent 80px, transparent 104px,
    #000 128px, rgba(0, 0, 0, 0.5) 146px, transparent 170px, transparent 194px);
  mask-image: repeating-linear-gradient(101deg,
    transparent 0px, rgba(0, 0, 0, 0.4) 20px, #000 44px,
    rgba(0, 0, 0, 0.3) 62px, transparent 80px, transparent 104px,
    #000 128px, rgba(0, 0, 0, 0.5) 146px, transparent 170px, transparent 194px);
  animation: curtain-wave-2 19s ease-in-out infinite;
}

.curtain-3 {
  left: 58%;
  width: 46%;
  filter: blur(30px);
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(var(--aurora-gold), 0.32) 24%,
    rgba(var(--aurora-bronze), 0.18) 48%,
    rgba(var(--aurora-bronze), 0.05) 64%,
    transparent 80%);
  -webkit-mask-image: repeating-linear-gradient(92deg,
    transparent 0px, rgba(0, 0, 0, 0.35) 12px, #000 28px,
    rgba(0, 0, 0, 0.4) 40px, transparent 54px, transparent 70px,
    #000 88px, rgba(0, 0, 0, 0.3) 100px, transparent 116px);
  mask-image: repeating-linear-gradient(92deg,
    transparent 0px, rgba(0, 0, 0, 0.35) 12px, #000 28px,
    rgba(0, 0, 0, 0.4) 40px, transparent 54px, transparent 70px,
    #000 88px, rgba(0, 0, 0, 0.3) 100px, transparent 116px);
  animation: curtain-wave-3 11s ease-in-out infinite;
}

@keyframes curtain-wave-1 {
  0%   { transform: translateX(-9%) skewX(-16deg) scaleY(1.00); opacity: 0.50; }
  25%  { transform: translateX(2%)  skewX(-3deg)  scaleY(1.14); opacity: 0.72; }
  50%  { transform: translateX(11%) skewX(10deg)  scaleY(0.90); opacity: 0.58; }
  75%  { transform: translateX(1%)  skewX(-1deg)  scaleY(1.10); opacity: 0.66; }
  100% { transform: translateX(-9%) skewX(-16deg) scaleY(1.00); opacity: 0.50; }
}

@keyframes curtain-wave-2 {
  0%   { transform: translateX(8%)   skewX(13deg)  scaleY(1.04); opacity: 0.42; }
  30%  { transform: translateX(-4%)  skewX(2deg)   scaleY(0.90); opacity: 0.62; }
  55%  { transform: translateX(-12%) skewX(-11deg) scaleY(1.16); opacity: 0.50; }
  80%  { transform: translateX(-2%)  skewX(4deg)   scaleY(0.96); opacity: 0.68; }
  100% { transform: translateX(8%)   skewX(13deg)  scaleY(1.04); opacity: 0.42; }
}

@keyframes curtain-wave-3 {
  0%   { transform: translateX(4%)   skewX(-8deg) scaleY(0.94); opacity: 0.38; }
  35%  { transform: translateX(-7%)  skewX(9deg)  scaleY(1.18); opacity: 0.60; }
  70%  { transform: translateX(9%)   skewX(-4deg) scaleY(0.98); opacity: 0.48; }
  100% { transform: translateX(4%)   skewX(-8deg) scaleY(0.94); opacity: 0.38; }
}

/* Older engines without mask support would show solid slabs — hide instead */
@supports not ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
  .aurora-curtains { display: none; }
}

/* --- Star field: depth behind the curtains, two layers, offset twinkle ----- */
.aurora-stars {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(2px 2px at 12% 16%, rgba(255, 255, 255, 0.85), transparent 62%),
    radial-gradient(1.5px 1.5px at 27% 41%, rgba(var(--aurora-gold), 0.85), transparent 62%),
    radial-gradient(2px 2px at 40% 11%, rgba(255, 255, 255, 0.65), transparent 62%),
    radial-gradient(1.5px 1.5px at 57% 32%, rgba(255, 255, 255, 0.6), transparent 62%),
    radial-gradient(2.5px 2.5px at 72% 7%, rgba(var(--aurora-gold), 0.75), transparent 62%),
    radial-gradient(1.5px 1.5px at 85% 26%, rgba(255, 255, 255, 0.65), transparent 62%),
    radial-gradient(2px 2px at 93% 49%, rgba(255, 255, 255, 0.55), transparent 62%),
    radial-gradient(1.5px 1.5px at 7% 58%, rgba(255, 255, 255, 0.55), transparent 62%);
  animation: star-drift 110s linear infinite, star-twinkle-a 6.5s ease-in-out infinite;
}

.aurora-stars::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(1.5px 1.5px at 19% 28%, rgba(255, 255, 255, 0.55), transparent 62%),
    radial-gradient(2px 2px at 34% 62%, rgba(var(--aurora-gold), 0.6), transparent 62%),
    radial-gradient(1.5px 1.5px at 49% 19%, rgba(255, 255, 255, 0.5), transparent 62%),
    radial-gradient(2px 2px at 66% 47%, rgba(255, 255, 255, 0.6), transparent 62%),
    radial-gradient(1.5px 1.5px at 79% 15%, rgba(255, 255, 255, 0.5), transparent 62%),
    radial-gradient(2px 2px at 89% 66%, rgba(var(--aurora-gold), 0.55), transparent 62%);
  animation: star-twinkle-b 9s ease-in-out infinite;
}

@keyframes star-drift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(3%, -2%, 0); }
}

@keyframes star-twinkle-a {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}

@keyframes star-twinkle-b {
  0%, 100% { opacity: 0.75; }
  45%      { opacity: 0.28; }
}

/* --- Light sweep: a slow highlight passing across the hero ----------------- */
.aurora-sweep {
  position: absolute;
  top: -10%;
  left: -45%;
  width: 38%;
  height: 120%;
  pointer-events: none;
  background: linear-gradient(102deg,
    transparent 0%,
    rgba(var(--aurora-gold), 0.10) 42%,
    rgba(255, 255, 255, 0.07) 52%,
    rgba(var(--aurora-gold), 0.08) 62%,
    transparent 100%);
  filter: blur(34px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: aurora-sweep 13s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

@keyframes aurora-sweep {
  0%   { transform: translate3d(0, 0, 0) skewX(-12deg);    opacity: 0; }
  10%  { opacity: 0.9; }
  70%  { opacity: 0.55; }
  100% { transform: translate3d(380%, 0, 0) skewX(-12deg); opacity: 0; }
}

/* Ambient Radial Glow Backdrops */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: var(--gradient-radial-sapphire);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: var(--gradient-radial-gold);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Accessibility: hold the aurora still for users who ask for reduced motion */
/* Accessibility: drop the movement (skew / slide / sweep) that can trigger
   vestibular discomfort, but keep a slow opacity breathe so the hero still
   reads as alive rather than switched off. */
@media (prefers-reduced-motion: reduce) {
  .aurora-glow {
    animation: aurora-breathe 16s ease-in-out infinite;
  }

  .aurora-2 { animation-duration: 21s; animation-delay: -6s; }
  .aurora-3 { animation-duration: 26s; animation-delay: -11s; }

  .curtain {
    animation: aurora-breathe 18s ease-in-out infinite;
  }

  .curtain-2 { animation-duration: 23s; animation-delay: -7s; }
  .curtain-3 { animation-duration: 15s; animation-delay: -4s; }

  .aurora-stars {
    animation: aurora-breathe 20s ease-in-out infinite;
  }

  .aurora-stars::after,
  .aurora-sweep {
    animation: none;
  }

  .aurora-sweep {
    opacity: 0.35;
  }

  .btn-glow {
    animation: none;
  }
}

@keyframes aurora-breathe {
  0%, 100% { opacity: 0.34; }
  50%      { opacity: 0.72; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.2;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 198, 73, 0.1);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold-bright);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(243, 198, 73, 0.2);
}

.badge-glow i {
  color: var(--color-gold-bright);
  font-size: 0.95rem;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.trust-item i {
  color: var(--color-gold-bright);
  font-size: 1rem;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Photo Column with Radial Backlight & Glassmorphism Card */
.hero-image-column {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-xl);
  padding: 20px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(243, 198, 73, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(243, 198, 73, 0.25);
}

.hero-image-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(243, 198, 73, 0.35) 0%, rgba(6, 182, 212, 0.2) 50%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.peti-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-caption {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   7. BENEFITS & PAIN POINTS SECTION (#benefits)
   -------------------------------------------------------------------------- */
.benefits-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-obsidian-base) 0%, rgba(19, 27, 46, 0.3) 50%, var(--color-obsidian-base) 100%);
}

/* Pain Points Card (Red Accents) */
.pain-points-box {
  background: rgba(19, 27, 46, 0.5);
  border: 1px solid var(--color-danger-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.pain-points-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-danger), transparent);
}

.box-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-danger {
  color: var(--color-text-primary);
}

.title-danger i {
  color: var(--color-danger);
  font-size: 1.4rem;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.15);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.pain-item:hover {
  border-color: rgba(239, 68, 68, 0.35);
  transform: translateX(4px);
}

.pain-item i {
  color: var(--color-danger);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pain-item strong {
  color: var(--color-text-primary);
}

/* Benefits Card (Gold/Cyan Glass Cards) */
.benefits-box {
  background: var(--color-surface-card);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(243, 198, 73, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.benefits-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
}

.title-success {
  color: var(--color-text-primary);
}

.title-success i {
  color: var(--color-gold-bright);
  font-size: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--color-glass-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--color-gold-border);
  background: rgba(19, 27, 46, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(243, 198, 73, 0.15);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(243, 198, 73, 0.12);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. WORKSHOP AGENDA SECTION (#agenda)
   -------------------------------------------------------------------------- */
.agenda-section {
  position: relative;
}

.agenda-timeline {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding: 40px 0;
}

/* Central vertical line for desktop */
@media (min-width: 992px) {
  .agenda-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    opacity: 0.3;
  }
}

.agenda-card {
  display: flex;
  flex-direction: column; /* changed from flex-start to stack time and content */
  align-items: flex-start;
  gap: 20px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .agenda-card {
    width: calc(50% - 40px);
    margin: 0;
  }
  
  .agenda-card:nth-child(odd) {
    align-self: flex-start;
  }
  
  .agenda-card:nth-child(even) {
    align-self: flex-end;
  }

  /* Connecting line to center */
  .agenda-card::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 40px;
    height: 2px;
    background: var(--color-gold-border);
  }
  
  .agenda-card:nth-child(odd)::before {
    right: -40px;
  }
  
  .agenda-card:nth-child(even)::before {
    left: -40px;
  }

  /* Dot on the timeline */
  .agenda-card::after {
    content: '';
    position: absolute;
    top: 34px;
    width: 14px;
    height: 14px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(243, 198, 73, 0.6);
  }
  
  .agenda-card:nth-child(odd)::after {
    right: -47px;
  }
  
  .agenda-card:nth-child(even)::after {
    left: -47px;
  }
}

.agenda-card:hover {
  border-color: var(--color-gold-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(243, 198, 73, 0.15);
}

.agenda-time {
  background: rgba(243, 198, 73, 0.12);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold-bright);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(243, 198, 73, 0.1);
  display: inline-block;
}

.agenda-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.agenda-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Break Card Variant */
.agenda-card.break-card {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.agenda-card.break-card .agenda-time {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--color-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

@media (min-width: 992px) {
  .agenda-card.break-card::after {
    background: var(--color-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
  }
  
  .agenda-card.break-card::before {
    background: rgba(6, 182, 212, 0.3);
  }
}

/* Highlight Card Variant */
.agenda-card.highlight-card {
  background: var(--gradient-card-highlight);
  border: 1px solid var(--color-gold-bright);
  box-shadow: 0 0 25px rgba(243, 198, 73, 0.18);
}

/* --------------------------------------------------------------------------
   9. TARGET AUDIENCE SECTION (#audience)
   -------------------------------------------------------------------------- */
.audience-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-obsidian-base) 0%, rgba(19, 27, 46, 0.4) 50%, var(--color-obsidian-base) 100%);
}

.audience-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audience-card:hover {
  border-color: var(--color-gold-bright);
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.audience-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(243, 198, 73, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--color-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(243, 198, 73, 0.15);
  transition: var(--transition-normal);
}

.audience-card:hover .audience-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(243, 198, 73, 0.35);
}

.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. PREREQUISITES CHECKLIST SECTION (#requirements)
   -------------------------------------------------------------------------- */
.requirements-section {
  position: relative;
}

.requirements-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: var(--color-surface-card);
  border: 1px solid var(--color-glass-border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition-normal);
}

.req-item:hover {
  border-color: var(--color-gold-border);
  background: rgba(19, 27, 46, 0.7);
  transform: translateY(-2px);
}

.req-icon {
  width: 48px;
  height: 48px;
  background: rgba(243, 198, 73, 0.12);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(243, 198, 73, 0.1);
}

.req-text h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

.req-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. PRICING SECTION & COUNTDOWN TIMER (#pricing)
   -------------------------------------------------------------------------- */
.pricing-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-obsidian-base) 0%, rgba(19, 27, 46, 0.3) 50%, var(--color-obsidian-base) 100%);
}

/* Countdown Timer Styling */
.countdown-wrapper {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.countdown-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.timer-unit {
  background: var(--color-surface-card);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 85px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(243, 198, 73, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.timer-unit span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold-bright);
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(243, 198, 73, 0.4);
}

.timer-unit label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* Early Bird Featured Card */
.pricing-card.featured {
  background: var(--gradient-card-highlight);
  border: 2px solid var(--color-gold-bright);
  box-shadow: 0 0 40px rgba(243, 198, 73, 0.25), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 55px rgba(243, 198, 73, 0.4), 0 20px 50px rgba(0, 0, 0, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--color-obsidian-base);
  font-weight: 800;
  font-size: 0.825rem;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(243, 198, 73, 0.5);
}

.pricing-card h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  min-height: 42px;
}

.price-box {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-glass-border);
  padding-bottom: 24px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--color-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.pricing-features li i {
  color: var(--color-gold-bright);
  font-size: 1rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION SECTION (#faq)
   -------------------------------------------------------------------------- */
.faq-section {
  position: relative;
}

.faq-accordion {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 992px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--color-surface-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--color-gold-border);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--color-text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-gold-bright);
}

.faq-icon {
  color: var(--color-gold-bright);
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer.active,
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 24px 28px;
}

/* --------------------------------------------------------------------------
   13. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer {
  background: #070A12;
  border-top: 1px solid var(--color-glass-border);
  padding: 70px 0 30px;
  color: var(--color-text-muted);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 380px;
}

.footer-links-col h4,
.footer-cta-col h4 {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links-col a:hover {
  color: var(--color-gold-bright);
}

.footer-cta-col p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.footer-legal-link:hover {
  color: var(--color-gold-bright);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.legal-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  user-select: none;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* Tablet Viewports (640px to 1024px) */
@media (max-width: 1024px) {
  .section-container {
    padding: 80px 24px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-headline {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-cta-wrapper {
    justify-content: center;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Viewports (< 640px) */
@media (max-width: 640px) {
  .section-container {
    padding: 60px 16px;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image-card {
    padding: 14px;
  }

  .nav-links {
    display: none; /* Collapsed for mobile simplicity */
  }

  .nav-container {
    justify-content: space-between;
    gap: 12px;
  }

  /* Lighter blur budget so the aurora stays smooth on phones */
  .aurora-glow {
    filter: blur(62px);
  }

  .curtain-1 { filter: blur(22px); }
  .curtain-2 { filter: blur(20px); }
  .curtain-3 { filter: blur(18px); }

  .aurora-sweep {
    filter: blur(22px);
  }

  /* Keep the logo legible without crowding out the CTA on narrow screens */
  .brand-logo,
  .navbar.scrolled .brand-logo {
    height: 28px;
  }

  .brand-logo-footer {
    height: 36px;
  }

  .brand-tag {
    display: none;
  }

  .nav-btn {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pain-points-box,
  .benefits-box,
  .requirements-wrapper {
    padding: 24px 18px;
  }

  .agenda-card {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .grid-4-col {
    grid-template-columns: 1fr;
  }

  .requirements-list {
    grid-template-columns: 1fr;
  }

  .countdown-container {
    gap: 8px;
  }

  .timer-unit {
    min-width: 65px;
    padding: 10px 12px;
  }

  .timer-unit span {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-desc {
    min-height: auto;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .faq-answer.active,
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* Mobile Adjustments for Benefits Grid */
@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid .benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .benefits-grid .benefit-card .benefit-icon {
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .benefits-grid .benefit-card h4 {
    margin-bottom: 0 !important;
  }
}
