/* =========================================
   School Tag — Premium Marketing Website
   Minimalist · Warm · School-Friendly
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #FAFAF7;
  --bg-warm: #FFF9F0;
  --bg-card: #ffffff;
  --bg-card-hover: #FFF7ED;
  --glass: rgba(255,255,255,0.9);
  --glass-border: rgba(0,0,0,0.06);
  --text-primary: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8e90a6;
  --accent-orange: #F97316;
  --accent-yellow: #FBBF24;
  --accent-blue: #2563EB;
  --accent-blue-light: #3B82F6;
  --accent-navy: #1E3A5F;
  --accent-green: #10B981;
  --accent-red: #EF4444;
  --gradient-warm: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --gradient-blue: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  --gradient-hero: linear-gradient(160deg, #FFF9F0 0%, #FFF4E6 30%, #EFF6FF 70%, #ffffff 100%);
  --gradient-mixed: linear-gradient(135deg, #F97316 0%, #FBBF24 40%, #3B82F6 100%);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.04);
  --shadow-hover: 0 12px 40px rgba(249,115,22,0.12);
  --shadow-blue: 0 12px 40px rgba(37,99,235,0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.gradient-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-mixed {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations (reveal) ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.active { opacity:1; transform:translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.active { opacity:1; transform:translateX(0); }

/* stagger children */
.stagger-children .reveal:nth-child(1){ transition-delay:.05s }
.stagger-children .reveal:nth-child(2){ transition-delay:.12s }
.stagger-children .reveal:nth-child(3){ transition-delay:.19s }
.stagger-children .reveal:nth-child(4){ transition-delay:.26s }
.stagger-children .reveal:nth-child(5){ transition-delay:.33s }
.stagger-children .reveal:nth-child(6){ transition-delay:.4s }
.stagger-children .reveal:nth-child(7){ transition-delay:.47s }
.stagger-children .reveal:nth-child(8){ transition-delay:.54s }
.stagger-children .reveal:nth-child(9){ transition-delay:.61s }
.stagger-children .reveal:nth-child(10){ transition-delay:.68s }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.nav-logo span { color: var(--accent-orange); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent-orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 26px !important;
  border-radius: 50px !important;
  background: var(--gradient-warm) !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3) !important;
}
.nav-cta::after { display:none !important; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: 0.3s;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Soft geometric blobs instead of harsh orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: orbFloat 18s ease-in-out infinite alternate;
}
.hero-orb-1 { width:600px; height:600px; background:#FBBF24; top:-200px; left:-150px; }
.hero-orb-2 { width:500px; height:500px; background:#3B82F6; bottom:-150px; right:-100px; animation-delay:-7s; }
.hero-orb-3 { width:350px; height:350px; background:#F97316; top:50%; left:55%; animation-delay:-12s; }

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(20px,-30px) scale(1.08); }
  100% { transform: translate(-15px,25px) scale(0.96); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; }
  50%     { opacity:0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: fadeSlideUp 0.8s ease 0.15s forwards;
  opacity: 0;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s forwards;
  opacity: 0;
}
@keyframes fadeSlideUp {
  to { opacity:1; transform:translateY(0); }
  from { opacity:0; transform:translateY(20px); }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: var(--bg-warm);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/* ══════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════ */
.trusted {
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  background: var(--bg-primary);
}
.trusted p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.trusted-logos span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.trusted-logos span:hover {
  background: var(--bg-warm);
  border-color: rgba(249,115,22,0.15);
  color: var(--accent-orange);
}

/* ══════════════════════════════════
   VALUE PROPOSITIONS
   ══════════════════════════════════ */
.value-section {
  padding: 72px 0;
  background: var(--bg-secondary);
  position: relative;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(251,191,36,0.12);
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.value-icon-orange {
  background: rgba(249,115,22,0.12);
  color: var(--accent-orange);
}
.value-icon-blue {
  background: rgba(37,99,235,0.1);
  color: var(--accent-blue);
}
.value-icon-green {
  background: rgba(16,185,129,0.1);
  color: var(--accent-green);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.value-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ══════════════════════════════════
   KEY HIGHLIGHTS (CTA Banner)
   ══════════════════════════════════ */
.highlights-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}
.highlights-banner {
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.highlights-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(251,191,36,0.12);
  filter: blur(100px);
  top: -100px; right: -100px;
}
.highlights-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  filter: blur(80px);
  bottom: -80px; left: -60px;
}
.highlights-info {
  position: relative;
  z-index: 2;
}
.highlights-info .section-tag {
  background: rgba(251,191,36,0.2);
  border-color: rgba(251,191,36,0.4);
  color: #FBBF24;
  margin-bottom: 20px;
}
.highlights-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.highlights-info p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.highlight-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.highlight-item .material-icons-round {
  font-size: 18px;
  color: var(--accent-yellow);
}
.highlights-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}
.highlights-cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.highlights-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.highlights-cta-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.highlights-cta-card .contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-chip:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.contact-chip .material-icons-round {
  font-size: 18px;
  color: var(--accent-yellow);
}
.btn-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}

/* ══════════════════════════════════
   FEATURES OVERVIEW
   ══════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--accent-orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249,115,22,0.2);
}
.feature-card:hover::before { opacity:1; }

/* Special styling for fee payment card */
.feature-card.fee-highlight {
  border-color: rgba(249,115,22,0.25);
  background: linear-gradient(135deg, #FFF9F0 0%, #ffffff 100%);
  position: relative;
}
.feature-card.fee-highlight .fee-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gradient-warm);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-badge 2s ease infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.3); }
  50%     { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* icon bg colors */
.icon-blue    { background: rgba(37,99,235,0.1); color: var(--accent-blue); }
.icon-purple  { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.icon-pink    { background: rgba(236,72,153,0.1); color: #EC4899; }
.icon-yellow  { background: rgba(251,191,36,0.1); color: #D97706; }
.icon-green   { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.icon-orange  { background: rgba(249,115,22,0.1); color: var(--accent-orange); }

/* ══════════════════════════════════
   FEE PAYMENT SECTION
   ══════════════════════════════════ */
.fee-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.fee-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(251,191,36,0.06);
  filter: blur(120px);
  top: -200px; left: -150px;
}
.fee-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,0.05);
  filter: blur(100px);
  bottom: -150px; right: -100px;
}
.fee-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.fee-info {
  position: relative;
}
.fee-info .section-tag {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.3);
  color: var(--accent-green);
}
.fee-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.fee-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.fee-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fee-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.fee-feature-item:hover {
  background: var(--bg-warm);
  border-color: rgba(249,115,22,0.15);
  transform: translateX(4px);
}
.fee-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fee-feature-icon.bg-orange { background: rgba(249,115,22,0.1); color: var(--accent-orange); }
.fee-feature-icon.bg-blue   { background: rgba(37,99,235,0.1); color: var(--accent-blue); }
.fee-feature-icon.bg-green  { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.fee-feature-icon.bg-yellow { background: rgba(251,191,36,0.1); color: #D97706; }

.fee-feature-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.fee-feature-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Fee visual card */
.fee-visual {
  position: relative;
}
.fee-mock-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.fee-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--glass-border);
}
.fee-mock-header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.fee-mock-status {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-paid {
  background: rgba(16,185,129,0.1);
  color: var(--accent-green);
}
.status-pending {
  background: rgba(249,115,22,0.1);
  color: var(--accent-orange);
}
.status-overdue {
  background: rgba(239,68,68,0.1);
  color: var(--accent-red);
}
.fee-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fee-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
}
.fee-mock-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}
.fee-mock-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.fee-mock-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(251,191,36,0.06) 100%);
  border: 1px solid rgba(249,115,22,0.15);
}
.fee-mock-total span:first-child {
  font-weight: 600;
  color: var(--text-primary);
}
.fee-mock-total span:last-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-orange);
}
.fee-mock-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-warm);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fee-mock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

