/* ============================
   MEDHAS ACADEMY — PREMIUM CSS
   Colors: #013570 (Navy) + #d09517 (Gold)
   ============================ */

/* === VARIABLES === */
:root {
  /* Brand Colors */
  --navy: #013570;
  --navy-dark: #012459;
  --navy-light: #01469e;
  --navy-50: #e6edf7;
  --navy-100: #c0d1ea;
  --navy-200: #94b0d9;

  --gold: #d09517;
  --gold-dark: #a87610;
  --gold-light: #e8aa2a;
  --gold-50: #fdf6e3;
  --gold-100: #f9e8b3;
  --gold-200: #f3d06a;

  /* Neutrals */
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Semantic */
  --red-500: #ef4444;
  --emerald-500: #10b981;
  --amber-500: #f59e0b;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #013570 0%, #01469e 100%);
  --grad-gold: linear-gradient(135deg, #d09517 0%, #e8aa2a 100%);
  --grad-mixed: linear-gradient(135deg, #013570 0%, #01469e 60%, #d09517 100%);
  --grad-hero: linear-gradient(135deg, #e6edf7 0%, #c0d1ea 40%, #fdf6e3 100%);
  --grad-hero2: linear-gradient(160deg, #e8f0fb 0%, #d0e0f5 50%, #fdf3d6 100%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, .14);
  --shadow-navy: 0 8px 32px rgba(1, 53, 112, .35);
  --shadow-gold: 0 8px 32px rgba(208, 149, 23, .4);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Fonts */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--grad-gold);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--slate-800);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* === SECTION LABELS === */
.section-tag {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(1, 53, 112, .08);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-family: var(--font-head);
  border: 1px solid rgba(1, 53, 112, .15);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  transition: all .3s ease;
  border-radius: var(--radius-full);
  text-align: center;
}

.btn-primary-nav {
  background: var(--grad-primary);
  color: var(--white);
  padding: .6rem 1.4rem;
  font-size: .9rem;
  box-shadow: var(--shadow-navy);
}

.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(1, 53, 112, .5);
}

.btn-outline-nav {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: .6rem 1.4rem;
  font-size: .9rem;
}

.btn-outline-nav:hover {
  background: var(--navy-50);
}

.btn-hero-primary {
  background: var(--grad-primary);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-navy);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(1, 53, 112, .5);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  padding: 1rem 1.8rem;
  font-size: 1rem;
  border: 1.5px solid rgba(1, 53, 112, .25);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-hero-ghost:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-prog {
  background: var(--grad-primary);
  color: var(--white);
  padding: .7rem 1.5rem;
  font-size: .9rem;
}

.btn-prog:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.btn-prog-cyber {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 6px 20px rgba(239, 68, 68, .3);
}

.btn-prog-cyber:hover {
  box-shadow: 0 10px 30px rgba(239, 68, 68, .45);
}

.btn-prog-legal {
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}

.btn-prog-legal:hover {
  box-shadow: 0 10px 30px rgba(208, 149, 23, .55);
}

.btn-prog-corp {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 6px 20px rgba(16, 185, 129, .3);
}

.btn-prog-corp:hover {
  box-shadow: 0 10px 30px rgba(16, 185, 129, .45);
}

.btn-faq-cta {
  background: var(--grad-gold);
  color: var(--white);
  padding: .85rem 1.8rem;
  font-size: .95rem;
  margin-top: 1.5rem;
  display: inline-block;
  box-shadow: var(--shadow-gold);
}

.btn-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(208, 149, 23, .55);
}

.btn-form-submit {
  background: var(--grad-primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-navy);
  margin-top: .5rem;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(1, 53, 112, .5);
}

/* ==========================
   NAVBAR
   ========================== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1, 53, 112, .08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
  transition: all .3s;
}

.navbar.scrolled {
  padding: .9rem 5%;
  background: rgba(255, 255, 255, .98);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 82px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
}

/* Mobile nav logo image */
.mob-logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}


