/* ===== TOKENS ===== */
:root {
  --bg: #07080e;
  --bg-2: #0c0e1c;
  --bg-3: #0a0c16;
  --card: rgba(255, 255, 255, 0.03);
  --card-h: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.07);
  --border-h: rgba(255, 255, 255, 0.14);
  --border-a: rgba(124, 58, 237, 0.3);
  --text: #f1f5f9;
  --text-2: rgba(241, 245, 249, 0.62);
  --text-3: rgba(241, 245, 249, 0.36);
  --violet: #7c3aed;
  --violet-2: #4f46e5;
  --v-soft: rgba(124, 58, 237, 0.12);
  --gold: #f59e0b;
  --g-soft: rgba(245, 158, 11, 0.1);
  --green: #10b981;
  --r-s: 10px;
  --r: 16px;
  --r-l: 24px;
  --r-xl: 32px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4 {
  line-height: 1.1;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== LAYOUT ===== */
.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--v-soft);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #c4b5fd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  flex-shrink: 0;
}
.gradient-text {
  background: linear-gradient(130deg, #c4b5fd 0%, #a5b4fc 45%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-num {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.36);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(124, 58, 237, 0.46);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-h);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-a);
  color: var(--text);
}
.btn-lg {
  height: 58px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: var(--r-l);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAV ===== */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}
.nav-wrap.stuck {
  background: rgba(7, 8, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: 10px;
  cursor: pointer;
  gap: 5px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: 120px 0 80px;
}
/* dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(124, 58, 237, 0.14) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.orb-1 {
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 580px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.13) 0%,
    transparent 68%
  );
}
.orb-2 {
  bottom: -120px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    ellipse,
    rgba(79, 70, 229, 0.09) 0%,
    transparent 70%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 30px;
}
.pulse {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.3);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .gradient-text {
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-colleges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hc-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.hc-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== INSTITUTIONS ===== */
.inst-section {
  background: var(--bg-2);
}
.college-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.c-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-a);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 58, 237, 0.1);
}
.c-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-card:hover .c-img img {
  transform: scale(1.07);
}
.c-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(7, 8, 14, 0.88) 100%
  );
}
.c-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(124, 58, 237, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}
.c-info {
  padding: 18px 20px 22px;
}
.c-info strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.c-info span {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(to right, #0b0d1c, #0e1030, #0b0d1c);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* still 4 items */
}
.s-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.s-item:last-child {
  border-right: none;
}
.s-num {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.s-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

/* ===== PROGRAMS ===== */
.prog-section {
  background: var(--bg);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.p-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.p-card:hover {
  background: var(--card-h);
  border-color: var(--border-a);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}
.p-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2),
    rgba(79, 70, 229, 0.12)
  );
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.p-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.p-card > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.p-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.5;
}
.p-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23a78bfa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 1px;
}
.p-dur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--g-soft);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #d97706;
}

/* ===== WHY ===== */
.why-section {
  background: var(--bg-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.w-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px 24px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.w-card:hover {
  background: var(--card-h);
  border-color: rgba(124, 58, 237, 0.18);
}
.w-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-s);
  background: var(--g-soft);
  border: 1px solid rgba(245, 158, 11, 0.16);
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}
.w-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.w-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: var(--bg);
}
.testi-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.testi-meta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 24px;
  min-width: 240px;
}
.testi-meta small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.testi-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 18px;
}
.testi-nums {
  display: flex;
  gap: 20px;
}
.testi-nums b {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}
.testi-nums p {
  font-size: 11px;
  color: var(--text-3);
  margin: 4px 0 0;
}

