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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #0d1117;
  --purple: #6d28d9;
  --purple-light: #8b5cf6;
  --purple-50: #f5f3ff;
  --teal: #0f766e;
  --teal-light: #14b8a6;
  --gradient: linear-gradient(135deg, #6d28d9 0%, #0f766e 100%);
  --gradient-soft: linear-gradient(135deg, rgba(109,40,217,0.08) 0%, rgba(15,118,110,0.08) 100%);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-width: 1100px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.15; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(24px, 5vw, 38px); color: var(--gray-900); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--gray-500); line-height: 1.7; max-width: 520px; }

/* ── CONTAINER ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 50px; font-size: 15px; font-weight: 600; font-family: var(--font-body); cursor: pointer; border: none; transition: all 0.22s ease; white-space: nowrap; }
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,40,217,0.3); }
.btn-outline { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-ghost { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-full { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  height: 60px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 34px; width: auto; }
.nav-logo-fallback { width: 34px; height: 34px; border-radius: 8px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: white; font-family: var(--font-heading); flex-shrink: 0; }
.nav-brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: var(--gray-900); }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  background: white; border-bottom: 1px solid var(--gray-100);
  padding: 16px 20px 24px;
  display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: 16px; font-weight: 500; color: var(--gray-700); padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .nav-cta { margin-top: 8px; background: var(--gradient); color: white; border-radius: 50px; text-align: center; border: none; padding: 13px; }

/* Desktop nav links (hidden on mobile) */
.nav-links-desktop { display: none; }

/* ── HERO ── */
.hero {
  padding: 80px 20px 48px;
  background: var(--white);
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
}
.hero-bg-orb-1 { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(109,40,217,0.08), transparent 70%); pointer-events: none; }
.hero-bg-orb-2 { position: absolute; bottom: -60px; left: -60px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(15,118,110,0.07), transparent 70%); pointer-events: none; }
.hero-inner { max-width: 500px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gray-100); border-radius: 50px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 20px; }
.hero-badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { font-size: clamp(32px, 8vw, 54px); color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1; }
.hero-quote { font-size: 14px; font-style: italic; color: var(--gray-500); line-height: 1.7; border-left: 3px solid var(--purple); padding-left: 14px; margin-bottom: 24px; }
.hero-stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.hero-stat span { font-size: 12px; color: var(--gray-400); margin-top: 3px; display: block; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; }
.hero-mentor-strip { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding: 14px 16px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.hero-mentor-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid white; box-shadow: var(--shadow-sm); background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; font-family: var(--font-heading); }
.hero-mentor-info { flex: 1; min-width: 0; }
.hero-mentor-name { font-weight: 700; font-size: 14px; color: var(--gray-900); }
.hero-mentor-title { font-size: 12px; color: var(--purple); font-weight: 500; }
.verified-badge { width: 16px; height: 16px; flex-shrink: 0; }

