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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --red:        #b91c1c;
  --red-vivid:  #dc2626;
  --red-bright: #ef4444;
  --red-soft:   #fff0f1;
  --dark:       #0b1220;
  --dark2:      #111827;
  --dark3:      #1e293b;
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-500:  #64748b;
  --slate-700:  #334155;
  --slate-900:  #0f172a;
  --gold:       #fde047;
  --green:      #22c55e;
  --blue:       #3b82f6;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  36px;
  --radius-2xl: 48px;
  --shadow-sm:  0 2px 8px rgba(15,23,42,.06);
  --shadow-md:  0 8px 32px rgba(15,23,42,.10);
  --shadow-lg:  0 20px 60px rgba(15,23,42,.14);
  --shadow-red: 0 16px 48px rgba(185,28,28,.30);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   PAGE
   ============================================================ */
.lx-page { overflow-x: hidden; }

/* ============================================================
   NAV
   ============================================================ */
.lx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.lx-nav.scrolled {
  background: rgba(9,15,28,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 10px 0;
}

.lx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lx-logo-pill {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
  transition: box-shadow .2s;
}
.lx-logo-pill:hover { box-shadow: 0 6px 28px rgba(0,0,0,.26); }
.lx-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.lx-nav-actions { display: flex; align-items: center; gap: 10px; }

.lx-ghost-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.lx-ghost-pill:hover { background: rgba(255,255,255,.16); }

.lx-white-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: #7f1d1d;
  font-size: 13px;
  font-weight: 900;
  padding: 9px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: -.01em;
}
.lx-white-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

/* ============================================================
   HERO
   ============================================================ */
.lx-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  isolation: isolate;
}

.lx-hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(220,38,38,.32), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(59,130,246,.26), transparent 28%),
    linear-gradient(150deg, #070d1a 0%, #0f1826 45%, #6b1c20 130%);
}
.lx-grid-overlay {
  position: absolute; inset: 0; z-index: -2;
  opacity: .07;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 48px 48px;
}
.lx-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.lx-orb-tr  { top: -80px; right: -40px; width: 500px; height: 500px; background: rgba(220,38,38,.18); z-index: -1; }
.lx-orb-bl  { bottom: 0; left: -60px; width: 420px; height: 420px; background: rgba(59,130,246,.16); z-index: -1; }
.lx-orb-mid { top: 40%; left: 40%; width: 300px; height: 300px; background: rgba(139,0,0,.10); z-index: -1; }

.lx-hero-inner {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 40px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

/* Badge */
.lx-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
  letter-spacing: .01em;
}

/* H1 */
.lx-h1 {
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -0.06em;
  color: var(--white);
}
.lx-h1-accent {
  background: linear-gradient(135deg, #fca5a5, #f87171, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.lx-hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 560px;
}
.lx-hero-sub strong { color: var(--white); font-weight: 700; }

/* Trust chips */
.lx-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.lx-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.80);
}

/* Buttons */
.lx-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.lx-btn-red-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-vivid), var(--red));
  color: var(--white); font-size: 15px; font-weight: 900;
  box-shadow: var(--shadow-red);
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none; cursor: pointer; letter-spacing: -.01em;
}
.lx-btn-red-lg:hover { transform: translateY(-2px); background: linear-gradient(135deg,#ef4444,#dc2626); box-shadow: 0 20px 56px rgba(220,38,38,.40); }

.lx-btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white); font-size: 15px; font-weight: 700;
  backdrop-filter: blur(8px);
  transition: transform .2s, background .2s;
  letter-spacing: -.01em;
}
.lx-btn-ghost-lg:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }

