/* ============================================
   Kids Learning Path — ClickBank Sales Funnel
   Design System & Shared Styles
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Primary Colors */
  --purple: #6C3CE9;
  --purple-dark: #5228C0;
  --purple-light: #8B5CF6;
  --purple-glow: rgba(108, 60, 233, 0.15);

  /* Secondary Colors */
  --orange: #FF6B35;
  --orange-dark: #E55A2B;
  --orange-light: #FF8F62;

  /* Accent Colors */
  --teal: #4ECDC4;
  --teal-dark: #3DB8B0;
  --sky: #74B9FF;
  --pink: #FD79A8;
  --yellow: #FFEAA7;
  --green: #00B894;
  --green-dark: #009B7D;

  /* Neutrals */
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;

  /* Backgrounds */
  --bg-body: #FDFBFF;
  --bg-section-alt: #F8F5FF;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A2E;

  /* Feedback */
  --success: #00C851;
  --warning: #FFB300;
  --danger: #FF4444;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(108, 60, 233, 0.2);

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --container-max: 1100px;
  --container-narrow: 800px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--bg-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--purple-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-pad);
}

.section--alt {
  background: var(--bg-section-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.text-center {
  text-align: center;
}

.section__badge {
  display: inline-block;
  background: var(--purple-glow);
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 650px;
  margin: 0 auto 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: #fff;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn--primary:hover::after {
  left: 100%;
}

.btn--secondary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 60, 233, 0.3);
}

.btn--secondary:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 60, 233, 0.4);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn--outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1.3rem;
  padding: 22px 50px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn__sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card__text {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---- Grid Layouts ---- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {

  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo span {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__cta .btn {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F8F5FF 0%, #FFF5F0 30%, #F0F7FF 60%, #F5FFF5 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 60, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 60, 233, 0.1);
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title .highlight--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto 32px;
  animation: fadeInUp 1s ease;
}

.hero__cta {
  animation: fadeInUp 1.2s ease;
  margin-bottom: 24px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray-500);
  animation: fadeInUp 1.4s ease;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__visual {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.6s ease;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.hero__visual-grid {
  display: flex;
  gap: 20px;
  animation: scrollBooks 25s linear infinite;
  width: max-content;
}

.hero__visual-grid:hover {
  animation-play-state: paused;
}

@keyframes scrollBooks {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero__book-card {
  width: 160px;
  height: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.hero__book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__book-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(108, 60, 233, 0.3);
}

/* Social Proof Strip */
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  animation: fadeInUp 1.8s ease;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__social-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
}

.hero__social-text strong {
  color: var(--purple);
}

/* ---- Problem Section — Story-Driven ---- */
.problem__narrative {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  text-align: left;
}

.problem__narrative p {
  margin-bottom: 20px;
}

.problem__narrative em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.problem__narrative strong {
  color: var(--dark);
}

.problem__stat {
  background: linear-gradient(135deg, #FFF5F0, #FFEDE4);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.problem__stat span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 4px;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.problem__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.problem__item:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow-sm);
}

.problem__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF0EB;
  border-radius: var(--radius-sm);
}

.problem__text h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1rem;
}

.problem__text p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .hero__book-card {
    width: 130px;
    height: 165px;
  }

  .hero__social-proof {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }

  .hero__book-card {
    width: 110px;
    height: 140px;
  }
}

/* ---- Bundle Showcase ---- */
.bundle {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bundle:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.bundle__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.bundle__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.bundle__meta h3 {
  margin-bottom: 4px;
}

.bundle__meta .bundle__count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple);
}

.bundle__books {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.bundle__book-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 6px 0;
}

.bundle__book-item::before {
  content: '📖';
  flex-shrink: 0;
}

/* Bundle Cover Previews */
.bundle__content-wrapper {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.bundle__covers {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.bundle__cover-img {
  width: 120px;
  height: 150px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bundle__cover-img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.bundle__details {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .bundle__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .bundle__covers {
    justify-content: center;
  }

  .bundle__cover-img {
    width: 100px;
    height: 130px;
  }
}

/* Bundle Color Themes */
.bundle--creative .bundle__icon {
  background: linear-gradient(135deg, #FFE0E6, #FFB8C9);
}

.bundle--bedtime .bundle__icon {
  background: linear-gradient(135deg, #DDD6FE, #C4B5FD);
}

.bundle--nature .bundle__icon {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.bundle--grandma .bundle__icon {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.bundle--forest .bundle__icon {
  background: linear-gradient(135deg, #CFFAFE, #A5F3FC);
}

/* ---- Extras Section ---- */
.extras__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.extra-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.extra-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.extra-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.extra-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.extra-card__for {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .extras__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .extras__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Value Stack ---- */
.value-stack {
  max-width: 700px;
  margin: 0 auto;
}

.value-stack__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.value-stack__item:last-child {
  border-bottom: none;
}

.value-stack__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
}

.value-stack__name span {
  font-size: 1.2rem;
}

.value-stack__price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gray-400);
}

.value-stack__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-section-alt);
  border-radius: var(--radius-md);
  margin-top: 16px;
  border: 2px dashed var(--gray-300);
}

.value-stack__total-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
}

.value-stack__total-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

/* ---- Pricing Box ---- */
.pricing-box {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.pricing-box__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  position: relative;
}

.pricing-box__old {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
}

.pricing-box__current {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  position: relative;
  margin-bottom: 4px;
}

.pricing-box__current sup {
  font-size: 1.8rem;
  top: -1rem;
}

.pricing-box__note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 28px;
  position: relative;
}

.pricing-box .btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-size: 1.3rem;
  padding: 20px 48px;
  position: relative;
}

/* ---- Guarantee ---- */
.guarantee {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--green);
  box-shadow: 0 0 30px rgba(0, 184, 148, 0.1);
}

.guarantee__icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.guarantee__title {
  color: var(--green-dark);
  margin-bottom: 8px;
}

.guarantee__text {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Testimonials ---- */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial__stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

.testimonial__text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---- FAQ ---- */
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item.active {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question:hover {
  color: var(--purple);
}

.faq__arrow {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* ---- Audience Section ---- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
}

.audience-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.audience-card__text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Features ---- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-sm);
}

.feature-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-glow);
  border-radius: var(--radius-sm);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-card__text {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: var(--gray-400);
  padding: 50px 0 30px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer__links h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer__links ul li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.footer__disclaimer {
  max-width: 800px;
  margin: 16px auto 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ---- Legal Pages ---- */
.legal {
  padding: 140px 0 80px;
}

.legal h1 {
  margin-bottom: 8px;
}

.legal__updated {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--purple-dark);
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal p,
.legal li {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal ul,
.legal ol {
  margin: 12px 0 12px 24px;
  list-style: disc;
}

.legal ol {
  list-style: decimal;
}

.legal ul li,
.legal ol li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--purple);
  text-decoration: underline;
}

/* ---- Contact Page ---- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 4px var(--purple-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---- Thank You Page ---- */
.thankyou-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #F8F5FF 0%, #F0F7FF 50%, #F5FFF5 100%);
}