/* ── COURSES ── */
.courses-bg { background: var(--gray-50); }
.courses-grid { display: flex; flex-direction: column; gap: 16px; }
.course-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; transition: all 0.25s; position: relative; overflow: hidden; }
.course-card:hover { box-shadow: var(--shadow); border-color: #c4b5fd; }
.course-card.featured { border: 2px solid transparent; background: linear-gradient(var(--white),var(--white)) padding-box, var(--gradient) border-box; }
.course-badge-top { position: absolute; top: 16px; right: 16px; background: var(--gradient); color: white; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.04em; }
.course-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.ci-purple { background: rgba(109,40,217,0.08); }
.ci-teal { background: rgba(15,118,110,0.08); }
.ci-gray { background: var(--gray-100); }
.course-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.course-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.course-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.course-features li { font-size: 13px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.course-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }
.course-price { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.course-price span { font-size: 13px; font-weight: 400; color: var(--gray-400); }

/* ── ABOUT ── */
.mentor-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.mentor-card-header { background: var(--gradient); padding: 32px 24px; display: flex; align-items: center; gap: 16px; }
.mentor-photo-wrap { position: relative; flex-shrink: 0; }
.mentor-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; font-weight: 800; font-family: var(--font-heading); }
.mentor-photo img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.5); }
.mentor-card-info { flex: 1; min-width: 0; }
.mentor-card-name { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: white; margin-bottom: 2px; }
.mentor-card-title { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.mentor-card-location { font-size: 12px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 4px; }
.mentor-card-body { padding: 24px; }
.mentor-quote { font-size: 14px; font-style: italic; color: var(--gray-600); border-left: 3px solid var(--teal-light); padding-left: 14px; margin-bottom: 18px; line-height: 1.7; }
.mentor-bio { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.skills-wrap { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.skill-tag { background: var(--gray-100); color: var(--gray-700); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 50px; border: 1px solid var(--gray-200); }
.impact-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.impact-box { background: var(--gray-50); border-radius: var(--radius); padding: 14px; text-align: center; border: 1px solid var(--gray-100); }
.impact-box strong { display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--gray-900); }
.impact-box span { font-size: 11px; color: var(--gray-400); margin-top: 2px; display: block; }

/* ── BATCH STRIP ── */
.batch-strip { background: var(--gradient); padding: 56px 0; }
.batch-strip .label { color: rgba(255,255,255,0.7); }
.batch-strip .section-title { color: white; }
.batch-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px; }
.batch-card:last-child { margin-bottom: 0; }
.batch-card h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 10px; }
.batch-meta-item { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 5px; display: flex; align-items: center; gap: 6px; }
.seats-bar-wrap { margin: 12px 0 5px; }
.seats-bar { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.seats-fill { height: 100%; background: white; border-radius: 2px; }
.seats-text { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── WORLD CLOCK ── */
.clock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.clock-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; text-align: center; }
.clock-card.ist { border-color: var(--purple); background: var(--purple-50); }
.clock-flag { font-size: 22px; margin-bottom: 4px; }
.clock-city { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.clock-time { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.clock-card.ist .clock-time { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.clock-date { font-size: 11px; color: var(--gray-400); }
.ist-note { text-align: center; font-size: 14px; color: var(--gray-500); margin-top: 16px; background: var(--purple-50); border-radius: var(--radius); padding: 12px 16px; border: 1px solid #ddd6fe; }

/* ── TESTIMONIALS ── */
.testi-grid { display: flex; flex-direction: column; gap: 16px; }
.testi-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; }
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--gray-900); }
.testi-role { font-size: 12px; color: var(--gray-400); }

/* ── INSTAGRAM SECTION ── */
.insta-section { background: var(--gray-50); }
.insta-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 24px; }
.insta-stat { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; text-align: center; }
.insta-stat strong { display: block; font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--gray-900); }
.insta-stat span { font-size: 12px; color: var(--gray-400); margin-top: 3px; display: block; }
.insta-cta-box { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; gap: 14px; }
.insta-icon { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; justify-content: center; }
.insta-icon svg { width: 24px; height: 24px; fill: white; }
.insta-cta-text { flex: 1; }
.insta-cta-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.insta-cta-text span { font-size: 13px; color: var(--gray-400); }

/* ── LEAD FORM ── */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-body); color: var(--gray-800);
  background: var(--white); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 90px; }
.working-toggle { display: flex; gap: 8px; }
.toggle-btn { flex: 1; padding: 11px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); background: white; cursor: pointer; font-size: 14px; font-family: var(--font-body); font-weight: 500; color: var(--gray-600); transition: all 0.2s; }
.toggle-btn.active { border-color: var(--purple); background: rgba(109,40,217,0.05); color: var(--purple); }
.extra-fields { display: none; }
.extra-fields.show { display: block; }