/* Stats */
.lx-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-top: 32px;
}
.lx-stat {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  transition: background .2s, border-color .2s;
}
.lx-stat:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.lx-stat-val {
  font-size: clamp(18px,2.2vw,26px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
}
.lx-stat-lbl {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.52);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.lx-form-wrap { position: relative; }

.lx-form-glow {
  position: absolute; inset: -20px; border-radius: 40px;
  background: linear-gradient(135deg, rgba(220,38,38,.35), rgba(255,255,255,.06), rgba(59,130,246,.25));
  filter: blur(36px); z-index: 0;
  pointer-events: none;
}

.lx-card {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.32), 0 0 0 1px rgba(0,0,0,.06);
}

.lx-card-header {
  background: linear-gradient(140deg, #9b1616, #c41e1e, #b91c1c);
  padding: 22px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lx-card-header::after {
  content:'';
  position: absolute;
  top: -40%;right: -20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

.lx-card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.lx-card-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.lx-card-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
}
.lx-live-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.75); }
}

.lx-card-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.2;
}
.lx-card-desc {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

/* Lead form */
.lx-lead-form {
  padding: 20px 22px 22px;
  color: var(--slate-900);
}
.lx-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lx-field { margin-bottom: 12px; }
.lx-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--slate-700);
  letter-spacing: .01em;
}

.field-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--slate-900);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input:focus {
  border-color: var(--red-vivid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
.field-input::placeholder { color: #94a3b8; }

.lx-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  font-size: 11.5px;
  line-height: 1.55;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 2px;
  border: 1.5px solid var(--slate-200);
  transition: border-color .18s;
}
.lx-consent:hover { border-color: #cbd5e1; }
.lx-consent input[type="checkbox"] {
  margin-top: 1px;
  accent-color: var(--red-vivid);
  flex-shrink: 0;
  width: 14px; height: 14px;
  cursor: pointer;
}

.lx-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 15px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-vivid), var(--red));
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: transform .2s, box-shadow .2s, background .2s;
  letter-spacing: -.01em;
}
.lx-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,#ef4444,#dc2626);
  box-shadow: 0 20px 56px rgba(220,38,38,.40);
}
.lx-submit-btn:active { transform: translateY(0); }

.lx-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

.lx-form-error {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #fff0f1;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid #fecaca;
}
.errorlist {
  list-style: none;
  margin: 4px 0 0;
  color: var(--red-vivid);
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   TICKER
   ============================================================ */
.lx-ticker-wrap {
  background: linear-gradient(135deg, var(--red), #9b1616);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lx-ticker { overflow: hidden; padding: 13px 0; }
.lx-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.lx-ticker-track span {
  display: inline-block;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lx-ticker-wrap:hover .lx-ticker-track { animation-play-state: paused; }

/* ============================================================
   SHARED SECTION ATOMS
   ============================================================ */
.lx-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.lx-eyebrow-red  { color: var(--red); }
.lx-eyebrow-rose { color: #fca5a5; }

.lx-section-h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.055em;
  color: var(--slate-900);
  margin-top: 10px;
}
.lx-section-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-500);
  margin-top: 14px;
}
.lx-white       { color: var(--white) !important; }
.lx-white-muted { color: rgba(255,255,255,.68) !important; }

.lx-section-center { text-align: center; margin-bottom: 48px; }
.lx-section-center .lx-section-h2 { color: var(--slate-900); }

/* Scroll reveal */
[data-reveal], [data-reveal-delay] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal-delay] { transition-delay: .15s; }
.revealed { opacity: 1 !important; transform: translateY(0) !important; }

/* ============================================================
   WHY MBA GLOBAL
   ============================================================ */
.lx-why {
  background: var(--white);
  padding: 88px 0;
}
.lx-why-inner {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lx-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.01em;
  transition: gap .2s;
}
.lx-inline-link:hover { gap: 10px; }

.lx-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lx-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-100);
  background: var(--slate-50);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lx-highlight-item:hover {
  border-color: #fecaca;
  box-shadow: 0 4px 20px rgba(185,28,28,.07);
  transform: translateY(-1px);
}
.lx-hi-icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--red-soft);
  flex-shrink: 0;
}
.lx-highlight-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  line-height: 1.5;
}

