/* =============================================
   AdvancedMedias - Global Styles
   Dark theme with gold accents
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Primary */
  --background: 0 0% 4%;              /* Rich Black #0A0A0A */
  --foreground: 0 0% 100%;             /* #fff */
  --card: 0 0% 10%;                   /* Charcoal #1A1A1A */
  --card-foreground: 39 64% 86%;      /* Champagne */
  --primary: 42 63% 55%;              /* Royal Gold #D4A843 */
  --primary-foreground: 0 0% 4%;      /* Rich Black */
  --secondary: 0 0% 10%;              /* Charcoal #1A1A1A */
  --muted: 0 0% 18%;                  /* Soft Grey #2E2E2E */
  --muted-foreground: 0 0% 80%;       /* Silver Grey #9E9E9E */
  --accent: 42 63% 55%;               /* Royal Gold */
  --border: 0 0% 18%;                 /* Soft Grey #2E2E2E */
  --destructive: 354 66% 56%;         /* Error Red #D94452 */
  --success: 142 39% 49%;             /* Success Green #4CAF6A */
  --info: 208 35% 54%;                /* Info Blue #5B8DB8 */
  --warm-white: 38 45% 96%;           /* Warm White #FAF7F2 */
  --deep-gold: 42 58% 40%;            /* Deep Gold #A07C2A */
  --radius: 0.75rem;
    --rich-black: #0A0A0A;
    --charcoal: #1A1A1A;
    --royal-gold: #D4A843;
    --deep-gold: #A07C2A;
    --champagne: #F2E2C4;
    --warm-white: #FAF7F2;
    --soft-grey: #2E2E2E;
  --gradient-gold: linear-gradient(135deg, #A07C2A, #D4A843);
  --gradient-hero: linear-gradient(135deg, #0A0A0A, #1A1A1A);
  --gradient-card: linear-gradient(145deg, #1A1A1A, #222222);
  --shadow-gold: 0 10px 40px rgba(212, 168, 67, 0.18);
  --shadow-premium: 0 25px 50px rgba(0, 0, 0, 0.5);
  --main-font: #fff;
}

  /* ============================================
     BUTTON STYLES — Copy everything below
     ============================================ */
  .btn-gold {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    min-width: 200px;

    /* Typography */
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--rich-black);

    /* Appearance */
    background: linear-gradient(135deg, var(--royal-gold) 0%, #E8C36A 50%, var(--royal-gold) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 4px;
    cursor: pointer;

    /* Glow effect */
    box-shadow:
      0 0 0 1px rgba(212, 168, 67, 0.3),
      0 4px 15px rgba(212, 168, 67, 0.25),
      0 1px 3px rgba(0, 0, 0, 0.4);

    /* Transitions */
    transition:
      transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease,
      background-position 0.4s ease,
      color 0.2s ease;

    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
  }

  /* Shimmer on hover */
  .btn-gold:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(212, 168, 67, 0.5),
      0 8px 25px rgba(212, 168, 67, 0.35),
      0 2px 6px rgba(0, 0, 0, 0.3);
  }

  /* Pressed / Active */
  .btn-gold:active {
    transform: translateY(1px);
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--royal-gold) 100%);
    box-shadow:
      0 0 0 1px rgba(160, 124, 42, 0.5),
      0 2px 8px rgba(212, 168, 67, 0.2),
      0 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Keyboard focus */
  .btn-gold:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 3px;
  }

  /* Disabled state */
  .btn-gold:disabled {
    background: var(--soft-grey);
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }

  /* Optional arrow icon */
  .btn-gold .arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 14px;
  }

  .btn-gold:hover .arrow {
    transform: translateX(4px);
  }

 /* ============================================
     BADGE BASE
     ============================================ */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    line-height: 1;
    padding: 7px 14px;
    border-radius: 4px;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
  }

  /* ============================================
     VARIANT 1: GOLD BADGE
     Stands out on dark backgrounds.
     Use for: Featured, Premium, Best Seller,
     New, Top Rated, Editor's Pick
     ============================================ */
  .badge-gold {
    color: var(--rich-black);
    background: linear-gradient(
      135deg,
      var(--deep-gold) 0%,
      var(--royal-gold) 40%,
      #E8C36A 60%,
      var(--royal-gold) 100%
    );
    box-shadow:
      0 1px 4px rgba(212, 168, 67, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  /* ============================================
     VARIANT 2: BLACK BADGE
     Stands out on light & gold backgrounds.
     Use for: Sold Out, Limited, Exclusive,
     Pro, Members Only
     ============================================ */
  .badge-black {
    color: var(--royal-gold);
    background: var(--rich-black);
    border: 1px solid rgba(212, 168, 67, 0.25);
    box-shadow:
      0 1px 4px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  /* ============================================
     OPTIONAL SIZE MODIFIERS
     ============================================ */
  .badge-sm {
    font-size: 9px;
    letter-spacing: 1.4px;
    padding: 5px 10px;
    gap: 4px;
  }

  .badge-lg {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 9px 20px;
    gap: 8px;
    border-radius: 5px;
  }

  /* ============================================
     OPTIONAL: PILL SHAPE
     ============================================ */
  .badge-pill {
    border-radius: 100px;
  }

  /* ============================================
     OPTIONAL: DOT INDICATOR
     ============================================ */
  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .badge-gold .badge-dot {
    background: var(--rich-black);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }

  .badge-black .badge-dot {
    background: var(--royal-gold);
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
  }

  /* ============================================
     OPTIONAL: ICON SUPPORT
     ============================================ */
  .badge-icon {
    font-style: normal;
    font-size: 1.1em;
    line-height: 1;
  }

  /* ============================================
     DEMO PAGE STYLES (not part of the badges)
     ============================================ */
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--charcoal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    font-family: 'Outfit', sans-serif;
  }

  .demo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 700px;
  }

  .demo-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
  }

  .demo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

  .divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--deep-gold), transparent);
  }

  /* Context cards */
  .context-card {
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
  }

  .context-dark {
    background: var(--rich-black);
    border: 1px solid rgba(212, 168, 67, 0.06);
  }

  .context-light {
    background: var(--warm-white);
    border: 1px solid rgba(160, 124, 42, 0.1);
  }

  .context-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .context-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .context-dark h3 { color: var(--champagne); }
  .context-light h3 { color: var(--rich-black); }

  .context-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .context-dark p { color: #777; }
  .context-light p { color: #666; }

  .context-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    margin-top: 16px;
  }

  .context-dark .price { color: var(--royal-gold); }
  .context-light .price { color: var(--deep-gold); }

  .context-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
  }

  /* ============================================
     VARIANT: Outline / Ghost Button
     ============================================ */
  .btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 38px;
    min-width: 200px;

    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--royal-gold);

    background: #000;
    border: 2px solid var(--royal-gold);
    border-radius: 4px;
    cursor: pointer;

    box-shadow: 0 0 12px rgba(212, 168, 67, 0.08);

    transition:
      background 0.3s ease,
      color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);

    user-select: none;
    -webkit-user-select: none;
  }

  .btn-gold-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    box-shadow:
      0 0 20px rgba(212, 168, 67, 0.15),
      inset 0 0 20px rgba(212, 168, 67, 0.05);
    transform: translateY(-2px);
  }

  .btn-gold-outline:active {
    transform: translateY(1px);
    background: rgba(212, 168, 67, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .btn-gold-outline:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 3px;
  }

  /* ============================================
     VARIANT: White Outline / Small Button
     ============================================ */
  .btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    min-width: 140px;

    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;

    box-shadow: 0 0 8px rgba(255, 255, 255, 0.04);

    transition:
      background 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);

    user-select: none;
    -webkit-user-select: none;
  }

  .btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .btn-white-outline:active {
    transform: translateY(1px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .btn-white-outline:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  /* ============================================
     DEMO PAGE STYLES (not part of the button)
     ============================================ */
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--rich-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    font-family: 'Outfit', sans-serif;
  }

  .demo-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .demo-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
  }

  .demo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--deep-gold), transparent);
    margin: 10px 0;
  }

  /* Dark card for contrast demo */
  .card-dark {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(212, 168, 67, 0.08);
  }

  .card-dark h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--champagne);
    letter-spacing: 1px;
  }

  .card-dark p {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
    max-width: 300px;
    line-height: 1.6;
  }

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Watermark overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background: url('../images/logo.png') center 18% / 80vmin no-repeat;
  opacity: 0.12;
  filter: blur(2.5px);
  pointer-events: none;
  transform: translateZ(0);
}