/* Floating badge on mock card */
.fee-mock-card .razorpay-badge {
  position: absolute;
  bottom: -14px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.fee-mock-card .razorpay-badge .material-icons-round {
  font-size: 16px;
  color: var(--accent-green);
}

/* ══════════════════════════════════
   ROLE SHOWCASE
   ══════════════════════════════════ */
.roles-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.role-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.role-block:last-child { margin-bottom: 0; }
.role-block.reverse { direction: rtl; }
.role-block.reverse > * { direction: ltr; }
.role-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}
.role-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-secondary) 100%);
}
.role-visual .role-emoji {
  font-size: 4rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-12px); }
}
.role-visual .role-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.role-info .section-tag { margin-bottom: 14px; }
.role-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.role-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.role-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.role-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.role-features li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ══════════════════════════════════
   WHY CHOOSE
   ══════════════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.why-card {
  padding: 36px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: 0.35s;
  box-shadow: var(--shadow-card);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.2);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ══════════════════════════════════
   DEMO BOOKING
   ══════════════════════════════════ */
.demo-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent-yellow);
  filter: blur(200px);
  opacity: 0.06;
  top: -200px;
  right: -200px;
}
.demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.demo-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,4vw,2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.demo-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.demo-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.demo-perks li .perk-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(249,115,22,0.08);
  color: var(--accent-orange);
  flex-shrink: 0;
}