/* ============================================================
   SPECIALIZATIONS
   ============================================================ */
.lx-specs {
  position: relative;
  padding: 88px 0;
  isolation: isolate;
}
.lx-specs-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 50%, rgba(220,38,38,.22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(160deg, #0d1525, var(--dark2) 55%, #1a0a0a);
}
.lx-specs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.lx-specs-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 4px;
}
.lx-spec-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.lx-spec-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.lx-spec-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: rgba(220,38,38,.20);
  border: 1px solid rgba(220,38,38,.30);
  color: #fca5a5;
  margin-bottom: 20px;
}
.lx-spec-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.lx-spec-card > p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  margin-bottom: 16px;
}
.lx-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lx-spec-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  letter-spacing: .02em;
}

/* ============================================================
   STUDENT JOURNEY
   ============================================================ */
.lx-journey {
  background: var(--slate-50);
  padding: 88px 0;
}
.lx-journey-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.lx-journey-inner .lx-section-center .lx-section-h2 { color: var(--slate-900); }

.lx-journey-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  position: relative;
}
.lx-journey-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), #fca5a5, var(--red));
  opacity: .25;
  pointer-events: none;
}

.lx-journey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.lx-journey-card:hover {
  border-color: #fecaca;
  box-shadow: 0 24px 64px rgba(185,28,28,.10);
  transform: translateY(-4px);
}
.lx-journey-step {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lx-journey-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 20px;
}
.lx-journey-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.lx-journey-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-500);
}

/* ============================================================
   PLACEMENTS
   ============================================================ */
.lx-placements {
  position: relative;
  background: var(--dark2);
  padding: 88px 0;
  isolation: isolate;
}
.lx-placements-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 76% 24%, rgba(220,38,38,.22), transparent 28%);
}
.lx-placements-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lx-placement-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}
.lx-ps-item { flex: 1; text-align: center; }
.lx-ps-item strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}
.lx-ps-item span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.50);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}
.lx-ps-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  margin: 0 4px;
}

.lx-recruiters {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
}
.lx-recruiter-tile {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.80);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
  letter-spacing: -.01em;
}
.lx-recruiter-tile:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-2px);
}

/* ============================================================
   PROGRAM QUICK FACTS
   ============================================================ */
.lx-facts {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.lx-facts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.lx-fact-item {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
}
.lx-fact-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  margin: 0 auto 12px;
}
.lx-fact-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.lx-fact-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  margin-top: 5px;
  line-height: 1.4;
}
.lx-fact-divider {
  width: 1px;
  height: 52px;
  background: var(--slate-200);
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.lx-cta-outer {
  background: var(--slate-50);
  padding: 80px 32px;
}
.lx-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(150deg, #8b0000 0%, #c41e1e 40%, #1e293b 100%);
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
  overflow: hidden;
}
.lx-cta-noise {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.06), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(59,130,246,.12), transparent 28%);
  pointer-events: none;
}
.lx-cta-banner > *:not(.lx-cta-noise) { position: relative; z-index: 1; }