/* ── BATCH PAGE ── */
.batch-layout { padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); margin-bottom: 24px; }
.batch-tech-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(109,40,217,0.08); color: var(--purple); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.batch-layout h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.batch-layout .tagline { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.batch-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.batch-detail { background: var(--gray-50); border-radius: var(--radius-sm); padding: 12px; }
.batch-detail .label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 3px; }
.batch-detail .value { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.batch-divider { border: none; border-top: 1px solid var(--gray-200); margin: 28px 0; }
.syllabus-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.syllabus-tag { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-600); font-size: 12px; padding: 4px 12px; border-radius: 50px; }
.seats-indicator { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.seats-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.price-tag { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }

/* ── PARTNER ── */
.stats-band { background: var(--gradient); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat-box { text-align: center; }
.stat-box strong { display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: white; }
.stat-box span { font-size: 13px; color: rgba(255,255,255,0.75); }
.collab-grid { display: flex; flex-direction: column; gap: 14px; }
.collab-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.collab-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.collab-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.collab-price { font-weight: 600; color: var(--purple); font-size: 13px; margin-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--gray-900); padding: 48px 0 24px; }
.footer-top { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.footer-brand-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.social-row { display: flex; gap: 12px; margin-bottom: 28px; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); transition: all 0.2s; border: 1px solid rgba(255,255,255,0.1); }
.social-btn:hover { background: var(--purple); border-color: var(--purple); }
.social-btn svg { width: 18px; height: 18px; fill: var(--gray-400); transition: fill 0.2s; }
.social-btn:hover svg { fill: white; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col h5 { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-500); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: #c4b5fd; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; text-align: center; font-size: 13px; color: var(--gray-600); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 20px; right: 20px; z-index: 998; width: 52px; height: 52px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.45); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── ADMIN ── */
.admin-wrap { display: flex; flex-direction: column; min-height: 100vh; background: var(--gray-50); }
.admin-topbar { background: var(--gray-900); padding: 0 20px; height: 56px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.admin-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: white; }
.admin-nav-row { background: var(--gray-800); padding: 0 20px; display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.admin-nav-row::-webkit-scrollbar { display: none; }
.admin-nav-row a { flex-shrink: 0; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--gray-400); border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.2s; }
.admin-nav-row a:hover, .admin-nav-row a.active { color: white; border-bottom-color: var(--purple-light); }
.admin-content { padding: 20px; flex: 1; }
.admin-title { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; }
.metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 20px; }
.metric-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; }
.metric-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.metric-value { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--gray-900); }
.metric-sub { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.admin-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.admin-card-head { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.admin-card-head h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { background: var(--gray-50); padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
td { padding: 12px 14px; font-size: 13px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-50); }
.badge { display: inline-block; padding: 3px 9px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.badge-new { background: #dbeafe; color: #1e40af; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-open { background: #f3e8ff; color: #6b21a8; }
.badge-converted { background: #d1fae5; color: #065f46; }
.badge-lost { background: #f1f5f9; color: #64748b; }
.badge-negotiating { background: #fef3c7; color: #92400e; }
.btn-xs { padding: 5px 10px; font-size: 11px; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; font-family: var(--font-body); display: inline-block; }
.btn-edit { background: var(--gray-100); color: var(--gray-700); }
.btn-del { background: #fee2e2; color: #991b1b; }
.btn-view { background: #dbeafe; color: #1e40af; }
.admin-form-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; }
.admin-form-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-900); padding: 20px; }
.login-card { background: var(--gray-800); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 36px 28px; width: 100%; max-width: 360px; text-align: center; }
.login-card h2 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 4px; }
.login-card .sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.login-card .form-group label { color: var(--gray-400); text-align: left; }
.login-card .form-group input { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: white; }

/* PAGE HEADER */
.page-header { padding: 96px 0 40px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.page-header h1 { font-size: clamp(26px,6vw,40px); margin-bottom: 10px; }

/* CTA BAND */
.cta-band { background: var(--gray-900); padding: 56px 0; text-align: center; }
.cta-band h2 { font-size: clamp(24px,5vw,36px); color: white; margin-bottom: 12px; }
.cta-band p { font-size: 15px; color: var(--gray-400); margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }

/* DESKTOP OVERRIDES */
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .courses-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .insta-stats { grid-template-columns: repeat(4,1fr); }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .testi-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
  .cta-btns { flex-direction: row; justify-content: center; }
  .metric-grid { grid-template-columns: repeat(4,1fr); }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .clock-grid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 900px) {
  .navbar { height: 66px; padding: 0 40px; }
  .nav-brand-name { font-size: 19px; }
  .hamburger { display: none; }
  .nav-links-desktop { display: flex; align-items: center; gap: 28px; }
  .nav-links-desktop a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
  .nav-links-desktop a:hover { color: var(--purple); }
  .nav-links-desktop .nav-cta { background: var(--gradient); color: white; padding: 9px 20px; border-radius: 50px; font-weight: 600; }
  .hero { padding: 100px 40px 60px; min-height: auto; }
  .hero-inner { max-width: 600px; }
  .hero-actions { flex-direction: row; }
  .courses-grid { grid-template-columns: repeat(3,1fr); }
  .testi-grid { grid-template-columns: repeat(3,1fr); }
  section { padding: 80px 0; }
  .container { padding: 0 40px; }
  .footer-links { grid-template-columns: repeat(4,1fr); }
  .batch-layout-inner { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; }
  .reg-form-sticky { position: sticky; top: 80px; }
  .collab-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .clock-grid { grid-template-columns: repeat(3,1fr); }
}
