/* ══════════════════════════════════════════════════
   EQUITY TEACHER – GROW RICHER
   Premium Landing Page Stylesheet
   ══════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --clr-bg: #07060B;
  --clr-bg-light: #0F0D17;
  --clr-bg-card: #13111D;
  --clr-bg-card-hover: #1A1729;
  --clr-surface: #1E1B2E;

  --clr-text: #F0ECF9;
  --clr-text-muted: #9B95B0;
  --clr-text-dim: #6B6580;

  --clr-purple: #A855F7;
  --clr-purple-light: #C084FC;
  --clr-purple-dark: #7C3AED;

  --clr-green: #22C55E;
  --clr-green-light: #4ADE80;

  --clr-blue: #3B82F6;
  --clr-blue-light: #60A5FA;

  --clr-red: #EF4444;
  --clr-red-light: #F87171;

  --clr-gold: #FACC15;

  --clr-border: rgba(168, 85, 247, 0.12);
  --clr-border-hover: rgba(168, 85, 247, 0.3);

  --gradient-purple: linear-gradient(135deg, #A855F7, #7C3AED);
  --gradient-green: linear-gradient(135deg, #22C55E, #16A34A);
  --gradient-blue: linear-gradient(135deg, #3B82F6, #2563EB);
  --gradient-gold: linear-gradient(135deg, #FACC15, #EAB308);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow-purple: 0 0 60px rgba(168, 85, 247, 0.15);
  --shadow-glow-green: 0 0 60px rgba(34, 197, 94, 0.15);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-purple-light);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: var(--clr-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-hover);
}
.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: var(--clr-purple);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-premium {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
  width: 100%;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.5);
}

.btn-advanced {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.25);
  width: 100%;
}
.btn-advanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.4);
}

.btn-basic {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.25);
  width: 100%;
}
.btn-basic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(34, 197, 94, 0.4);
}

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 6, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--clr-border-hover);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-text);
}

.logo-highlight {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: var(--clr-text);
  background: rgba(168, 85, 247, 0.08);
}

.nav-cta {
  background: var(--gradient-purple) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 16px rgba(168, 85, 247, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.45) !important;
  background: var(--gradient-purple) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -5s;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-purple-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #A855F7, #22C55E, #3B82F6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.15s both, gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--clr-text-muted);
  font-weight: 400;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text-dim);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out 0.65s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-text);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════════════════ */
.problem-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.problem-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 12px 48px rgba(239, 68, 68, 0.1);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.problem-bottom {
  text-align: center;
}

.problem-statement {
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  font-style: italic;
}

.problem-truth {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-text);
}

.problem-truth strong {
  color: var(--clr-red-light);
}

/* ══════════════════════════════════════════════════
   SOLUTION SECTION
   ══════════════════════════════════════════════════ */
.solution-section {
  padding: 120px 0;
  position: relative;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-left .section-tag {
  display: inline-block;
  margin-bottom: 20px;
}

.solution-left .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.solution-desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.solution-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
}

.solution-item:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: var(--clr-bg-card-hover);
  transform: translateX(6px);
}

.solution-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: var(--clr-green);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.solution-item h4 {
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.solution-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════════════════
   PROGRAMS SECTION
   ══════════════════════════════════════════════════ */
.programs-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.program-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

/* Premium card special styling */
.program-premium {
  border-color: rgba(168, 85, 247, 0.35);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.06) 0%, var(--clr-bg-card) 60%);
  box-shadow: var(--shadow-glow-purple);
  order: -1;
}

.program-premium:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.2);
}

.program-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 24px;
  border-radius: 100px;
  white-space: nowrap;
}

.program-header {
  text-align: center;
  margin-bottom: 24px;
}

.program-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.program-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.program-tagline {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.program-price {
  text-align: center;
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--clr-text), var(--clr-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-philosophy {
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  font-style: italic;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.program-features {
  flex: 1;
  margin-bottom: 24px;
}

.program-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-includes {
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(168, 85, 247, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 85, 247, 0.08);
}

.program-includes p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.program-includes p:last-child {
  margin-bottom: 0;
}

.program-note {
  color: var(--clr-text-muted) !important;
}

.program-scarcity {
  color: var(--clr-gold) !important;
  font-weight: 600;
}

.program-serious {
  font-style: italic;
  color: var(--clr-text-dim) !important;
}

/* ══════════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════════ */
.comparison-section {
  padding: 120px 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table thead {
  background: rgba(168, 85, 247, 0.06);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  padding: 20px 28px;
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 18px 28px;
  font-size: 0.92rem;
  text-align: center;
  color: var(--clr-text-muted);
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--clr-text);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.03);
}

.highlight-col {
  background: rgba(168, 85, 247, 0.04) !important;
}

.check {
  font-size: 1.1rem;
}

.cross {
  font-size: 1.1rem;
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .section-tag {
  display: inline-block;
  margin-bottom: 20px;
}

.about-left .section-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-left p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-left strong {
  color: var(--clr-text);
}

.about-tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--clr-purple-light) !important;
  margin-top: 8px;
}

.about-focus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.about-focus-card h4 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--clr-text);
}