.lx-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lx-cta-h2 {
  font-size: clamp(26px,3.2vw,44px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--white);
}
.lx-cta-p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.70);
  max-width: 500px;
}
.lx-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.lx-cta-btn-white, .lx-cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 900;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: -.01em;
}
.lx-cta-btn-white {
  background: var(--white);
  color: #7f1d1d;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.lx-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.22); }
.lx-cta-btn-ghost {
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.lx-cta-btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }

/* Contact card */
.lx-contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.lx-contact-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.lx-contact-list { display: grid; gap: 4px; }
.lx-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  transition: background .18s;
  text-decoration: none;
  color: inherit;
}
a.lx-contact-row:hover { background: var(--slate-50); }
.lx-ci {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--red-soft);
  flex-shrink: 0;
}
.lx-contact-row div:last-child strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.01em;
}
.lx-contact-row div:last-child span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-500);
  margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lx-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 36px 32px;
}
.lx-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.lx-footer-brand { display: flex; align-items: center; }
.lx-footer-logo-pill {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.20);
}
.lx-footer-logo-img {
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.lx-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lx-footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.lx-footer-links a:hover { color: rgba(255,255,255,.90); }
.lx-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   FLOATING ACTION BUTTON
   ============================================================ */
.lx-fab {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-vivid), var(--red));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(185,28,28,.50);
  transition: transform .2s, opacity .3s;
  letter-spacing: -.01em;
}
.lx-fab:hover { transform: translateY(-2px); }
.lx-fab.lx-fab-visible { display: flex; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(220,38,38,.35), transparent 28%),
    linear-gradient(135deg, var(--dark), #7f1118);
}
.thankyou-card {
  width: min(720px,100%);
  padding: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.09);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.30);
  backdrop-filter: blur(20px);
}
.thankyou-logo { width: 280px; margin: 0 auto 28px; padding: 10px; border-radius: 18px; background: var(--white); }
.success-icon {
  display: grid; place-items: center;
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #16a34a;
  font-size: 40px; font-weight: 900;
}
.thankyou-card h1 { margin: 0; font-size: clamp(30px,5vw,52px); letter-spacing: -.05em; }
.thankyou-card > p { max-width: 540px; margin: 16px auto 0; color: rgba(255,255,255,.70); line-height: 1.75; font-size: 16px; }
.thankyou-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.solid-btn { display:inline-flex;align-items:center;justify-content:center;border-radius:999px;font-weight:900;background:linear-gradient(135deg,#ef3340,#b3121d);color:#fff;padding:14px 24px;box-shadow:0 16px 40px rgba(179,18,29,.34);transition:transform .2s; }
.solid-btn.large { padding:17px 28px;font-size:16px; }
.solid-btn:hover { transform:translateY(-3px); }
.whatsapp-btn,.ghost-btn { display:inline-flex;align-items:center;justify-content:center;border-radius:999px;font-weight:900;padding:14px 24px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.12);color:#fff;backdrop-filter:blur(16px);transition:transform .2s; }
.whatsapp-btn:hover,.ghost-btn:hover { transform:translateY(-3px); }

/* ============================================================
   ANCHOR SCROLL OFFSET (accounts for fixed nav)
   ============================================================ */
#apply, #top { scroll-margin-top: 72px; }

/* ============================================================
   TABLET  ≤ 1080px
   ============================================================ */
@media (max-width: 1080px) {
  .lx-hero-inner       { grid-template-columns: 1fr; }
  .lx-specs-grid       { grid-template-columns: repeat(2, 1fr); }
  .lx-why-inner        { grid-template-columns: 1fr; }
  .lx-placements-inner { grid-template-columns: 1fr; }
  .lx-recruiters       { grid-template-columns: repeat(5, 1fr); }
  .lx-cta-banner       { grid-template-columns: 1fr; gap: 32px; }
  .lx-footer-inner     { grid-template-columns: 1fr; gap: 20px; }
  .lx-footer-copy      { text-align: left; white-space: normal; }
}

/* ============================================================
   MOBILE  ≤ 768px  (most phones in landscape + small tablets)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .lx-nav              { padding: 10px 0; }
  .lx-nav-inner        { padding: 0 16px; }
  .lx-ghost-pill       { display: none; }
  .lx-logo-img         { height: 34px; max-width: 180px; }
  .lx-logo-pill        { padding: 6px 10px; border-radius: 14px; }
  .lx-white-pill       { padding: 9px 16px; font-size: 13px; }

  /* Hero */
  .lx-hero             { padding-top: 64px; }
  .lx-hero-inner       { padding: 20px 16px 48px; gap: 28px; }
  .lx-hero-trust       { gap: 6px; }
  .lx-hero-btns        { gap: 10px; }

  /* Sections — reduce vertical padding */
  .lx-why              { padding: 56px 0; }
  .lx-specs            { padding: 56px 0; }
  .lx-journey          { padding: 56px 0; }
  .lx-placements       { padding: 56px 0; }
  .lx-facts            { padding: 36px 0; }
  .lx-cta-outer        { padding: 48px 16px; }

  /* Section inner padding */
  .lx-why-inner,
  .lx-journey-inner,
  .lx-placements-inner,
  .lx-specs-inner      { padding: 0 16px; }
  .lx-facts-inner      { padding: 0 16px; flex-wrap: wrap; gap: 0; }

  /* Why highlights */
  .lx-highlights       { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lx-highlight-item   { padding: 12px; }
  .lx-highlight-item p { font-size: 12px; }

  /* Journey */
  .lx-journey-grid          { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lx-journey-grid::before  { display: none; }
  .lx-section-center        { margin-bottom: 32px; }

  /* Placements */
  .lx-recruiters       { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lx-recruiter-tile   { min-height: 60px; font-size: 12px; padding: 10px; border-radius: 14px; }
  .lx-placement-stats  { padding: 14px 16px; }

  /* Facts */
  .lx-fact-item        { flex: 0 0 50%; padding: 14px 12px; }
  .lx-fact-divider     { display: none; }

  /* CTA */
  .lx-cta-banner       { padding: 32px 24px; border-radius: 28px; gap: 28px; }

  /* Footer */
  .lx-footer           { padding: 28px 16px; }
  .lx-footer-inner     { gap: 16px; }
  .lx-footer-links     { gap: 14px; justify-content: flex-start; }
  .lx-footer-links a   { font-size: 12px; }

  /* FAB always visible on mobile */
  .lx-fab              { bottom: 16px; right: 16px; padding: 13px 18px; font-size: 13px; }
  .lx-fab.lx-fab-visible { display: flex; }
}

/* ============================================================
   PHONE  ≤ 540px  (portrait phones — 390px iPhone, 412px Android)
   ============================================================ */
@media (max-width: 540px) {
  /* Nav */
  .lx-logo-img         { height: 30px; max-width: 155px; }
  .lx-logo-pill        { padding: 5px 8px; border-radius: 12px; }
  .lx-white-pill       { padding: 8px 14px; font-size: 12px; }

  /* Hero copy */
  .lx-hero             { padding-top: 60px; }
  .lx-hero-inner       { padding: 16px 14px 40px; gap: 24px; }
  .lx-badge            { font-size: 11px; padding: 6px 12px; }
  .lx-h1               { font-size: clamp(30px, 8.5vw, 38px); letter-spacing: -0.05em; }
  .lx-hero-sub         { font-size: 14px; margin-top: 14px; }
  .lx-hero-trust       { gap: 5px; }
  .lx-trust-chip       { font-size: 11px; padding: 5px 10px; }
  .lx-hero-btns        { flex-direction: column; gap: 10px; margin-top: 20px; }
  .lx-btn-red-lg,
  .lx-btn-ghost-lg     { justify-content: center; width: 100%; padding: 16px 20px; font-size: 15px; min-height: 52px; }

  /* Stats */
  .lx-stats            { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
  .lx-stat             { padding: 12px 10px; border-radius: 14px; }
  .lx-stat-val         { font-size: 18px; }
  .lx-stat-lbl         { font-size: 10px; }

  /* Form card */
  .lx-card             { border-radius: 20px; }
  .lx-card-header      { padding: 18px 18px; }
  .lx-card-title       { font-size: 18px; }
  .lx-lead-form        { padding: 16px 14px 18px; }
  .lx-two-col          { grid-template-columns: 1fr; gap: 0; }
  .lx-field            { margin-bottom: 10px; }
  .lx-field label      { font-size: 11px; margin-bottom: 4px; }
  .field-input         { padding: 12px 12px; font-size: 16px; /* prevents iOS zoom */ border-radius: 10px; }
  .lx-consent          { font-size: 11px; padding: 10px; border-radius: 10px; }
  .lx-submit-btn       { padding: 16px; font-size: 15px; min-height: 52px; border-radius: 14px; }

  /* Sections */
  .lx-why              { padding: 48px 0; }
  .lx-specs            { padding: 48px 0; }
  .lx-journey          { padding: 48px 0; }
  .lx-placements       { padding: 48px 0; }
  .lx-cta-outer        { padding: 40px 14px; }

  .lx-why-inner,
  .lx-journey-inner,
  .lx-placements-inner,
  .lx-specs-inner      { padding: 0 14px; }
  .lx-section-center   { margin-bottom: 28px; }
  .lx-section-h2       { font-size: clamp(24px, 7vw, 34px); }
  .lx-section-p        { font-size: 14px; }

  /* Why highlights */
  .lx-highlights       { grid-template-columns: 1fr; gap: 8px; }

  /* Specs */
  .lx-specs-grid       { grid-template-columns: 1fr; gap: 12px; }
  .lx-spec-card        { padding: 20px 18px; border-radius: 20px; }

  /* Journey */
  .lx-journey-grid     { grid-template-columns: 1fr; gap: 12px; }
  .lx-journey-card     { padding: 20px 18px; border-radius: 20px; }

  /* Placements */
  .lx-placements-inner { gap: 32px; }
  .lx-recruiters       { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lx-placement-stats  { flex-direction: column; gap: 14px; padding: 16px; }
  .lx-ps-divider       { width: 48px; height: 1px; }

  /* Facts */
  .lx-facts            { padding: 32px 0; }
  .lx-facts-inner      { padding: 0 14px; }
  .lx-fact-item        { flex: 0 0 50%; padding: 12px 8px; }
  .lx-fact-val         { font-size: 15px; }
  .lx-fact-lbl         { font-size: 11px; }

  /* CTA */
  .lx-cta-banner       { padding: 28px 18px; border-radius: 22px; }
  .lx-cta-h2          { font-size: clamp(22px, 6vw, 32px); }
  .lx-cta-p           { font-size: 14px; }
  .lx-cta-btns        { flex-direction: column; gap: 10px; }
  .lx-cta-btn-white,
  .lx-cta-btn-ghost   { justify-content: center; padding: 14px 20px; min-height: 50px; }
  .lx-contact-card     { padding: 20px 16px; border-radius: 18px; }
  .lx-contact-card h3  { font-size: 16px; margin-bottom: 14px; }

  /* Footer */
  .lx-footer           { padding: 24px 14px; }
  .lx-footer-logo-img  { height: 28px; }
  .lx-footer-links     { flex-direction: column; gap: 10px; align-items: flex-start; }
  .lx-footer-copy      { font-size: 11px; }

  /* FAB */
  .lx-fab              { bottom: 14px; right: 14px; }
}

/* ============================================================
   SMALL PHONE  ≤ 390px  (common Indian Android: Redmi, Samsung)
   ============================================================ */
@media (max-width: 390px) {
  .lx-logo-img         { height: 26px; max-width: 135px; }
  .lx-logo-pill        { padding: 5px 7px; }
  .lx-h1               { font-size: 28px; }
  .lx-hero-inner       { padding: 14px 12px 36px; }
  .lx-card-title       { font-size: 16px; }
  .lx-lead-form        { padding: 14px 12px 16px; }
  .lx-stats            { gap: 6px; }
  .lx-stat-val         { font-size: 16px; }
  .lx-section-h2       { font-size: 24px; }
  .lx-cta-banner       { padding: 24px 14px; }
  .lx-recruiters       { grid-template-columns: repeat(2, 1fr); }
  .lx-specs-grid,
  .lx-journey-grid     { gap: 10px; }
  .lx-fact-item        { flex: 0 0 100%; }
}
