/* ═══════════════════════════════════════
   FINPRO CAREERS — PREMIUM STYLESHEET
   ═══════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #4F8EF7;
  --blue-dark: #2563EB;
  --green: #34C89A;
  --gold: #F7C948;
  --gold-dark: #F7854F;
  --bg: #060B18;
  --bg-2: #0C1428;
  --bg-3: #111827;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text: #F0F4FF;
  --text-2: #94A3B8;
  --text-3: #64748B;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.6);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── LIGHT MODE ───────────────────────── */
body.light-mode {
  --bg: #F0F4FF;
  --bg-2: #E2E8F8;
  --bg-3: #FFFFFF;
  --surface: rgba(0,0,0,0.04);
  --surface-hover: rgba(0,0,0,0.07);
  --border: rgba(0,0,0,0.10);
  --border-hover: rgba(0,0,0,0.20);
  --text: #0F172A;
  --text-2: #334155;
  --text-3: #64748B;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
}

body.light-mode .navbar { background: rgba(240,244,255,0.92); border-bottom-color: rgba(0,0,0,0.08); }
body.light-mode .navbar.scrolled { background: rgba(240,244,255,0.97); }
body.light-mode .hero { background: var(--bg); }
body.light-mode .hero-orb { opacity: 0.18; }
body.light-mode .hero-grid { opacity: 0.06; }
body.light-mode .hero-badge { background: rgba(79,142,247,0.12); border-color: rgba(79,142,247,0.25); }
body.light-mode .social-proof { background: var(--bg-2); }
body.light-mode .logo-pill { background: rgba(0,0,0,0.06); color: var(--text-2); }
body.light-mode .service-card { background: #fff; }
body.light-mode .step-card { background: #fff; }
body.light-mode .course-card { background: #fff; }
body.light-mode .why-card { background: rgba(0,0,0,0.03); }
body.light-mode .testimonial-card { background: #fff; }
body.light-mode .faq-item { border-color: rgba(0,0,0,0.08); }
body.light-mode .faq-question { color: var(--text); }
body.light-mode .hero-form-panel { background: #fff; border-color: rgba(0,0,0,0.10); box-shadow: 0 24px 80px rgba(0,0,0,0.12); }
body.light-mode .hero-form-header { background: linear-gradient(135deg, #e8eef8, #d5e0f5); }
body.light-mode .hero-form-body input,
body.light-mode .hero-form-body select { background: #f8faff; border-color: rgba(0,0,0,0.12); color: var(--text); }
body.light-mode .hero-form-body input::placeholder { color: #94A3B8; }
body.light-mode .reg-edu-block { background: rgba(79,142,247,0.04); }
body.light-mode .vm-card { background: #fff; }
body.light-mode .footer { background: #0F172A; }
body.light-mode .scope-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-mode .why-private-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-mode .reason-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-mode .training-card { background: #fff; }
body.light-mode .toggle-wrapper { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.10); }
body.light-mode .contact { background: var(--bg-2); }
body.light-mode .contact-form input,
body.light-mode .contact-form select,
body.light-mode .contact-form textarea { background: #fff; border-color: rgba(0,0,0,0.12); color: var(--text); }

/* ── THEME TOGGLE BUTTON ──────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--surface);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--surface-hover);
  border-color: var(--blue);
  transform: rotate(15deg);
}

.theme-icon {
  position: absolute;
  font-size: 17px;
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-moon  { opacity: 1;  transform: scale(1); }
.theme-icon-sun   { opacity: 0;  transform: scale(0.5); }

body.light-mode .theme-icon-moon { opacity: 0;  transform: scale(0.5); }
body.light-mode .theme-icon-sun  { opacity: 1;  transform: scale(1); }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ──────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── SECTION SHARED ───────────────────── */
section {
  padding: 120px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #6366F1 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(79,142,247,0.5);
}

.btn-ghost {
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-hover);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: white;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(79,142,247,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(79,142,247,0.5);
}
.btn-hero-primary span, .btn-hero-primary svg { position: relative; z-index: 1; }

.btn-hero-secondary {
  color: var(--text);
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.4s cubic-bezier(0.4,0,0.2,1),
              backdrop-filter 0.4s,
              box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(6,11,24,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-fin {
  background: linear-gradient(135deg, #4F8EF7, #7AB8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-pro {
  background: linear-gradient(135deg, #34C89A, #9BE85A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-careers-word {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  display: inline;
  align-self: auto;
  margin-left: 7px;
  background: linear-gradient(135deg, #F7C948, #FFE08A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-tagline {
  font-size: 13px;
  color: rgba(240,244,255,0.45);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

body.light-mode .nav-logo-tagline { color: rgba(15,23,42,0.45); }

.logo-icon {
  font-size: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-accent {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,142,247,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-duration: 10s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52,200,154,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-duration: 13s;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247,201,72,0.1) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-duration: 16s;
  animation-delay: -6s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px 40px;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-3));
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.social-proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.proof-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logos-track {
  overflow: hidden;
  position: relative;
}

.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.logos-track::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}

.logos-track::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

.logos-inner {
  display: flex;
  gap: 24px;
  animation: logoScroll 28s linear infinite;
  width: max-content;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.logo-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}

.logo-pill:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border-hover);
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--surface-hover);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,142,247,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card-training:hover .card-glow { opacity: 1; }
.card-professionals:hover .card-glow {
  background: linear-gradient(90deg, transparent, rgba(52,200,154,0.5), transparent);
  opacity: 1;
}
.card-hiring:hover .card-glow {
  background: linear-gradient(90deg, transparent, rgba(247,201,72,0.5), transparent);
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--border-hover);
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.card-hiring .service-tag { color: var(--gold); }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.feat-check {
  width: 20px;
  height: 20px;
  background: rgba(79,142,247,0.15);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.feat-gold {
  background: rgba(247,201,72,0.15);
  color: var(--gold);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.3s;
}

.service-cta:hover { gap: 14px; }

.service-cta-gold { color: var(--gold); }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works {
  background: var(--bg-2);
}

.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 64px;
  position: relative;
}

.toggle-btn {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 9px;
  border: none;
  background: none;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.3s;
}

.toggle-btn.active { color: var(--text); }

.toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(33.33% - 3px);
  background: linear-gradient(135deg, rgba(79,142,247,0.2), rgba(52,200,154,0.15));
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 9px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.toggle-indicator.experienced { transform: translateX(calc(100% + 4.5px)); }
.toggle-indicator.employer    { transform: translateX(calc(200% + 9px)); }

.steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.step-connector {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  margin-top: 80px;
  flex-shrink: 0;
  position: relative;
  align-self: center;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════
   COURSES
   ═══════════════════════════════════════ */
.courses {
  background: var(--bg);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.course-card:hover::before { transform: scaleX(1); }

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(247,201,72,0.2), rgba(247,133,79,0.15));
  border: 1px solid rgba(247,201,72,0.3);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 100px;
}

.course-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.course-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.course-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.course-meta span {
  font-size: 13px;
  color: var(--text-3);
}

.course-outcome {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.15);
  paddin: 8px 14px;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-hover);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.course-btn:hover {
  background: linear-gradient(135deg, rgba(79,142,247,0.2), rgba(52,200,154,0.15));
  border-color: rgba(79,142,247,0.3);
  color: var(--text);
}

.courses-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.courses-footer p {
  color: var(--text-2);
  font-size: 15px;
}

.courses-footer strong {
  color: var(--text);
}

/* ═══════════════════════════════════════
   WHY FINPRO
   ═══════════════════════════════════════ */
.why-finpro {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  margin-top: 16px;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateX(8px);
  border-color: var(--border-hover);
  background: var(--surface-hover);
}

.why-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--bg);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
  user-select: none;
}

.carousel-track:active { cursor: grabbing; }

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  min-height: 260px;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 15px;
}

.testi-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

.testi-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border: none;
}

.carousel-dot.active {
  width: 24px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  background: var(--bg-2);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
}

.contact-left p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}

.info-item span {
  color: var(--text);
}

/* Form toggle */
.form-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
}

.form-toggle-btn {
  flex: 1;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  background: none;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.3s;
}

.form-toggle-btn.active { color: var(--text); }

.form-toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: linear-gradient(135deg, rgba(79,142,247,0.2), rgba(52,200,154,0.15));
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 7px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.form-toggle-indicator.employer {
  transform: translateX(100%);
  background: linear-gradient(135deg, rgba(247,201,72,0.2), rgba(247,133,79,0.15));
  border-color: rgba(247,201,72,0.3);
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: formFadeIn 0.4s ease forwards;
}

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: var(--transition-fast);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group select option {
  background: var(--bg-3);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(79,142,247,0.5);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.1);
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(79,142,247,0.35);
  width: 100%;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(79,142,247,0.5);
}

.btn-form-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 8px 24px rgba(247,201,72,0.35);
  color: #1a1a1a;
}

.btn-form-gold:hover {
  box-shadow: 0 12px 36px rgba(247,201,72,0.5);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(79,142,247,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--text);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

.footer-bottom a {
  color: var(--blue);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--text-3);
}

/* ═══════════════════════════════════════
   TOAST
   ═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-3);
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  z-index: 2000;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 28px;
  height: 28px;
  background: rgba(52,200,154,0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,11,24,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open + .nav-actions {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(6,11,24,0.97);
    border-bottom: 1px solid var(--border);
    margin-top: 148px;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }

  .courses-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px;
    width: 100%;
    max-width: 320px;
  }
  .stat-divider { width: 60px; height: 1px; }

  .hero-cta { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { flex: 0 0 90%; }

  .toggle-wrapper { width: 100%; justify-content: center; }
  .toggle-btn { flex: 1; text-align: center; padding: 10px 12px; font-size: 12px; }
  .toggle-indicator { width: calc(33.33% - 3px); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .section-title { font-size: 30px; }
  .hero-stats { max-width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════
   HERO — TWO COLUMN LAYOUT
   ═══════════════════════════════════════ */
.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding-top: 20px;
}

.hero-left {
  text-align: left;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--text);
  background: rgba(79,142,247,0.08);
}

.hero-left .hero-badge {
  margin-bottom: 24px;
  justify-content: flex-start;
}

.hero-left .hero-headline {
  font-size: clamp(34px, 4.5vw, 58px);
  text-align: left;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.hero-left .hero-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  text-align: left;
}

.hero-left .hero-sub strong {
  color: var(--text);
  text-decoration: underline;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition-fast);
}

.hero-feat-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

.hero-feat-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--text);
}