body.watermark-gray::before {
  filter: blur(2.5px) grayscale(1);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

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

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold-hero {
  background: linear-gradient(135deg, #D4A843, #F2E2C4, #D4A843, #A07C2A, #D4A843);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  color: #0A0A0A;
  background: linear-gradient(135deg, #A07C2A 0%, #D4A843 40%, #E8C36A 60%, #D4A843 100%);
  box-shadow: 0 1px 4px rgba(212, 168, 67, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.badge-secondary {
  color: var(--royal-gold);
  background: var(--rich-black);
  border: 1px solid rgba(212, 168, 67, 0.25);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.badge-destructive {
  background-color: hsl(var(--destructive));
  color: #fff;
}

.badge-outline {
  background: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.badge-green {
  background-color: rgba(76, 175, 106, 0.1);
  color: #4CAF6A;
  border-color: rgba(76, 175, 106, 0.2);
}

/* Section headers */
.section-badge {
  display: inline-flex;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.4);
}

.btn-hero {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  box-shadow: var(--shadow-premium);
}
.btn-hero:hover {
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.btn-outline {
  border-color: hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-outline:hover {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-ghost:hover {
  background: hsl(var(--accent) / 0.1);
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.btn-nav {
  padding: 0.625rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.btn-lg {
  padding: 0.75rem 2rem;
}

.btn-xl {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

/* Icons inline with text */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

/* --- Cards --- */
.card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.08);
}

.card-gold-border {
  border-color: hsl(var(--primary) / 0.4);
}

/* Gold banner cards */
.gold-banner {
  background: linear-gradient(135deg, var(--royal-gold) 0%, #E8C36A 50%, var(--royal-gold) 100%);
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.gold-banner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gold-banner p {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.gold-banner .disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Signature Collection style banner */
#CompletePackage {
  background: var(--rich-black);
  color: var(--champagne);
  border: 1px solid rgba(212, 168, 67, 0.06);
}

#CompletePackage h3 {
  color: var(--champagne);
}

#CompletePackage p {
  color: #777;
  opacity: 1;
}

#CompletePackage .disclaimer {
  color: var(--royal-gold);
  opacity: 1;
}

/* Reserve Edition style banner */
#Transformation {
  background: var(--warm-white);
  color: var(--rich-black);
  border: 1px solid rgba(160, 124, 42, 0.1);
}

#Transformation h3 {
  color: var(--rich-black);
}

#Transformation p {
  color: #666;
  opacity: 1;
}

#Transformation .disclaimer {
  color: var(--deep-gold);
  opacity: 1;
}

/* Signature Collection style — NextSuccessStory */
#NextSuccessStory {
  background: var(--rich-black);
  color: var(--champagne);
  border: 1px solid rgba(212, 168, 67, 0.06);
}

#NextSuccessStory h3 {
  color: var(--champagne);
}

#NextSuccessStory p {
  color: #777;
  opacity: 1;
}

/* Signature Collection style — Questions */
#Questions {
  background: var(--rich-black);
  color: var(--champagne);
  border: 1px solid rgba(212, 168, 67, 0.06);
}

#Questions h3 {
  color: var(--champagne);
}