.thankyou-hero__icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounceIn 0.8s ease;
}

.thankyou-hero h1 {
  margin-bottom: 12px;
}

.thankyou-hero p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 28px;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.access-steps {
  max-width: 700px;
  margin: 0 auto;
}

.access-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.access-step:last-child {
  border-bottom: none;
}

.access-step__num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--purple);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.access-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.access-step__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- Upsell Page ---- */
.upsell-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(160deg, #1A1A2E 0%, #2D1B69 50%, #1A1A2E 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.upsell-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.upsell-hero h1,
.upsell-hero h2,
.upsell-hero h3 {
  color: #fff;
}

.upsell__wait-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  color: var(--orange-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.3);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
  }
}

.upsell__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.upsell__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.upsell__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin: 40px 0;
}

.upsell__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.upsell__feature-icon {
  font-size: 1.3rem;
}

.upsell__pricing {
  margin: 40px 0;
}

.upsell__old-price {
  font-size: 1.4rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.upsell__new-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
}

.upsell__new-price sup {
  font-size: 1.8rem;
  top: -1rem;
}

.upsell__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.upsell__skip {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}

.upsell__skip:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .upsell__features {
    grid-template-columns: 1fr;
  }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility Classes ---- */
.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.text-purple {
  color: var(--purple);
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.text-muted {
  color: var(--gray-500);
}

.fw-bold {
  font-weight: 700;
}

.fw-extra {
  font-weight: 800;
}

/* ---- Print ---- */
@media print {

  .header,
  .footer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .btn {
    display: none;
  }
}