/* ==========================
   HERO
   ========================== */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 70, 158, .25), rgba(208, 149, 23, .1));
  top: -150px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(208, 149, 23, .2), transparent);
  bottom: -50px;
  left: 5%;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.08);
  }
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  max-width: 580px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(1, 53, 112, .2);
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  font-size: .825rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
  backdrop-filter: blur(8px);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-head);
}

.stat span {
  font-size: .8rem;
  color: var(--slate-500);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(1, 53, 112, .2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  flex: 1;
  position: relative;
}

.hero-cards-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.hcard {
  position: absolute;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 240px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.hcard:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-xl);
}

.hcard-ai {
  top: 0;
  left: 20px;
  animation: floatA 5s ease-in-out infinite;
}

.hcard-cyber {
  top: 110px;
  right: 0;
  animation: floatB 6s ease-in-out infinite;
}

.hcard-legal {
  top: 240px;
  left: 10px;
  animation: floatA 7s ease-in-out infinite;
}

.hcard-corp {
  top: 360px;
  right: 20px;
  animation: floatB 5.5s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.hcard-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hcard-ai .hcard-icon {
  background: rgba(1, 53, 112, .1);
  color: var(--navy);
}

.hcard-cyber .hcard-icon {
  background: #fee2e2;
  color: #dc2626;
}

.hcard-legal .hcard-icon {
  background: rgba(208, 149, 23, .12);
  color: var(--gold-dark);
}

.hcard-corp .hcard-icon {
  background: #dcfce7;
  color: #059669;
}

.hcard-text h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--navy);
}

.hcard-text p {
  font-size: .75rem;
  color: var(--slate-500);
}

.hcard-badge {
  margin-left: auto;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  background: var(--grad-primary);
  color: var(--white);
  font-family: var(--font-head);
}

.hcard-corp .hcard-badge {
  background: linear-gradient(135deg, #10b981, #059669);
}

.hcard-legal .hcard-badge {
  background: var(--grad-gold);
}

.hero-floater {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius-full);
  padding: .5rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
}

.floater-1 {
  bottom: 80px;
  left: -20px;
  animation: floatA 4s ease-in-out infinite;
}

.floater-2 {
  top: 40px;
  right: -10px;
  animation: floatB 5s ease-in-out infinite;
}

.floater-1 i,
.floater-2 i {
  color: var(--gold);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ==========================
   ABOUT
   ========================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
}

.about-main-img {
  border-radius: var(--radius-md);
}

.about-img-bg {
  position: absolute;
  background: var(--grad-hero);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
}

.about-main-icon {
  font-size: 7rem;
  color: rgba(1, 53, 112, .12);
}

.about-img-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.about-img-card i {
  font-size: 1.5rem;
  color: var(--gold);
}

.about-img-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--navy);
}

.about-img-card span {
  font-size: .75rem;
  color: var(--slate-500);
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-body {
  color: var(--slate-600);
  margin-bottom: 2.5rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--slate-200);
  transition: all .3s;
}

.pillar:hover {
  background: var(--navy-50);
  border-color: var(--navy-100);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar h5 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--navy);
}

.pillar p {
  font-size: .78rem;
  color: var(--slate-500);
}

/* ==========================
   PROGRAMS
   ========================== */
.programs {
  background: var(--slate-50);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}

.prog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.prog-card-wide {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.prog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  width: 100%;
}

.prog-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.prog-ai .prog-icon-wrap {
  background: rgba(1, 53, 112, .1);
  color: var(--navy);
}

.prog-cyber .prog-icon-wrap {
  background: #fee2e2;
  color: #dc2626;
}

.prog-legal .prog-icon-wrap {
  background: rgba(208, 149, 23, .12);
  color: var(--gold-dark);
}

.prog-corp .prog-icon-wrap {
  background: #dcfce7;
  color: #059669;
}

.prog-tag {
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  background: var(--navy-50);
  color: var(--navy);
  font-family: var(--font-head);
  text-transform: uppercase;
}

.prog-tag-alt {
  background: #fee2e2;
  color: #dc2626;
}

.prog-tag-legal {
  background: var(--gold-50);
  color: var(--gold-dark);
}

