/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--hero);
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227, 207, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 207, 170, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 161, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-green);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-green);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 161, 114, 0.3);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.stat-item {}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Hero dashboard card */
.hero-visual {
  position: relative;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(196, 161, 114, 0.06);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dash-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(227, 207, 170, 0.5);
}

.dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.kpi-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.kpi-num {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.kpi-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.kpi-change {
  font-size: 0.7rem;
  color: #4ade80;
  margin-top: 4px;
}

[data-theme="light"] .kpi-change {
  color: #7c7c7c;
}

.dash-progress {
  margin-bottom: 16px;
}

.dp-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dp-bar {
  height: 6px;
  background: var(--bg-card-alt);
  border-radius: 99px;
  overflow: hidden;
}

.dp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), rgba(227, 207, 170, 0.5));
  border-radius: 99px;
}

.dash-students {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.student-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #000;
  margin-left: -8px;
}

.student-avatar:first-child {
  margin-left: 0;
}

.student-count-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 6px;
}

/* floating mini badges */
.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.75rem;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.float-badge-1 {
  top: -20px;
  right: -20px;
  animation: float2 5s ease-in-out infinite;
}

.float-badge-2 {
  bottom: -18px;
  left: -24px;
  animation: float2 7s ease-in-out infinite 1s;
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.fb-icon {
  font-size: 1rem;
  margin-bottom: 2px;
}

.fb-val {
  font-weight: 700;
  color: var(--accent-green);
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 40px;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-green);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-green), transparent 50%, var(--accent-green));
  opacity: 0.3;
}

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.step-num {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(227, 207, 170, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-item:hover::after {
  opacity: 1;
}

/* ── FEATURES DEEP DIVE ── */
.features-section {
  background: var(--bg-primary);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header .section-sub {
  margin: 0 auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse>* {
  direction: ltr;
}

.feature-text {}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(227, 207, 170, 0.08);
  border: 1px solid rgba(227, 207, 170, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feature-bullets li::before {
  content: '✦';
  color: var(--accent-green);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Feature visuals */
.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(196, 161, 114, 0.05), transparent);
}

/* Schedule visual */
.schedule-vis {}

.sched-header {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sched-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  align-items: center;
}

.sched-day {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 36px;
  flex-shrink: 0;
}

.sched-slot {
  height: 32px;
  border-radius: 6px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.68rem;
  font-weight: 600;
}

.slot-a {
  background: rgba(227, 207, 170, 0.12);
  border: 1px solid rgba(227, 207, 170, 0.2);
  color: var(--accent-green);
}

.slot-b {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.slot-c {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.slot-empty {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
}

/* Team visual */
.team-vis {}

.team-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.team-member-row:last-child {
  border-bottom: none;
}

.tm-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
}

.av-1 {
  background: linear-gradient(135deg, #e3cfaa, #c9a87c);
}

.av-2 {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.av-3 {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.av-4 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

.tm-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tm-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tm-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-teacher {
  background: rgba(227, 207, 170, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(227, 207, 170, 0.2);
}

.badge-admin {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-student {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Learning path visual */
.lp-vis {}

.lp-program {
  margin-bottom: 16px;
}

.lp-prog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.lp-prog-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-prog-pct {
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 700;
}

.lp-bar {
  height: 8px;
  background: var(--bg-card-alt);
  border-radius: 99px;
  overflow: hidden;
}

.lp-fill {
  height: 100%;
  border-radius: 99px;
}

.lp-a {
  background: linear-gradient(90deg, #e3cfaa, #c9a87c);
}

.lp-b {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.lp-c {
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.lp-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.lp-milestones {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.milestone-chip {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.milestone-chip.done {
  border-color: rgba(227, 207, 170, 0.3);
  color: var(--accent-green);
  background: rgba(227, 207, 170, 0.06);
}

/* Analytics visual */
.analytics-vis {}

.an-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.an-kpi {
  flex: 1;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
}

.an-kpi-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.an-kpi-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.an-kpi-delta {
  font-size: 0.68rem;
  color: #4ade80;
  margin-top: 3px;
}

.an-chart {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 10px;
}

.an-chart-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.an-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.an-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(227, 207, 170, 0.15);
  position: relative;
  transition: background 0.3s;
}

.an-bar:hover {
  background: rgba(227, 207, 170, 0.3);
}

.an-bar.highlight {
  background: linear-gradient(180deg, var(--accent-green), rgba(227, 207, 170, 0.4));
}

/* ── PROGRAMMES ── */
.programmes-section {
  background: var(--bg-secondary);
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(227, 207, 170, 0.25);
}

.prog-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.glow-gold {
  background: var(--accent-green);
}

.glow-blue {
  background: var(--accent-blue);
}

.glow-purple {
  background: var(--accent-purple);
}

.prog-emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.prog-arabic {
  font-family: 'Amiri', serif;
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 4px;
  direction: rtl;
  text-align: right;
}

.prog-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.prog-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.prog-stages {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-stage {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.prog-stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

/* ── FAMILY FEATURE ── */
.family-section {
  background: var(--bg-primary);
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.family-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.family-feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.family-feat-item:hover {
  border-color: rgba(227, 207, 170, 0.2);
}

.family-feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.family-feat-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.family-feat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.family-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.fd-header {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fd-child {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fd-child:last-child {
  margin-bottom: 0;
}

.fd-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fd-child-icon {
  font-size: 1.4rem;
}

.fd-child-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.fd-child-prog {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.fd-right {
  text-align: right;
}

.fd-streak {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.fd-words {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── QVC ── */
.qvc-section {
  background: var(--bg-secondary);
}

.qvc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.qvc-rounds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.qvc-round {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: all 0.3s;
}

.qvc-round:hover {
  border-color: rgba(227, 207, 170, 0.25);
  transform: scale(1.02);
}

.qvc-round-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.qvc-round-name {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.qvc-round-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.qvc-round-stage {
  font-size: 0.65rem;
  color: var(--accent-green);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.qvc-levels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.level-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.level-name {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.level-words {
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 600;
}

.level-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.level-bar {
  height: 6px;
  background: var(--bg-card-alt);
  border-radius: 99px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-green), rgba(227, 207, 170, 0.4));
}

/* ── TOOLS SECTION ── */
.tools-section {
  background: var(--bg-primary);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
}

.tool-card:hover {
  border-color: rgba(227, 207, 170, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.tool-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.tool-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.tool-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.tool-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tool-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(227, 207, 170, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* ── CTA FINAL ── */
.cta-section {
  background: var(--bg-primary);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 161, 114, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-arabic {
  font-family: 'Amiri', serif;
  font-size: 2rem;
  color: var(--accent-green);
  margin-bottom: 16px;
  direction: rtl;
  opacity: 0.7;
}

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-note span {
  color: var(--accent-green);
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background: var(--bg-secondary);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

/* ── TESTIMONIAL-LIKE QUOTE ── */
.quote-section {
  background: var(--bg-secondary);
  padding: 80px 40px;
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: var(--accent-green);
  opacity: 0.2;
  line-height: 0.7;
  margin-bottom: 24px;
}

.quote-text {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.quote-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── DIVIDER ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {

  .hero-inner,
  .feature-block,
  .family-grid,
  .qvc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .programmes-grid,
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  nav {
    padding: 0 20px;
  }

  section {
    padding: 70px 20px;
  }

  .hero {
    padding: 90px 20px 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .qvc-rounds {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {

  .programmes-grid,
  .tools-grid,
  .qvc-rounds,
  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 24px;
  }
}