#Questions p {
  color: #777;
  opacity: 1;
}

#Questions .disclaimer {
  color: var(--royal-gold);
  opacity: 1;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--primary) / 0.2);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
}

.navbar-brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  line-height: 1.2;
}

.navbar-brand .badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  flex: 2;
}

.navbar-links a {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: hsl(var(--primary));
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
}

.grayscale-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.switch {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  background: hsl(var(--secondary));
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch.active {
  background: hsl(var(--primary));
}

.switch.active::after {
  transform: translateX(1.25rem);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: hsl(var(--primary));
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-video {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 16/9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

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

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- HERO BOTTOM SECTION --- */
.hero-bottom {
  background: #222222;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.hero-bottom-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

/* Student success story in hero */
.hero-success-story {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.hero-success-story h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.story-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0 1.25rem;
  flex-wrap: wrap;
}

.story-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.story-tab:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.story-tab.active {
  background: hsl(var(--gold, 45 95% 55%));
  color: #000;
  border-color: transparent;
}

.story-tab-body {
  display: none;
}

.story-tab-body.active {
  display: block;
}

/* Analytics carousel */
.analytics-carousel {
  position: relative;
  max-width: 32rem;
  margin: 1.5rem auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.analytics-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.analytics-carousel .analytics-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.analytics-carousel .analytics-slide.active {
  opacity: 1;
}

.tab-single-image {
  display: block;
  width: 16rem;
  max-width: 100%;
  margin: 1.5rem auto 0;
  border-radius: var(--radius);
}

.hero-success-story .hero-video {
  margin-bottom: 0;
}

.hero-cta {
  margin: 2rem;
}

/* Results headline & carousel */
.results-headline {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: hsl(var(--foreground));
}

.results-carousel {
  position: relative;
  max-width: 16rem;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.results-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.results-carousel .results-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.results-carousel .results-slide.active {
  opacity: 1;
}

.hero-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #fff;
  padding-bottom: 1rem;
}

.hero-disclaimer span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- ANALYTICS/PROOF SECTION --- */
.proof-section {
  background: var(--gradient-hero);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.stat-card .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.stat-card .stat-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.stat-card .stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin: 5px;
}

.stat-card .stat-sub {
  font-size: 0.75rem;
  color: #b0b0b0;
}

.growth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(76, 175, 106, 0.2);
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4CAF6A;
  background-color: rgba(76, 175, 106, 0.1);
  margin-top: 0.25rem;
  transition: colors 0.2s;
}

/* Analytics images grid */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.analytics-card {
  overflow: hidden;
}

.analytics-card .card-header {
  margin-bottom: 1rem;
}

.analytics-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.analytics-card .card-sub {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.analytics-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 0.25rem);
}

/* Testimonial screenshots */
.testimonials-sub h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.testimonial-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-screenshot-card {
  position: relative;
  overflow: hidden;
}

.testimonial-screenshot-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 0.25rem);
}

.testimonial-screenshot-card .badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- ABOUT SECTION --- */
.about-section {
  background: hsl(var(--background));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-bio h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-bio p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-bio strong {
  color: hsl(var(--foreground));
}

.portfolio-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.portfolio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Founder photo card */
.founder-card {
  text-align: center;
  overflow: hidden;
}

/* Founder carousel */
.founder-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius) - 0.25rem);
  overflow: hidden;
}