.about-focus-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}

.about-focus-card li:last-child {
  border-bottom: none;
}

.about-bullet {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  color: var(--clr-purple-light);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════ */
.why-section {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-glow-purple);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.testimonial-card p strong {
  color: var(--clr-text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  display: block;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-content {
  text-align: center;
  padding: 80px 40px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.06), transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--clr-bg-light);
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: all 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--clr-purple-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--clr-text-dim) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════ */

/* Tablets */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .program-premium {
    order: -1;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-left .section-title {
    text-align: center;
  }

  .solution-left {
    text-align: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-left .section-title {
    text-align: center;
  }

  .about-left {
    text-align: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-stats {
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-bg-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--clr-border);
    gap: 4px;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-content {
    padding: 56px 24px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .program-card {
    padding: 32px 24px;
  }
}

/* ══════════════════════════════════════════════════
   SMOOTH SCROLL TO SECTION OFFSET
   ══════════════════════════════════════════════════ */
section[id] {
  scroll-margin-top: 80px;
}

/* ══════════════════════════════════════════════════
   SELECTION STYLING
   ══════════════════════════════════════════════════ */
::selection {
  background: rgba(168, 85, 247, 0.3);
  color: #fff;
}

/* ══════════════════════════════════════════════════
   SCROLLBAR STYLING
   ══════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

/* ══════════════════════════════════════════════════
   INSTRUCTOR SECTION
   ══════════════════════════════════════════════════ */
.instructor-section {
  padding: 120px 0;
  position: relative;
}

.instructor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.instructor-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.instructor-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.instructor-photo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-photo-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.instructor-photo-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--clr-border-hover);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.2);
}

.instructor-photo-img:hover {
  border-color: var(--clr-purple);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow-purple);
}

.instructor-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instructor-camera-label {
  font-size: 1.2rem;
  opacity: 0.5;
}

.instructor-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}

.instructor-stat {
  text-align: center;
}

.instructor-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-purple-light), var(--clr-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instructor-stat-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.instructor-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-border);
}

.instructor-bio-col {
  display: flex;
  flex-direction: column;
}

.instructor-bio-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.instructor-bio-text {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.instructor-bio-text strong {
  color: var(--clr-text);
}

.instructor-highlights {
  margin-top: 28px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instructor-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  transition: all 0.3s ease;
}

.instructor-highlight:hover {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.06);
  transform: translateX(4px);
}

.highlight-check {
  flex-shrink: 0;
  color: var(--clr-green);
  font-size: 0.95rem;
  font-weight: 700;
}

.instructor-linkedin-btn {
  margin-top: 8px;
  display: inline-flex;
  gap: 8px;
}

.linkedin-icon {
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════
   ETHICAL PRACTICES SECTION
   ══════════════════════════════════════════════════ */
.ethics-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.ethics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ethics-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
}

.ethics-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-glow-green);
}

.ethics-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.ethics-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.ethics-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   AUDIENCE SECTION (Who Should / Shouldn't Join)
   ══════════════════════════════════════════════════ */
.audience-section {
  padding: 120px 0;
  position: relative;
}

.audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: all 0.35s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-yes {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.audience-yes:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.08);
}

.audience-no {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.audience-no:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 60px rgba(239, 68, 68, 0.08);
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}

.audience-header h3 {
  font-size: 1.3rem;
  color: var(--clr-text);
}

.audience-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.audience-badge-yes {
  background: rgba(34, 197, 94, 0.15);
  color: var(--clr-green);
}

.audience-badge-no {
  background: rgba(239, 68, 68, 0.15);
  color: var(--clr-red);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.audience-check {
  flex-shrink: 0;
  color: var(--clr-green);
  font-weight: 700;
  margin-top: 2px;
}

.audience-cross {
  flex-shrink: 0;
  color: var(--clr-red);
  font-weight: 700;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════ */
.faq-section {
  padding: 120px 0;
  background: var(--clr-bg-light);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: var(--clr-border-hover);
}

.faq-item[open] {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--clr-purple-light);
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--clr-purple-light);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  animation: faqFadeIn 0.3s ease-out;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════
   TESTIMONIAL VERIFIED BADGE & CTA
   ══════════════════════════════════════════════════ */
.testimonial-verified {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-green);
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – NEW SECTIONS
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .instructor-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .instructor-photo-col {
    align-items: center;
  }

  .ethics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ethics-grid {
    grid-template-columns: 1fr;
  }

  .instructor-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .instructor-stat-divider {
    width: 1px;
    height: 30px;
  }

  .instructor-bio-card {
    padding: 28px 24px;
  }

  .audience-card {
    padding: 28px 24px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
  }
}

@media (max-width: 480px) {
  .instructor-photo-placeholder {
    width: 180px;
    height: 180px;
  }

  .instructor-initials {
    font-size: 2.8rem;
  }

  .instructor-stats {
    flex-direction: column;
    gap: 12px;
  }

  .instructor-stat-divider {
    width: 40px;
    height: 1px;
  }
}