.hero-left .hero-stats {
  display: inline-flex;
  padding: 18px 24px;
  gap: 24px;
}

/* ── Hero Registration Form Panel ── */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-form-panel {
  width: 100%;
  max-width: 420px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.hero-form-header {
  background: linear-gradient(135deg, var(--bg-2), #0d1a36);
  padding: 20px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.hero-form-body {
  padding: 24px 28px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.hero-form-body::-webkit-scrollbar { width: 4px; }
.hero-form-body::-webkit-scrollbar-track { background: transparent; }
.hero-form-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.reg-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  padding: 12px 0;
  margin-bottom: 18px;
  background: rgba(79,142,247,0.08);
  border-radius: 10px;
  border: 1px solid rgba(79,142,247,0.15);
}

.reg-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}

.reg-label-bar {
  display: block;
  width: 3px;
  height: 18px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-form-body .form-group {
  margin-bottom: 12px;
}

.btn-hero-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(79,142,247,0.35);
  font-family: 'Inter', sans-serif;
}

.btn-hero-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(79,142,247,0.5);
}

/* Education blocks inside reg form */
.reg-edu-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}

.reg-edu-block .form-row {
  gap: 8px;
}

.reg-edu-block .form-row .form-group {
  min-width: 0;
  overflow: hidden;
}