.demo-form-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}
.demo-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.demo-form-card .subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Phone input with +91 prefix */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.phone-input-wrapper:focus-within {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(0,0,0,0.03);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  border-right: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
  user-select: none;
}
.phone-input-wrapper input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
}
.phone-input-wrapper input:focus {
  box-shadow: none !important;
}

/* Field hint (inline validation) */
.field-hint {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.3s;
  color: var(--text-muted);
}
.field-hint.error {
  color: var(--accent-red);
}
.field-hint.success {
  color: var(--accent-green);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: var(--font-primary);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.3);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { transform:scale(0); } to { transform:scale(1); }
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-success p { color: var(--text-secondary); font-size:0.92rem; }
.form-error {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--accent-red);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.form-error.show { display: block; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--text-primary);
  color: #fff;
}
.footer .nav-logo { color: #fff; }
.footer .nav-logo span { color: var(--accent-yellow); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 16px;
  color: #fff;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: 0.3s;
  color: rgba(255,255,255,0.6);
}
.footer-socials a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid           { grid-template-columns: repeat(2,1fr); }
  .value-grid         { grid-template-columns: repeat(2,1fr); }
  .role-block         { grid-template-columns: 1fr; gap:36px; }
  .role-block.reverse { direction:ltr; }
  .demo-wrapper       { grid-template-columns: 1fr; }
  .fee-wrapper        { grid-template-columns: 1fr; }
  .highlights-banner  { grid-template-columns: 1fr; padding: 40px 32px; }
  .highlights-list    { grid-template-columns: 1fr 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links      { display:none; }
  .mobile-toggle  { display:flex; }
  .value-grid     { grid-template-columns: repeat(2,1fr); }
  .features-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap:28px; }
  .footer-bottom  { flex-direction:column; gap:12px; text-align:center; }
  .highlights-list { grid-template-columns: 1fr; }
  .highlights-banner { padding: 32px 24px; }

  /* Mobile menu */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
}
@media (max-width: 480px) {
  .value-grid   { grid-template-columns: 1fr; gap:10px; }
  .value-card   { padding:24px 16px; }
  .hero         { padding:100px 0 60px; }
  .fee-mock-card { padding: 20px; }
}

/* Spin animation for loader */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar { width:7px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.25); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(249,115,22,0.45); }