.prog-tag-corp {
  background: #dcfce7;
  color: #059669;
}

.prog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--navy);
}

.prog-card>p {
  font-size: .9rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  flex: 1;
}

.prog-features {
  margin-bottom: 2rem;
  flex: 1;
}

.prog-features li {
  font-size: .85rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--slate-100);
}

.prog-features li:last-child {
  border: none;
}

.prog-features i {
  color: var(--gold);
  font-size: .75rem;
}

.prog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
}

.prog-duration {
  font-size: .82rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.prog-duration i {
  color: var(--navy-light);
}

.corp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.corp-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}

.corp-feat i {
  font-size: 1.4rem;
  color: var(--gold);
}

/* ==========================
   WHO CAN JOIN
   ========================== */
.who {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: all .35s ease;
  cursor: default;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-100);
}

.who-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.who-graduate {
  background: rgba(1, 53, 112, .1);
  color: var(--navy);
}

.who-professional {
  background: rgba(208, 149, 23, .12);
  color: var(--gold-dark);
}

.who-corp {
  background: #dcfce7;
  color: #059669;
}

.who-lawyer {
  background: rgba(1, 53, 112, .08);
  color: var(--navy-light);
}

.who-switcher {
  background: #fee2e2;
  color: #dc2626;
}

.who-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--navy);
}

.who-card p {
  font-size: .82rem;
  color: var(--slate-600);
}

/* ==========================
   TESTIMONIALS
   ========================== */
.testimonials {
  background: var(--grad-hero2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.tcard {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, .7);
  position: relative;
  transition: all .35s ease;
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.tcard-featured {
  background: var(--grad-primary);
  color: var(--white);
  transform: scale(1.03);
}

.tcard-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.tcard-featured h5,
.tcard-featured span,
.tcard-featured p {
  color: rgba(255, 255, 255, .95) !important;
}

.tcard-featured .tcard-stars i {
  color: var(--gold-light);
}

.tcard-featured .tcard-quote {
  color: rgba(255, 255, 255, .15);
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tcard-stars i {
  color: var(--gold);
  font-size: .9rem;
}

.tcard-quote {
  font-size: 2.5rem;
  color: var(--navy-100);
}

.tcard>p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--slate-600);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.tcard-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.av1 {
  background: var(--grad-primary);
}

.av2 {
  background: var(--grad-gold);
}

.av3 {
  background: linear-gradient(135deg, #013570, #d09517);
}

.tcard-author h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}

.tcard-author span {
  font-size: .75rem;
  color: var(--slate-500);
}

/* ==========================
   FAQ
   ========================== */
.faq {
  background: var(--white);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.faq-left .section-title {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.faq-left p {
  color: var(--slate-600);
  font-size: .95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item.active {
  border-color: var(--navy-200);
  box-shadow: 0 2px 12px rgba(1, 53, 112, .1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--slate-800);
  text-align: left;
  gap: 1rem;
}

.faq-q:hover {
  background: var(--slate-50);
}

.faq-item.active .faq-q {
  background: var(--navy-50);
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--gold);
  transition: transform .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--navy);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem;
  color: var(--slate-600);
}

/* ==========================
   CONTACT
   ========================== */
.contact {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(1, 53, 112, .07);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  font-size: 2.1rem;
}

.contact-title {
  margin-bottom: 1rem;
}

.contact-info>p {
  font-size: .95rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.c-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.c-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-navy);
}

.c-method h5 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--navy);
}

.c-method span {
  font-size: .82rem;
  color: var(--slate-600);
}

.contact-social {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.soc-btn:hover {
  background: var(--grad-gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--gold);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: .35rem;
  color: var(--navy);
}

.form-sub {
  font-size: .875rem;
  color: var(--slate-500);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 1rem;
  color: var(--slate-400);
  font-size: .9rem;
  pointer-events: none;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: .85rem 1rem .85rem 2.7rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--slate-700);
  background: var(--slate-50);
  outline: none;
  transition: all .3s;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 53, 112, .1);
}

.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--slate-700);
  background: var(--slate-50);
  outline: none;
  transition: all .3s;
  resize: vertical;
}