.reg-edu-block .form-row input {
  font-size: 12px;
  padding-left: 10px;
  padding-right: 6px;
  min-width: 0;
  width: 100%;
}

.reg-edu-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Experienced fields slide-in */
.experienced-fields {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.experienced-fields.hidden { display: none !important; }

/* ═══════════════════════════════════════
   VISION & MISSION
   ═══════════════════════════════════════ */
.vision-mission {
  background: linear-gradient(160deg, #080d1c 0%, var(--bg-2) 100%);
}

.vm-top {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vm-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(79,142,247,0.35);
}

.section-tag-sm {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.vm-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.vm-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
}

.vm-sub strong {
  color: var(--text);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.vm-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.vm-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(79,142,247,0.3);
}

.vm-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.vm-list li::before {
  content: '';
  display: block;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(79,142,247,0.15) url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%234F8EF7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(79,142,247,0.3);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   12 REASONS
   ═══════════════════════════════════════ */
.reasons {
  background: var(--bg);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.reason-card-highlight {
  background: linear-gradient(135deg, rgba(79,142,247,0.12), rgba(52,200,154,0.08));
  border-color: rgba(79,142,247,0.25);
}

.reason-icon {
  font-size: 24px;
  margin-bottom: 14px;
  width: 50px;
  height: 50px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.reason-card p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   SCOPE & CAREER
   ═══════════════════════════════════════ */
.scope-career {
  background: var(--bg-2);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scope-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.scope-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  border-top: 2px solid rgba(79,142,247,0.4);
  border-right: 2px solid rgba(79,142,247,0.4);
  border-radius: 0 var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.scope-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.scope-card:hover::after { opacity: 1; }

.scope-card-active {
  background: linear-gradient(135deg, rgba(79,142,247,0.1), rgba(99,102,241,0.08));
  border-color: rgba(79,142,247,0.3);
}

.scope-card-active::after {
  opacity: 1 !important;
}

.scope-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(79,142,247,0.25);
}

.scope-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.scope-card-active h4 {
  color: var(--blue);
}

.scope-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   WHY PRIVATE SECTOR BANKS
   ═══════════════════════════════════════ */
.why-private {
  background: var(--bg);
}

.why-private-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-private-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  transition: background 0.2s;
}

.why-private-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.why-private-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-private-item:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.wp-check {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   COURSE ACTIONS & CURRICULUM BUTTON
   ═══════════════════════════════════════ */
.course-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.course-btn-curriculum {
  background: linear-gradient(135deg, rgba(79,142,247,0.12), rgba(52,200,154,0.08));
  border-color: rgba(79,142,247,0.3) !important;
  color: var(--blue) !important;
  gap: 6px;
}

.course-btn-curriculum:hover {
  background: linear-gradient(135deg, rgba(79,142,247,0.22), rgba(52,200,154,0.15)) !important;
  border-color: rgba(79,142,247,0.5) !important;
}

.course-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.course-highlight-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(52,200,154,0.1);
  border: 1px solid rgba(52,200,154,0.2);
  color: var(--green);
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-main { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { justify-content: center; }
  .hero-form-panel { max-width: 100%; }
  .hero-left { text-align: center; }
  .hero-left .hero-badge { justify-content: center; }
  .hero-left .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-tagline { text-align: center; }
  .hero-left .hero-stats { justify-content: center; }
  .vm-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-features { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: 1fr; }
  .why-private-grid { grid-template-columns: 1fr; }
  .why-private-item:nth-child(odd) { border-right: none; }
  .why-private-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .why-private-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-features { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .hero-left .hero-headline { font-size: 36px; }
}

/* ══════════════════════════════════════════
   COURSE NOTE
══════════════════════════════════════════ */
.course-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin: 12px 0;
}

/* ══════════════════════════════════════════
   TRAINING HIGHLIGHTS SECTION
══════════════════════════════════════════ */
.training-highlights {
  background: var(--bg-3);
  padding: 120px 0;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.training-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.training-card:hover {
  border-color: rgba(79,142,247,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.training-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.training-label {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.training-card-header-exp .training-label {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.training-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.training-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}

.tb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex-shrink: 0;
}

.tb-dot-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.training-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.training-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.training-cta-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr; }
  .training-card { padding: 28px; }
}

/* ══════════════════════════════════════════
   JOBS SECTION
══════════════════════════════════════════ */
.jobs-section {
  background: var(--bg-2);
  padding: 120px 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 1100px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

.job-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.job-card:hover {
  border-color: rgba(79,142,247,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.job-logo-placeholder {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.job-company {
  font-size: 13px;
  color: var(--text-2);
}

.job-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.job-badge-hot {
  background: rgba(52,200,154,0.12);
  color: var(--green);
  border-color: rgba(52,200,154,0.3);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(79,142,247,0.08);
  color: var(--blue);
  border: 1px solid rgba(79,142,247,0.18);
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.job-apply-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.jobs-footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--text-2);
  font-size: 15px;
}

.jobs-footer strong { color: var(--text); }

body.light-mode .job-card { background: #fff; }
body.light-mode .job-logo-placeholder { background: rgba(79,142,247,0.06); }

@media (max-width: 768px) {
  .jobs-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}
