/* ─── HERO ─── */
.hero {
  background: radial-gradient(circle at 50% 30%, #162442 0%, var(--navy-main) 70%);
  padding: 80px 40px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid var(--navy-border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-light); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px; padding: 6px 18px;
  color: var(--amber); font-size: 13px; font-family: 'Noto Nastaliq Urdu', serif;
  margin-bottom: 28px;
}
.hero-badge::before { content: '●'; font-size: 8px; color: var(--green); }
.hero h1 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero h1 .highlight { color: var(--amber); }
.hero-sub {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gray-400);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 2.2;
}

/* ─── STATS ROW ─── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
  margin-top: 48px;
}
.stat-item {
  flex: 1; max-width: 200px;
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-left: none; }
.stat-num {
  font-size: 36px; font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
  display: block;
  font-family: 'Outfit', sans-serif;
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  display: block;
  letter-spacing: 1px;
}

/* ─── SECTION SHARED ─── */
section { padding: 80px 40px; }
.section-tag {
  display: inline-block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  color: var(--amber-hover);
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.5;
  margin-bottom: 12px;
}
.section-title .accent { color: var(--amber-hover); }
.section-sub {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 2.2;
  max-width: 640px;
}

/* ─── STORY SECTION (WHITE BACKGROUND) ─── */
.story-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.story-content .section-sub { max-width: 100%; }
.story-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.story-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(245,158,11,0.08);
  border-radius: 50%;
}
.story-year {
  font-size: 56px; font-weight: 900;
  color: rgba(245,158,11,0.8);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}
.story-card-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}
.story-card-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gray-400);
  font-size: 15px;
  line-height: 2.2;
}
.story-card-text .amber { color: var(--amber); font-weight: 600; }
.timeline-dots {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.t-dot {
  width: 32px; height: 32px;
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px; color: var(--amber); font-weight: 700;
}
.t-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--white);
  font-size: 14px;
  line-height: 2;
  padding-top: 2px;
}

/* ─── MISSION (DARK NAVY SECTION) ─── */
.mission-section {
  background: var(--navy-main);
  text-align: center;
  padding: 80px 40px;
  border-bottom: 1px solid var(--navy-border);
}
.mission-section .section-title { color: var(--white); }
.mission-section .section-sub { color: var(--gray-400); margin: 0 auto; }
.mission-box {
  max-width: 700px;
  margin: 40px auto 0;
  background: var(--navy-card);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.mission-quote {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 2;
}
.mission-quote .amber { color: var(--amber); }
.mission-divider {
  width: 48px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 24px auto 0;
}

/* ─── VALUES (LIGHT BG SECTION) ─── */
.values-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.value-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  text-align: right;
}
.value-card:hover {
  border-color: var(--amber);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.value-icon {
  width: 50px; height: 50px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.value-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 18px; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.value-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 2.1;
}

/* ─── FOUNDER (WHITE BACKGROUND SECTION) ─── */
.founder-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.founder-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-avatar {
  width: 220px; height: 220px;
  background: var(--navy-main);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.founder-initials {
  font-size: 72px; font-weight: 900;
  color: rgba(245,158,11,0.35);
  letter-spacing: -4px;
  font-family: 'Outfit', sans-serif;
}
.founder-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--amber);
  color: var(--navy-deep);
  font-size: 12px; font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  font-family: 'Outfit', sans-serif;
}
.founder-name {
  font-size: 34px; font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  font-family: 'Outfit', sans-serif;
}
.founder-role {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--amber-hover);
  font-size: 16px; font-weight: 600;
  margin-bottom: 20px;
}
.founder-bio {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 24px;
}
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ftag {
  background: var(--navy-main);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
}

/* ─── WHY US (LIGHT BG SECTION) ─── */
.whyus-section {
  background: var(--gray-50);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.compare-table {
  max-width: 760px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  background: var(--navy-main);
  padding: 18px 24px;
}
.ch-label {
  text-align: center;
  font-size: 14px; font-weight: 700;
  color: var(--white);
  font-family: 'Noto Nastaliq Urdu', serif;
}
.ch-label.amber { color: var(--amber); font-family: 'Outfit', sans-serif; font-size: 16px; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--gray-50); }
.cr-feature {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: var(--gray-800);
  text-align: right;
  font-weight: 600;
}
.cr-check {
  text-align: center;
  font-size: 18px;
}
.check-yes { color: var(--green); font-weight: 700; }
.check-no { color: var(--red); }

@media (max-width: 768px) {
  .hero { padding: 60px 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin: 0 auto; }
  .stats-row { flex-wrap: wrap; }
  .compare-header, .compare-row { grid-template-columns: 1fr 100px 100px; }
  section { padding: 60px 20px; }
}