.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 53, 112, .1);
}

/* Intl-tel-input overrides to match design exactly */
.phone-wrap .iti {
  width: 100%;
  display: block;
}

.phone-wrap .iti__tel-input,
.phone-wrap .iti input {
  width: 100% !important;
  padding-top: .85rem !important;
  padding-bottom: .85rem !important;
  padding-right: 1rem !important;
  /* Do NOT override padding-left; let intl-tel-input calculate dynamic flag/dial-code space */
  border: 1.5px solid var(--slate-200) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
  line-height: inherit !important;
  color: var(--slate-700) !important;
  background: var(--slate-50) !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all .3s !important;
  margin: 0 !important;
}

.phone-wrap .iti__tel-input:focus,
.phone-wrap .iti input:focus {
  border-color: var(--navy) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(1, 53, 112, .1) !important;
}

.phone-wrap .iti__flag-container {
  padding: 0 !important;
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
}

.phone-wrap .iti__selected-flag {
  background-color: transparent !important;
  padding: 0 10px 0 16px !important;
  /* Alignment matching the other left-icons */
}

.phone-wrap .iti__selected-flag:hover,
.phone-wrap .iti__selected-flag:focus {
  background-color: transparent !important;
}

.phone-wrap .iti__selected-dial-code {
  color: var(--slate-700) !important;
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
}

.phone-wrap .iti__country-list {
  border: 1.5px solid var(--slate-200) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: var(--font-body) !important;
  font-size: .85rem !important;
  margin-top: 6px !important;
}

.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--slate-400);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn .5s ease;
}

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success h4 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--navy);
}

.form-success p {
  color: var(--slate-600);
}

/* ==========================
   FOOTER
   ========================== */
.footer {
  background: var(--navy-dark);
  color: #94a3b8;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-brand .footer-logo strong {
  color: var(--gold-light);
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .07);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links-col h5 {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links-col ul li {
  margin-bottom: .75rem;
}

.footer-links-col ul li a {
  font-size: .875rem;
  color: #94a3b8;
  transition: color .3s;
}

.footer-links-col ul li a:hover {
  color: var(--gold-light);
}

.footer-newsletter-col h5 {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-newsletter-col p {
  font-size: .875rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.newsletter-wrap {
  display: flex;
  gap: .5rem;
}

.newsletter-wrap input {
  flex: 1;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
  transition: all .3s;
}

.newsletter-wrap input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .1);
}

.newsletter-wrap button {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--grad-gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .3s;
  box-shadow: var(--shadow-gold);
}

.newsletter-wrap button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(208, 149, 23, .5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #64748b;
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ==========================
   ANIMATIONS
   ========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn .6s ease forwards;
}

/* ==========================
   MOBILE NAV OVERLAY
   ========================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  animation: navSlideIn .3s ease;
}

.mobile-nav.open {
  display: flex;
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  padding: .75rem 2rem;
  border-radius: var(--radius-full);
  transition: all .25s;
  width: 100%;
  text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, .07);
}

.mobile-nav .mob-cta {
  background: var(--grad-gold);
  color: var(--white) !important;
  margin-top: 1rem;
  box-shadow: var(--shadow-gold);
}

.mob-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background .3s;
}

.mob-close-btn:hover {
  background: rgba(255, 255, 255, .2);
}

.mob-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.mob-logo strong {
  color: var(--gold-light);
}

.mob-logo i {
  font-size: .9rem;
}

/* ==========================
   RESPONSIVE — TABLET (≤1100px)
   ========================== */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 3rem;
  }

  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prog-card-wide {
    grid-column: 1 / -1;
  }
}

/* ==========================
   RESPONSIVE — TABLET (≤900px)
   ========================== */