.founder-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}

.founder-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.25rem);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.founder-carousel .carousel-slide.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn-prev { left: 0.5rem; }
.carousel-btn-next { right: 0.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
  z-index: 2;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #fff;
}

.founder-card .name {
  font-weight: 700;
  font-size: 0.875rem;
}

.founder-card .role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-stat-card {
  text-align: center;
  padding: 1.5rem;
}

.about-stat-card .stat-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  color: hsl(var(--primary));
  margin: 0 auto 0.75rem;
}

.about-stat-card h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* --- PROGRAM FEATURES --- */
.features-section {
  background: var(--gradient-hero);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
}

.feature-card .feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.feature-highlights li svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* --- PROCESS / ROADMAP --- */
.process-section {
  background: hsl(var(--background));
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  font-size: 0.875rem;
  font-weight: 900;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  color: hsl(var(--primary));
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-timeline {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.step-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* --- STUDENT RESULTS --- */
.results-section {
  background: var(--gradient-hero);
}

.results-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.result-summary-card {
  text-align: center;
  padding: 1.5rem;
}

.result-summary-card .number {
  font-size: 1.875rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-summary-card .label {
  font-size: 0.875rem;
  font-weight: 600;
}

.result-summary-card .desc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Testimonial cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.testimonial-age {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-meta-item .meta-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
}

.testimonial-meta-item .meta-value {
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-value.gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-quote {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid hsl(var(--primary) / 0.3);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  line-height: 1.6;
}

/* --- CTA SECTION --- */
.cta-section {
  background: hsl(var(--background));
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-badge-pulse {
  animation: pulse 2s infinite;
}

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

.cta-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin: 2rem 0;
}

.cta-column {
  padding: 1.5rem;
}

.cta-column h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-column li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.cta-column li svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar svg {
  color: hsl(var(--primary));
}

.cta-sub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-sub-card {
  text-align: center;
  padding: 2rem;
}

.cta-sub-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-sub-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--gradient-hero);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--gradient-card);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: hsl(var(--primary));
}

.faq-trigger svg {
  transition: transform 0.3s ease;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-trigger.active svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.open {
  max-height: 500px;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* --- FOOTER --- */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--primary) / 0.2);
  padding: 4rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.footer-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.theme-pages h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.theme-page-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.theme-page-item svg {
  color: hsl(var(--primary));
}

.theme-page-item .followers {
  margin-left: auto;
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-links .btn-gold-outline {
  padding: 10px 20px;
  min-width: auto;
  font-size: 12px;
  letter-spacing: 1.2px;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: hsl(var(--primary));
}

/* --- BOOK A CALL PAGE --- */
.book-page {
  padding-top: 6rem;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.book-sidebar .card {
  padding: 2rem;
}

.book-sidebar h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.expect-list li svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.book-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.calendly-embed {
  width: 100%;
  min-height: 1000px;
  border: none;
  border-radius: var(--radius);
}

.book-bottom-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
  text-align: center;
}

/* --- SUCCESS STORIES PAGE --- */
.stories-page {
  padding-top: 6rem;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.stories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stories-header h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.stories-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

.video-testimonials-section {
  margin-bottom: 4rem;
}

.video-card {
  max-width: 48rem;
  margin: 0 auto;
  overflow: hidden;
}

.video-card .hero-video {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.video-card-footer {
  padding: 1rem 1.5rem;
}

.video-card-footer h3 {
  font-weight: 700;
}

.video-card-footer p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.more-results h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.story-placeholder {
  aspect-ratio: 16/9;
  background: hsl(var(--muted));
  border-radius: calc(var(--radius) - 0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

/* --- 404 PAGE --- */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}

.not-found h1 {
  font-size: 6rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* --- SVG Icon Defaults --- */
svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid,
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats,
  .results-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body::before {
    background-position: center 22%;
    background-size: 65vmin;
  }

  .navbar-links,
  .grayscale-toggle,
  .navbar-right .btn-gold {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stats-grid,
  .analytics-grid,
  .testimonial-screenshots,
  .cta-columns,
  .cta-sub-cards {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .testimonials-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .about-stats,
  .results-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .hero-disclaimer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-stats,
  .results-summary {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    gap: 0.75rem;
  }
}