.vid-card {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  margin-bottom: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--g-soft);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #d97706;
  margin-bottom: 16px;
}
.vid-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.vid-card > div > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.vid-tags span {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}
.vid-proof {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.vid-proof strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #a78bfa;
}
.vid-proof span {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.vid-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #a78bfa;
  transition: color 0.15s;
}
.vid-link:hover {
  color: #c4b5fd;
}
.vid-frame {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 360px;
}
.vid-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.quotes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.q-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.q-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--v-soft);
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
}
.q-card p {
  flex: 1;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.q-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.q-person img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.q-person strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.q-person span {
  font-size: 12px;
  color: var(--text-3);
}

/* ===== INQUIRY ===== */
.inquiry-section {
  background: var(--bg-2);
}
.inquiry-split {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: start;
}
.inq-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.inq-copy > p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 26px;
}
.inq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.inq-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.inq-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #34d399;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.inq-direct a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #a78bfa;
  padding: 10px 0;
  transition: color 0.15s;
}
.inq-direct a:hover {
  color: #c4b5fd;
}
.form-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 26px;
}
.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.fd {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.fd:last-of-type {
  margin-bottom: 0;
}
.fg .fd {
  margin-bottom: 0;
}
.fd label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fd input,
.fd select,
.fd textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-s);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}
.fd select {
  cursor: pointer;
}
.fd input::placeholder,
.fd textarea::placeholder {
  color: var(--text-3);
}
.fd input:focus,
.fd select:focus,
.fd textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.fd textarea {
  resize: vertical;
  min-height: 88px;
}
.fd option {
  background: #0e1028;
  color: var(--text);
}
.form-row-btn {
  margin-top: 22px;
}
.form-hint {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.65;
}
.form-hint a {
  color: #a78bfa;
  font-weight: 600;
}
.success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
}
.success-box.show {
  display: flex;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.success-box h3 {
  font-size: 20px;
  color: var(--text);
}
.success-box p {
  font-size: 14px;
  color: var(--text-2);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg);
}
.faq-section .section-heading {
  max-width: 640px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(124, 58, 237, 0.22);
}
.faq-item button {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.faq-ico::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #a78bfa;
  border-bottom: 2px solid #a78bfa;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-ico {
  background: var(--v-soft);
  border-color: rgba(124, 58, 237, 0.26);
}
.faq-item.open .faq-ico::after {
  transform: rotate(225deg) translateY(-2px);
}
.faq-ans {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-item.open .faq-ans {
  display: block;
}

/* ===== TRAINING PROGRAM ===== */
.curr-section {
  background: var(--bg-3);
}
.prog-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}
.prog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.prog-item:last-child {
  border-bottom: 1px solid var(--border);
}
.prog-item:hover {
  background: rgba(124, 58, 237, 0.03);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.prog-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.prog-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  min-width: 80px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.25) 0%,
    rgba(79, 70, 229, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}
.prog-item:hover .prog-num {
  opacity: 1;
}
.prog-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.prog-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prog-tags span {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.prog-item:hover .prog-tags span {
  border-color: rgba(124, 58, 237, 0.22);
  color: var(--text);
  background: rgba(124, 58, 237, 0.06);
}
@media (max-width: 760px) {
  .prog-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prog-item:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .prog-num {
    font-size: 44px;
    min-width: 56px;
  }
}

.tech-cloud-wrap {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.tc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tech-cloud span {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.tech-cloud span:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  background: #050608;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.f-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.f-brand-block img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.f-brand-block p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 240px;
}
.f-socials {
  display: flex;
  gap: 8px;
}
.f-soc {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.f-soc:hover {
  background: var(--card-h);
  border-color: var(--border-h);
}
.f-soc img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.f-nav-block h4,
.f-contact-block h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.f-nav-block a,
.f-contact-block a {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.4);
  transition: color 0.15s;
}
.f-nav-block a:hover,
.f-contact-block a:hover {
  color: var(--text);
}
.f-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0 28px;
}
.f-bar > span {
  font-size: 12px;
  color: var(--text-3);
}
.f-policies {
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-policies button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  color: rgba(241, 245, 249, 0.35);
  transition: color 0.15s;
}
.f-policies button:hover {
  color: var(--text);
}
.f-policies span {
  font-size: 12px;
  color: var(--text-3);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: #0e1028;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.15s;
}
.modal-close:hover {
  background: var(--card-h);
}
.modal-box h2 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 14px;
}
.modal-box p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== MOBILE STICKY ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 9, 20, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar div p {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.sticky-bar div span {
  font-size: 11px;
  color: var(--text-3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .college-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inquiry-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vid-card {
    grid-template-columns: 1fr;
  }
  .vid-frame {
    aspect-ratio: 16/9;
    max-height: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .burger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 8, 14, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .prog-grid {
    grid-template-columns: 1fr;
  }
  .quotes-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .s-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .s-item:last-child,
  .s-item:nth-last-child(2) {
    border-bottom: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }
  .testi-header {
    grid-template-columns: 1fr;
  }
  .f-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .f-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-bar {
    display: flex;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .college-grid {
    grid-template-columns: 1fr;
  }
  .quotes-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
  .form-box {
    padding: 24px 18px;
  }
  .fg {
    grid-template-columns: 1fr;
  }
  .vid-card {
    padding: 24px 20px;
  }
}