@media (max-width: 900px) {

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-50);
    border: 1.5px solid var(--navy-100);
    color: var(--navy);
  }

  /* Hero */
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding-top: 1rem;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
  }

  .hero-cards-wrapper {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: unset;
  }

  .hcard {
    position: static;
    animation: none;
    transform: none !important;
    min-width: unset;
  }

  .hero-floater {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrapper {
    padding-bottom: 0;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .prog-card-wide {
    flex-direction: column;
  }

  .corp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Who */
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tcard-featured {
    transform: none;
  }

  /* FAQ */
  .faq-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ==========================
   RESPONSIVE — TABLET/MOBILE (≤768px)
   ========================== */
@media (max-width: 768px) {
  .hero {
    padding: 8.5rem 0 3rem;
  }
}

/* ==========================
   RESPONSIVE — MOBILE (≤600px)
   ========================== */
@media (max-width: 600px) {
  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: .95rem;
  }

  .section-tag {
    font-size: .72rem;
  }

  /* Navbar */
  .navbar {
    padding: 1rem 1.1rem;
  }

  .nav-logo {
    font-size: 1.05rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: .82rem;
    border-radius: 8px;
  }

  /* Hero */
  .hero {
    padding: 8rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: .95rem;
  }

  .hero-pill {
    font-size: .73rem;
  }

  .hero-stats {
    gap: .75rem;
    flex-wrap: wrap;
  }

  .stat strong {
    font-size: 1.3rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: .75rem;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .hero-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .hcard {
    width: 100%;
  }

  .hcard-badge {
    display: none;
  }

  /* About */
  .about-img-wrapper {
    padding-bottom: 0;
  }

  .about-img-card {
    bottom: -12px;
    right: 0;
    padding: .7rem .9rem;
  }

  .about-img-card i {
    font-size: 1rem;
  }

  .about-img-card strong {
    font-size: .82rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-lead {
    font-size: 1rem;
  }

  /* Programs */
  .prog-card {
    padding: 1.6rem;
  }

  .prog-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 14px;
  }

  .corp-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }

  .corp-feat {
    padding: .75rem;
    font-size: .75rem;
  }

  /* Who Can Join — horizontal card style */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .who-card {
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .who-icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .who-card h4 {
    font-size: .95rem;
    margin-bottom: .2rem;
  }

  .who-card p {
    font-size: .8rem;
  }

  /* Testimonials */
  .tcard {
    padding: 1.6rem;
  }

  .tcard-quote {
    font-size: 2rem;
  }

  /* FAQ */
  .faq-q {
    font-size: .88rem;
    padding: 1rem 1.1rem;
  }

  .faq-a p {
    padding: 0 1.1rem 1rem;
  }

  /* Contact */
  .contact-form-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .c-method {
    gap: .75rem;
  }

  .c-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: .9rem;
  }

  .contact-social {
    flex-wrap: wrap;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
  }
}

/* ==========================
   RESPONSIVE — XS (≤380px)
   ========================== */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .corp-features-grid {
    grid-template-columns: 1fr;
  }

  .hero-pill {
    display: none;
  }

  .prog-card {
    padding: 1.25rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }
}

/* ==========================
   BROCHURE MODAL
   ========================== */
.brochure-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.brochure-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.brochure-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brochure-modal-overlay.open .brochure-modal-content {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(1, 53, 112, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}
/* ========================== 
   APPLICATION FORM PREMIUM UI 
   ========================== */
#applicationModalContent {
  max-width: 800px;
}

.modal-header-accent {
  width: 60px;
  height: 4px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin: 2rem 0 1.25rem;
  width: 100%;
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--slate-100);
}

.form-section-title.accent-ai { color: var(--navy-light); }
.form-section-title.accent-ai::after { background: var(--navy-100); }

.form-section-title.accent-cyber { color: #dc2626; }
.form-section-title.accent-cyber::after { background: #fee2e2; }

.form-section-title.accent-legal { color: var(--gold-dark); }
.form-section-title.accent-legal::after { background: var(--gold-100); }

.dynamic-program-fields {
  display: none;
  animation: fadeIn 0.4s ease;
}

.dynamic-program-fields.active {
  display: block;
}

@media (max-width: 768px) {
  #applicationModalContent {
    padding: 2rem 1.25rem;
  }
  
  .form-section-title {
    margin: 1.5rem 0 1rem;
  }
}
ding: 1.5rem 1rem;
  }
}
