*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #091F8E;
  --navy-dark: #002B5B;
  --gold: #C5A800;
  --gold-btn: #C5A800;
  --gold-light: #f5eed6;
  --cream: #FDF9E5;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-bg: #f3f5f8;
  --gray: #484E6D;
  --gray-light: #7B7979;
  --text: #484E6D;
  --border: #e0e4ed;
  --teal: #1a7a7a;
  --green-check: #2e7d32;
  --yellow-tag: #C5A800;
  --page-pad: 130px;
  --section-gap: 120px;
  --mobile-pad: 24px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* NAV — Figma 563:4594 exact replica */
nav {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1.33px solid #F5F5F5;
  box-shadow: none;
}
.nav-toggle-checkbox { display: none; }
.nav-bar {
  display: flex;
  align-items: center;
  gap: 102.67px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 8px var(--page-pad);
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 56px;
}
.nav-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-logo-text {
  color: #091F8E;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #091F8E;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
}
.nav-links a.active {
  border-bottom-color: #091F8E;
}
.nav-links a:hover { opacity: 0.75; }
.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #091F8E;
  margin-top: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #C5A800;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 10.67px 16px;
  border-radius: 132px;
  white-space: nowrap;
  min-height: 44px;
}
.nav-cta:hover { opacity: 0.92; }
.nav-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-toggle-icon {
  display: block;
  width: 24px;
  height: 14px;
}

/* HERO — Figma 563:3819 */
.hero {
  background: #fff;
  display: grid; grid-template-columns: 1fr 794.9px;
  padding: 48px var(--page-pad);
  gap: 24px; align-items: center;
  margin-top: 0;
}
.hero-content {
  display: flex; flex-direction: column; gap: 31.96px;
  width: 100%; max-width: 814.87px;
}
/* Figma: tag + headline share one column group */
.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; justify-content: center;
  background: #E5F3FF; border: none;
  color: #091F8E; font-size: 18px; font-weight: 600; letter-spacing: 0;
  text-transform: uppercase; padding: 13.31px; border-radius: 1330px;
  margin: 0; height: 38.61px;
  width: fit-content;
  align-self: flex-start;
}
.hero h1 {
  font-size: 64px; font-weight: 800; color: #091F8E;
  line-height: 90px;
  text-transform: uppercase; margin: 0;
}
.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 500; line-height: 42.61px; letter-spacing: 0%;
  color: #484E6D; margin-bottom: 0;
}
.hero-desc strong {
  font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 700; line-height: 42.61px; letter-spacing: 0%;
  color: #484E6D;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; width: 100%; max-width: 708.35px; }
.btn-gold-solid {
  background: #C5A800; color: #fff; font-size: 22px; font-weight: 600;
  padding: 14px 28px; border-radius: 999px; display: inline-flex;
  align-items: center; justify-content: center; gap: 10px;
  border: 2px solid #C5A800; text-decoration: none;
  line-height: 1.3; white-space: nowrap;
}
.btn-outline-navy {
  border: 2px solid #C5A800; color: #C5A800; font-size: 22px; font-weight: 600;
  padding: 14px 28px; border-radius: 999px; display: inline-flex;
  align-items: center; justify-content: center; gap: 10px;
  background: #fff; text-decoration: none;
  line-height: 1.3; white-space: nowrap;
}
.btn-outline-navy:hover { background: #C5A800; color: #fff; }

/* Hero right — Figma 563:3829 */
.hero-right {
  position: relative;
  width: 794.9px;
  height: 595.17px;
  flex-shrink: 0;
}
.hero-frame {
  display: none;
}
.hero-img-wrap {
  position: absolute;
  top: 17.98px;
  left: 106.47px;
  width: 687.45px;
  height: 504.63px;
  border-radius: 15.98px;
  border: 5.33px solid #C5A800;
  overflow: hidden;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-wrap-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c8d8e8 0%, #a0b8cc 100%);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.hero-badge {
  position: absolute;
  top: 463px;
  left: 0.04px;
  width: 310px;
  height: 91px;
  background: #fff;
  border-radius: 21.3px;
  border: 2.66px solid #C5A800;
  padding: 13.31px;
  box-shadow: none;
  display: flex; align-items: center; justify-content: center; gap: 13.31px;
  z-index: 2;
}
.hero-badge-check {
  flex-shrink: 0; width: 29.29px; height: 29.29px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-badge-check img { width: 29.29px; height: 29.29px; display: block; object-fit: contain; }
.hero-badge-text strong {
  font-size: 24px; color: #091F8E; font-weight: 600; display: block; line-height: 1.82em;
}
.hero-badge-text span {
  font-size: 20px; color: #091F8E; font-weight: 500; line-height: 1.82em;
}
/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin: 0;
  padding: 40px var(--page-pad);
}
.stat-item {
  width: 100%;
  max-width: none;
  min-height: 88px;
  height: auto;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  box-sizing: border-box;
}
.stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #C5A800;
}
.stat-icon i,
.stat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.stat-icon i { font-size: 28px; line-height: 1; color: #C5A800; }
.stat-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
}
.stat-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #7B7979;
  margin: 0;
}


/* PHILOSOPHY */
.philosophy {
  background: #FDF9E5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: 80px var(--page-pad);
}
.philosophy-left {
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.philosophy-img-wrap {
  position: relative;
  top: 29.96px;
  width: min(100%, 684.38px);
  height: auto;
  aspect-ratio: 684.38 / 655.09;
  border-radius: 31.96px;
  border: 5.33px solid #C5A800;
  overflow: hidden;
  flex-shrink: 0;
}
.philosophy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.philosophy-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a3d62 0%, #1e6fa5 100%);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 64px;
}
.philosophy-dots {
  position: absolute; right: 0; bottom: 40px;
  width: 80px; height: 60px;
  background-image: radial-gradient(circle, #C5A800 1.5px, transparent 1.5px);
  background-size: 10px 10px; opacity: .5;
}
.philosophy-right {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  max-width: 640px;
}
.eyebrow { font-size: 16px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #C5A800; margin-bottom: 12px; }
.philosophy-right h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #091F8E;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.philosophy-right p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #484E6D;
  line-height: 1.6;
  margin: 0 0 40px;
}
.philo-list { list-style: none; display: flex; flex-direction: column; gap: 28px; margin: 0; padding: 0; }
.philo-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 600; line-height: 1.45; letter-spacing: 0;
  color: #002B5B;
}
.philo-check {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
}
.philo-check-inner {
  position: absolute;
  top: 1px; left: 1px;
  width: 20px; height: 20px;
  background: #002B5B;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.philo-check-inner svg { width: 11px; height: 11px; }

/* JOURNEY */
.journey {
  background: #002B5B;
  width: 100%;
  min-height: 580px;
  padding: 60px var(--page-pad);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; text-align: center;
}
.journey .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 800; line-height: 150%; letter-spacing: 0%;
  color: #C5A800; margin-bottom: 0; text-transform: uppercase;
}
.journey h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px; font-weight: 700; line-height: 121%; letter-spacing: 0%;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 0;
}
.journey h2::before, .journey h2::after {
  content: ''; flex: 0 0 100px; height: 2px; background: #C5A800; display: block;
}
.journey-sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 400; line-height: 150%; letter-spacing: 0%;
  color: #EBE9E9; margin-bottom: 40px;
}

/* Steps container — width:1240, height:148 */
.journey-steps {
  display: flex; justify-content: space-between; align-items: flex-start;
  width: 100%; max-width: 1651.04px;
  min-height: 197.06px;
  padding: 16px 8px;
  gap: 0;
}

/* Each step wrapper — full flex column, connector line lives here OUTSIDE journey-inner */
.journey-step {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  position: relative;
}
/* Connector line — vertical center of journey-inner (height:113px, so top = 113/2 = 56.5px) */
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px; /* 113px / 2 = vertical center of journey-inner */
  left: calc(50% + 48px);
  width: calc(100% - 96px);
  height: 1px;
  background: rgba(255,255,255,.25);
  z-index: 0;
}

/* Inner box — width:96, height:113, gap:12 */
.journey-inner {
  width: 96px;
  height: 113px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  gap: 12px;
  position: relative; z-index: 1;
}
.j-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; flex-shrink: 0;
}
.j-icon img { width: 48px; height: 48px; object-fit: contain; display: block; }
.j-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; color: #FFFFFF;
  line-height: 1; display: block;
}
.j-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 600; line-height: 121%; letter-spacing: 0%;
  color: #FFFFFF; text-align: center;
}

/* PACKAGES SECTION */
.pkg-section { background: var(--gray-bg); padding: var(--section-gap) var(--page-pad); }
.pkg-section.white-bg { background: #F8FAFC; }
.section-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.section-header .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C5A800;
  margin: 0 0 8px;
  text-align: center;
}
.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  color: #002B5B;
  margin: 0 0 16px;
  text-align: center;
}
.section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #484E6D;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pkg-section .section-header {
  margin-bottom: 40px;
}
.pkg-section .section-header .eyebrow {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pkg-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002B5B;
  margin-bottom: 16px;
}
.pkg-section .section-header p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
.pill-tag {
  display: inline-flex; align-items: center; justify-content: center;
  background: #002B5B; color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.4; letter-spacing: 0%;
  text-align: center; text-transform: capitalize;
  width: fit-content; max-width: 100%; height: auto; min-height: 33px;
  border-radius: 999px;
  padding: 8px 16px; gap: 10px;
  margin-bottom: 16px;
}
#postgraduate .pill-tag {
  width: fit-content;
  max-width: 100%;
}

/* 3-col cards */
.pkg-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 0; align-items: start;
}
/* 2-col cards */
.pkg-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1355.48px;
  margin: 0 auto;
  padding-top: 0;
  align-items: start;
}
.pkg-grid-2 .pkg-card {
  width: 100%;
  min-height: 0;
  height: auto;
}
.pkg-grid-2 .pkg-feature-list {
  flex: 0 0 auto;
}
.pkg-grid-2 .pkg-card-body {
  flex: 0 0 auto;
}
.pkg-grid-2 .pkg-card-bg-img {
  bottom: 72px;
  width: 120px;
  opacity: 0.9;
}
.pkg-card {
  min-width: 0;
  background: #fff; border: 1.33px solid #C5A800; border-radius: 16px;
  padding: 0; position: relative; overflow: visible; display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pkg-card.featured {
  border: 1.5px solid #091F8E;
  box-shadow: 0 8px 24px rgba(9,31,142,.12);
}
.pkg-grid-3 .pkg-card.featured {
  margin-top: 0;
}
.pkg-card .most-popular {
  position: absolute; top: -18px; right: 8px;
  background: #002B5B; color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 150%; letter-spacing: 0%;
  text-align: center;
  width: auto; min-width: 171px; height: 36px;
  border-radius: 999px;
  border: 1px solid #002B5B;
  padding: 8px 16px; gap: 10px;
  white-space: nowrap; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.pkg-card-header {
  border-radius: 8px; padding: 23px 24px 23px;
  margin: 12px 12px 0 12px;
}
.pkg-card-header.cream {
  background: linear-gradient(to right, #ffffff 0%, #f8f5ec 30%, #f3f1d8 70%, #f0edca 100%);
}
.pkg-card-header.blue {
  background: linear-gradient(88.73deg, rgba(255, 255, 255, 0.2) 11.31%, rgba(42, 104, 173, 0.2) 99.52%);
}
.pkg-card-body {
  min-width: 0;
  padding: 23px 24px; flex: 1; display: flex; flex-direction: column;
  position: relative; overflow: hidden; border-radius: 0 0 10px 10px;
}
.pkg-card-bg {
  position: absolute; bottom: 0; right: -5px;
  font-size: 130px; font-weight: 900;
  font-family: 'Georgia', serif; line-height: 1;
  pointer-events: none; user-select: none; opacity: .12;
}
.pkg-card-bg-img {
  position: absolute; bottom: 86px; right: 8px;
  width: 150px; height: auto;
  z-index: 0; pointer-events: none; user-select: none;
}
.pkg-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1.3; letter-spacing: 0%;
  color: #002B5B; margin-bottom: 14px;
}
#postgraduate .pkg-card-header {
  max-width: 100%; min-height: 0;
  padding-left: 15.98px; padding-right: 15.98px;
  gap: 12px; border-radius: 10.65px;
  display: flex; flex-direction: column; justify-content: center;
}
#postgraduate .pkg-card h3 { margin-bottom: 10px; font-size: 28px; font-weight: 700; }
#postgraduate .pkg-badge-tag,
#postgraduate .pkg-badge-tag.blue {
  font-size: 16px;
  font-weight: 500;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
}
#postgraduate .pkg-feature-list li { font-size: 20px; font-weight: 500; }
.pkg-badge-tag {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #000000; color: #002B5B;
  background: transparent; font-size: 16px; font-weight: 500;
  min-height: 36px; width: auto; max-width: 100%; border-radius: 999px;
  padding: 8px 14px; gap: 10px; margin-bottom: 0;
  white-space: normal; text-align: center;
}
.pkg-badge-tag.blue {
  border: none; background: #002B5B; color: #fff;
  min-height: 31px; border-radius: 99px;
  padding: 8px 14px; gap: 10px; font-size: 16px; font-weight: 500; width: auto; max-width: 100%;
}
.pkg-feature-list {
  list-style: none; display: flex; flex-direction: column; min-width: 0;
  gap: 12px; flex: 1; margin-bottom: 16px; margin-top: 4px;
}
.pkg-feature-list li {
  display: flex; gap: 10px; align-items: flex-start; min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 500; color: #002B5B; line-height: 1.5;
}
.pkg-check { color: #C5A800; flex-shrink: 0; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.pkg-feature-list li.pkg-extra { display: none; }
.pkg-card.expanded .pkg-feature-list li.pkg-extra {
  display: flex;
}
.pkg-more {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #002B5B;
  font-weight: 400;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  background: rgba(42, 104, 173, 0.12);
  border: none;
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
  text-decoration: none;
  box-shadow: none;
  transform: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
}
.pkg-more:hover,
.pkg-more:focus,
.pkg-more:active,
.pkg-more:focus-visible {
  text-decoration: none;
  background: rgba(42, 104, 173, 0.12);
  color: #002B5B;
  outline: none;
  box-shadow: none;
  transform: none;
  opacity: 1;
  filter: none;
}
.pkg-card.expanded .pkg-more {
  display: none;
}
.btn-pkg {
  display: block; width: 100%; background: #002B5B; color: #fff;
  font-size: 22px; font-weight: 600; padding: 14px; border-radius: 8px;
  text-align: center; margin-top: auto;
}

/* VIRTUAL VISITS */
.virtual-section { padding: var(--section-gap) var(--page-pad); background: #fff; }
.virtual-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002B5B;
}
.virtual-section .section-header p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #484E6D;
}
.virtual-section .section-header p em,
.virtual-section .section-header p strong,
.virtual-section .section-header p em strong {
  font-style: italic;
  font-weight: 500;
}
.virtual-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px;
  justify-content: center; width: 100%; max-width: 1653.7px; margin-left: auto; margin-right: auto;
}
.virtual-card {
  width: 100%;
  min-height: 0;
  border-radius: 21px;
  border-left: 5px solid #C5A800;
  background: rgba(197, 168, 0, 0.04);
  padding: 24px 32px;
  gap: 10px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.virtual-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 800; line-height: 1.35; letter-spacing: 0;
  color: #002B5B; margin: 0;
}
.virtual-card p {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 400; line-height: 1.5; letter-spacing: 0;
  color: #595656; margin: 0;
}

/* SPECIALIZED SERVICES */
.services-section {
  padding: var(--section-gap) var(--page-pad);
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.services-section .section-header { margin-bottom: 0; }
.services-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002B5B;
}
.services-section .section-header p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #7F859F;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 28px;
  width: 100%; max-width: 1653.7px; margin: 0 auto;
}
.service-card {
  width: 100%;
  min-height: 0;
  border-radius: 24px;
  padding: 24px;
  background: #FFFFFF;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.15);
}
.service-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 3px 7px;
  gap: 10px;
  flex-shrink: 0;
  font-size: 22px;
}
.service-icon-wrap i,
.service-icon-wrap iconify-icon { font-size: 22px; color: #002B5B; }
.service-icon-wrap img { width: 22px; height: 22px; object-fit: contain; display: block; }
.service-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 800;
  color: #002B5B;
  line-height: 1.35;
  letter-spacing: 0;
  margin: 0;
}
.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 400;
  color: #7F859F;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

/* ADMISSION / SUCCESS STORIES */
.admission-section {
  position: relative;
  padding: 100px var(--page-pad);
  display: flex;
  flex-direction: column;
  gap: 48px;
  background:
    linear-gradient(rgba(0,43,91,.88), rgba(0,43,91,.88)),
    url('../public/images/admission-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}
.admission-header { text-align: center; margin-bottom: 0; }
.admission-header .eyebrow {
  color: #C5A800; margin-bottom: 12px;
  font-size: 16px; font-weight: 800; line-height: 1.4; letter-spacing: 0.04em;
  text-align: center; text-transform: uppercase;
}
.admission-header h2 {
  color: #fff; font-size: 36px; font-weight: 800; line-height: 1.25;
  margin: 0 0 12px;
}
.admission-header h2 span { color: #C5A800; }
.admission-header p {
  color: #E5E7EB; max-width: 640px; margin: 0 auto;
  font-size: 22px; font-weight: 400; line-height: 1.5; text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1654px;
  margin: 0 auto;
}
.testimonial-card {
  width: 100%;
  min-height: 0;
  background: #FFFFFF;
  border-radius: 24px 24px 24px 0;
  border-bottom: 4px solid #D49904;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.t-score {
  position: absolute; top: -16px; right: 16px;
  width: 36px; height: 36px;
  background: #D49904; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.t-score iconify-icon { font-size: 16px; color: #fff; }
.t-name {
  color: #002B5B; font-size: 28px; font-weight: 700; line-height: 1.3;
  margin: 0; padding-right: 40px;
}
.t-course { display: flex; align-items: center; gap: 8px; margin: 0; flex-wrap: wrap; }
.t-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; min-height: 28px;
  padding: 4px 12px; gap: 8px;
  border-radius: 999px;
  font-size: 16px; font-weight: 500;
  background: linear-gradient(135deg, #091F8E 0%, #060A21 100%);
  color: #fff;
}
.t-uni {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 22px; padding: 2px 8px; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500; line-height: 1.3;
}
.t-uni.green { color: #14AE5C; background: #F5FFFA; }
.t-uni.blue { color: #091F8E; background: #E5F3FF; }
.t-uni.orange { color: #F97316; background: #FFF7ED; }
.t-quote-wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-left: 2px solid #C5A800;
  padding: 0 0 0 14px;
  gap: 10px;
}
.t-quote {
  font-size: 18px; font-weight: 400; color: #7B7979;
  line-height: 1.5; font-style: italic; margin: 0;
}

/* ARTICLES */
.articles-section {
  padding: 100px 0;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.articles-section .section-header .eyebrow {
  font-size: 16px;
  font-weight: 700;
}
.articles-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002B5B;
}
.articles-section .section-header p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}
.articles-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  background: transparent;
}
.articles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Most Read — desktop: horizontal thumb + text, match featured height */
.most-read-panel {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.most-read-panel h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #002B5B;
  margin: 0 0 8px;
  flex-shrink: 0;
}
.mr-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  padding: 0;
  border: none;
  margin: 0;
  flex: 1 1 0;
  min-height: 0;
}
.mr-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: center/cover no-repeat;
  flex-shrink: 0;
}
.mr-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.mr-text h5 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  margin: 0;
}
.mr-text span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #A5ACB7;
  line-height: 1.4;
}
.article-featured {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.article-feat-img {
  height: 340px;
  background: center/cover no-repeat;
  border: none;
  border-radius: 0;
}
.article-feat-body {
  padding: 24px 28px 28px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  border-radius: 0;
}
.art-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.art-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 28px;
  background: #C5A800;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.art-badge.exam { background: #27ae60; }
.art-badge.analysis { background: #e67e22; }
.art-meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  color: #7B7979;
  margin: 0;
}
.article-feat-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #002B5B;
  margin: 0;
}
.article-feat-body p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #484E6D;
  line-height: 1.6;
  margin: 0;
}
.article-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E5E7EB;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #091F8E;
}
.article-author .author-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #002B5B;
}
.read-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C5A800;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  margin-left: auto;
}
.read-link:hover { opacity: 0.85; }

.articles-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  min-height: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.article-card-img {
  height: 200px;
  background: center/cover no-repeat;
  border: none;
  border-radius: 0;
}
.article-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border: none;
  border-radius: 0;
}
.ac-meta-row { display: flex; align-items: center; gap: 10px; }
.ac-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ac-badge.examprep { background: #F97316; color: #fff; }
.ac-badge.analysis { background: #E5F3FF; color: #091F8E; }
.ac-meta-time {
  font-size: 14px;
  font-weight: 400;
  color: #7B7979;
}
.article-card-body h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #002B5B;
  margin: 0;
}
.article-card-body p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #484E6D;
  margin: 0;
}
.ac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #E5E7EB;
}
.ac-footer .author-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #002B5B;
}
.ac-arrow {
  color: #C5A800;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* WHY CHOOSE US */
.why-section {
  position: relative; overflow: hidden;
  background: #002B5B;
  padding: 100px var(--page-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.why-tri-cream {
  position: absolute; z-index: 1; pointer-events: none;
  width: min(1440px, 100%); height: auto; bottom: 0; left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
}
.why-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 760px;
  display: flex; flex-direction: column; gap: 40px;
}
.why-text { display: flex; flex-direction: column; gap: 8px; }
.why-content .eyebrow {
  color: #FFFFFF; font-size: 16px; font-weight: 800; line-height: 1.4;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 4px;
}
.why-content h2 {
  color: #fff; font-size: 40px; font-weight: 800; line-height: 1.25;
  margin: 0;
}
.why-content .why-sub {
  color: #E5E7EB; font-size: 20px; font-weight: 400; line-height: 1.5;
  margin: 0;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  display: flex; flex-direction: column; gap: 8px;
  min-height: 0;
  background: #FFFFFF; border: none;
  border-radius: 16px; padding: 20px;
  position: relative; z-index: 2;
}
.why-card.full { grid-column: 1 / -1; }
.why-card h4 {
  color: #C5A800; font-size: 20px; font-weight: 700; line-height: 1.35;
  margin: 0;
}
.why-card p {
  color: #484E6D; font-size: 16px; font-weight: 400; line-height: 1.45;
  margin: 0;
}
.why-card-quote {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}
.why-visual { position: relative; z-index: 2; flex-shrink: 0; }
.why-img-wrap {
  position: relative;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 684.38 / 655.09;
  border-radius: 24px;
  border: 4px solid #C5A800;
  overflow: hidden;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CONTACT */
.contact-section {
  padding: var(--section-gap) 0;
  background: #F8FAFC;
}
.contact-section .section-header {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}
.contact-section .section-header .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.contact-section .section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}
.contact-section .section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.35fr);
  column-gap: 48px;
  row-gap: 40px;
  padding: 48px var(--page-pad) 64px;
  align-items: start;
  background: #FFFFFF;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
}
.contact-sidebar {
  min-width: 0;
  padding-top: 8px;
}
.contact-sidebar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin: 0 0 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  color: #C5A800;
}
.ci-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.ci-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 6px;
  line-height: 1.4;
}
.ci-value {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #002B5B;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.ci-value.green {
  color: #22A06B;
  font-weight: 500;
}
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  box-shadow: none;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  width: 100%;
}
.form-row--full {
  grid-template-columns: minmax(0, 1fr);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6B7280;
  line-height: 1.4;
}
.form-input {
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #374151;
  background: #F3F4F6;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
  min-height: 48px;
}
.form-input:focus {
  background: #EEF0F3;
  box-shadow: 0 0 0 1.5px rgba(9, 31, 142, 0.2);
}
.form-input::placeholder {
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
}
textarea.form-input {
  resize: vertical;
  min-height: 140px;
  height: 140px;
}
.btn-submit-full {
  display: block;
  width: 100%;
  background: #C5A800;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* FAQ — desktop: heading above, image | accordion side by side */
.faq-section {
  padding: var(--section-gap) var(--page-pad);
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.faq-heading {
  width: 100%;
  max-width: 640px;
}
.faq-heading h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #002B5B;
  margin: 0 0 10px;
}
.faq-heading p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}
.faq-img-wrap {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border-radius: 20px;
  border: 5.33px solid #C5A800;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  line-height: 0;
  background: #1a1a1a;
}
.faq-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}
.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  border: none;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
}
.faq-arrow {
  color: #9CA3AF;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.6;
  padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* FOOTER */
footer { background: #FFFFFF; padding: 52px var(--page-pad) 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 0.8fr 1.3fr 1fr;
  gap: 48px; margin-bottom: 40px; align-items: start;
}
.footer-form-col { padding-top: 2px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-brand .logo span {
  font-family: 'Inter', sans-serif;
  color: #091F8E;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}
.footer-brand p {
  font-family: 'Inter', sans-serif;
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: #002B5B;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 14px;
  line-height: 1.3;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  color: #6B7280;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #C5A800; }
.footer-col .contact-link {
  font-family: 'Inter', sans-serif;
  color: #091F8E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.newsletter-input {
  font-family: 'Inter', sans-serif;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 14px;
  color: #111827;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 10px;
  outline: none;
  line-height: 1.4;
  box-sizing: border-box;
}
.newsletter-input::placeholder {
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
}
.btn-newsletter {
  display: block;
  width: 100%;
  background: #C5A800;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}
.footer-bottom { border-top: 1px solid #E5E7EB; padding-top: 20px; text-align: center; }
.footer-bottom p { color: #6B7280; font-size: 13px; margin: 0; }

/* ===================== MODAL — Figma 589:6439 ===================== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(67, 67, 67, 0.6);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 538px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; font-size: 17px; color: #8f94ab; cursor: pointer;
}
.modal-dialog h2 {
  font-size: 26px; font-weight: 800; color: #002B5B; margin: 0;
}
.modal-dialog > p {
  font-size: 14px; color: #8f94ab; margin: 0;
}
.modal-field { margin-bottom: 0; }
.modal-field label,
.modal-row label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #002B5B; margin-bottom: 7px;
}
.modal-field input,
.modal-field textarea,
.modal-row input {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: #484E6D; background: #fff; outline: none;
}
.modal-field input:focus,
.modal-field textarea:focus,
.modal-row input:focus { border-color: #091F8E; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-note {
  display: flex; align-items: center; gap: 12px;
  background: #f2f8ff; border-radius: 8px; padding: 13px 16px;
  font-size: 13px; color: #091F8E;
}
.modal-submit {
  display: block; width: 100%; background: #002B5B; color: #fff;
  font-size: 15px; font-weight: 700; padding: 16px; border-radius: 9px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1440px) {
  :root { --page-pad: 80px; }
  .nav-bar { gap: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 18px; font-weight: 600; }
  .nav-logo-text { font-size: 22px; font-weight: 700; }
  .nav-cta { font-size: 18px; font-weight: 600; }
  .hero h1 { font-size: 52px; line-height: 1.25; }
  .hero-right { width: 100%; max-width: 640px; height: auto; min-height: 480px; }
  .hero-img-wrap { left: 60px; width: calc(100% - 60px); max-width: 560px; height: auto; aspect-ratio: 687.45 / 504.63; }
  .hero-badge { top: auto; bottom: 0; }
}

@media (max-width: 1024px) {
  :root { --page-pad: 40px; }
  nav, .hero, .journey, .pkg-section, .virtual-section,
  .services-section, .admission-section, .articles-section, .articles-body, .why-section,
  .faq-section, footer, .stats-bar {
    padding-left: var(--page-pad); padding-right: var(--page-pad);
  }
  .hero {
    display: flex;
    flex-direction: column-reverse; /* Figma mobile: image first, then tag + copy */
    grid-template-columns: none;
    gap: 24px;
  }
  .hero-content { max-width: none; gap: 24px; }
  .hero-heading { gap: 12px; }
  .hero-heading h1 {font-size: 32px; line-height: 47px; font-weight: 800; }
  .hero-tag {
    margin-bottom: 0;
    align-self: flex-start;
  }
  .hero-right { width: 100%; max-width: none; height: auto; min-height: 0; margin-top: 0; }
  .hero-img-wrap { position: relative; top: 0; left: 0; width: 100%; max-width: 687.45px; height: 320px; margin: 0 auto; }
  .hero-badge { position: relative; top: 0; left: 0; width: 100%; max-width: 310px; height: auto; margin: 16px auto 0; }
  .stats-bar { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
  .philosophy {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px var(--page-pad);
  }
  .philosophy-left {
    padding: 0;
    justify-content: center;
  }
  .philosophy-img-wrap {
    position: static;
    top: 0;
    width: 100%;
    max-width: 684.38px;
    height: auto;
    aspect-ratio: 684.38 / 655.09;
    margin: 0 auto;
    border-radius: 31.96px;
    border-width: 5.33px;
  }
  .philosophy-right {
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .philosophy-right h2 { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
  .philosophy-right p { font-size: 14px; font-weight: 500; line-height: 1.6; margin-bottom: 32px; }
  .philo-list { gap: 24px; }
  .philo-list li { font-size: 16px;  font-weight: 600;}
  .pkg-grid-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 24px;
    padding-top: 0;
  }
  .pkg-grid-3 .pkg-card.featured { margin-top: 0; }
  .pkg-grid-2 {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 24px;
    padding-top: 0;
  }
  .pkg-grid-2 .pkg-card { min-height: 0; }
  #postgraduate .pkg-card-header { min-height: 0; }
  .virtual-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .virtual-card { width: 100%; padding: 20px 24px; }
  .virtual-card h4 { font-size: 20px; font-weight: 800; }
  .virtual-card p { font-size: 16px; font-weight: 400; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
  .service-card { width: 100%; padding: 20px; border-radius: 20px; }
  .service-card h4 { font-size: 20px; font-weight: 800; }
  .service-card p { font-size: 16px; font-weight: 400; }
  .why-section {
    flex-direction: column;
    align-items: stretch;
    padding: 64px var(--page-pad);
    gap: 28px;
  }
  .why-content {
    width: 100%;
    max-width: none;
    display: contents;
  }
  .why-text { order: 1; }
  .why-visual { order: 2; width: 100%; }
  .why-cards { order: 3; }
  .why-img-wrap {
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 684.38 / 655.09;
    margin: 0 auto;
    border-radius: 20px;
    border-width: 3px;
  }
  .why-tri-cream { width: 100%; max-width: 900px; opacity: 0.25; }
  .why-content .eyebrow { font-size: 16px; font-weight: 800; margin-bottom: 15px;}
  .why-content h2 { font-size: 36px; font-weight: 800; }
  .why-content .why-sub { font-size: 22px; font-weight: 400; }
  .why-card { padding: 18px; padding-top: 24px; border-radius: 16px; gap: 6px; }
  .why-card h4 { font-size: 24px; font-weight: 700;}
  .why-card p { font-size: 20px; font-weight: 400; }
  .articles-layout { grid-template-columns: 1fr; gap: 24px; }
  .articles-body { padding-left: 0; padding-right: 0; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .admission-header h2 { font-size: 32px; font-weight: 800; }
  .admission-header p { font-size: 18px; font-weight: 400; }
  .t-name { font-size: 26px; font-weight: 700; }
  .t-quote { font-size: 16px; font-weight: 400; }
  .article-feat-img { height: 280px; }
  .article-feat-body h3 { font-size: 24px; }
  .article-card-body h4 { font-size: 22px; font-weight: 800; }
  .article-card-body p { font-size: 16px; font-weight: 400; }
  .articles-grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .most-read-panel { max-width: 560px; }
  .contact-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
    padding: 40px var(--page-pad) 48px;
  }
  .contact-form-wrap { padding: 28px; }
  .form-row { gap: 16px; }
  .contact-form { gap: 16px; }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .faq-img-wrap { min-height: 320px; height: auto; max-width: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Tablet/mobile nav — collapsible menu */
  .nav-bar {
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }
  .nav-logo { height: 48px; }
  .nav-logo-icon { width: 48px; height: 48px; }
  .nav-logo-text { font-size: 20px; font-weight: 700; }
  .nav-toggle-btn { display: flex; }
  .nav-right {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #EEEEEE;
    order: 10;
  }
  .nav-toggle-checkbox:checked ~ .nav-bar .nav-right { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid #F1F1F4;
    justify-content: space-between;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active {
    border-bottom-color: #F1F1F4;
    color: #091F8E;
    font-weight: 700;
  }
  .nav-caret {
    border-top-width: 6px;
    border-left-width: 5px;
    border-right-width: 5px;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
  }
}

/* Mobile — Figma 603:111 (375) */
@media (max-width: 480px) {
  :root { --page-pad: 24px; }
  nav, .hero, .journey, .pkg-section, .virtual-section,
  .services-section, .admission-section, .articles-section, .articles-body, .why-section,
  .faq-section, footer, .stats-bar {
    padding-left: var(--mobile-pad); padding-right: var(--mobile-pad);
  }
  nav {
    border-bottom-color: rgba(221, 224, 228, 0.3);
  }
  .nav-bar {
    gap: 12px;
    padding: 16px var(--mobile-pad);
  }
  .nav-logo { height: 40px; }
  .nav-logo-icon { width: 40px; height: 40px; }
  .nav-logo-text { font-size: 18px; font-weight: 700; }
  .nav-toggle-btn { width: 24px; height: 14px; }
  .nav-right { border-top-color: rgba(221, 224, 228, 0.6); }
  .nav-links a { font-size: 16px; font-weight: 600; }
  .nav-cta { font-size: 14px; font-weight: 600; }

  .hero { display: flex; flex-direction: column-reverse; gap: 24px; padding-top: 0; }
  .hero-content { gap: 24px; }
  .hero-heading { gap: 12px; }
  .hero-tag {
    font-size: 12px; height: auto; padding: 8px 12px;
    margin-bottom: 0; align-self: flex-start;
  }
  .hero h1 { font-size: 28px; line-height: 1.25; }
  .hero-desc, .hero-desc strong { font-size: 14px; line-height: 28px; }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 13.31px;
    max-width: none;
    width: 100%;
  }
  .btn-gold-solid {
    width: 226px;
    height: 35px;
    padding: 8px 16px;
    gap: 13.31px;
    border-radius: 131.82px;
    border-width: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  .btn-outline-navy {
    width: fit-content;
    max-width: 100%;
    height: 35px;
    padding: 8px 16px;
    gap: 13.31px;
    border-radius: 131.82px;
    border-width: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    background: #fff;
    color: #C5A800;
    border-color: #C5A800;
  }
  .btn-outline-navy:hover {
    background: #fff;
    color: #C5A800;
  }
  .hero-right { min-height: 0; margin-top: 0; }
  .hero-img-wrap {
    height: auto; aspect-ratio: 327 / 240; max-width: 327px;
    border-width: 2.53px; border-radius: 7.59px;
  }
  .hero-badge {
    width: 128px; max-width: 128px; height: 37.5px;
    padding: 5.5px; gap: 5.5px;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 8.76px; border-width: 1.1px; margin: -18px 0 0 auto;
  }
  .hero-badge-check, .hero-badge-check img { width: 13px; height: 13px; }
  .hero-badge-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1;
  }
  .hero-badge-text strong {
    display: block;
    font-size: 9.87px;
    line-height: 1;
    white-space: nowrap;
  }
  .hero-badge-text span {
    display: block;
    font-size: 8.23px;
    line-height: 1;
    white-space: nowrap;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px var(--mobile-pad) 32px;
  }
  .stat-item {
    min-height: 72px;
    height: auto;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    gap: 12px;
  }
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  .stat-icon i,
  .stat-icon img {
    width: 26px;
    height: 26px;
  }
  .stat-icon i { font-size: 26px; }
  .stat-text { gap: 2px; }
  .stat-text h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #000;
  }
  .stat-text p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #7B7979;
  }

  .philosophy {
    background: linear-gradient(180deg, #FDF9E5 0%, #FFFFFF 100%);
    padding: 40px var(--mobile-pad);
    gap: 24px;
  }
  .philosophy-left,
  .philosophy-right {
    padding-left: 0;
    padding-right: 0;
  }
  .philosophy-img-wrap {
    max-width: 100%;
    border-radius: 16px;
    border-width: 3px;
    aspect-ratio: 684.38 / 655.09;
  }
  .philosophy-right h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .philosophy-right p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .philo-list { gap: 20px; }
  .philo-list li {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    gap: 10px;
  }
  .philo-check {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
  .philo-check-inner {
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
  }
  .philo-check-inner svg { width: 10px; height: 10px; }

  .journey {
    padding-top: 48px;
    padding-bottom: 48px;
    min-height: 0;
    gap: 8px;
  }
  .journey .eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
  }
  .journey h2 {
    font-size: 24px;
    font-weight: 700;
    gap: 10px;
  }
  .journey h2::before,
  .journey h2::after {
    flex: 0 0 28px;
    height: 1.5px;
  }
  .journey-sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #EBE9E9;
  }
  .journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    min-height: 0;
    max-width: 100%;
  }
  .journey-step {
    flex: none;
    width: 100%;
    padding-bottom: 0;
  }
  /* Hide desktop horizontal connector */
  .journey-step:not(:last-child)::after {
    display: none;
  }
  /* Connector above step 1 */
  .journey-step:first-child .journey-inner::before {
    content: '';
    display: block;
    width: 1.5px;
    height: 32px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }
  /* Vertical connector between steps — equal margin above & below */
  .journey-step:not(:last-child) .journey-inner::after {
    content: '';
    display: block;
    width: 1.5px;
    height: 32px;
    margin: 16px auto;
    background: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }
  .journey-inner {
    width: 100%;
    max-width: 220px;
    height: auto;
    gap: 8px;
    margin: 0 auto;
  }
  .j-icon {
    width: 56px;
    height: 56px;
  }
  .j-icon img {
    width: 56px;
    height: 56px;
  }
  .j-num {
    font-size: 14px;
    font-weight: 700;
  }
  .j-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .j-label br { display: none; }

  .section-header {
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .section-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 6px;
  }
  .section-header h2, .admission-header h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 14px;
  }
  .section-header p, .admission-header p {
    font-size: 14px;
    line-height: 1.5;
    color: #484E6D;
    max-width: 340px;
    margin: 0 auto;
  }
  .admission-header p {
    color: #E5E7EB;
  }

  /* Package section header — Figma mobile type */
  .pkg-section .section-header {
    margin-bottom: 24px;
  }
  .pkg-section .section-header .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #C5A800;
    margin-bottom: 6px;
  }
  .pkg-section .section-header h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #002B5B;
    margin-bottom: 14px;
  }
  .pkg-section .section-header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #3A3A3A;
    margin: 0;
  }

  /* Success stories — mobile Figma */
  .admission-section {
    padding: 48px var(--mobile-pad);
    gap: 28px;
  }
  .admission-header .eyebrow {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .admission-header h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .admission-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #E5E7EB;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .testimonial-card {
    width: 100%;
    padding: 18px 16px;
    border-radius: 16px 16px 16px 0;
    gap: 10px;
  }
  .t-score {
    width: 32px;
    height: 32px;
    top: -14px;
    right: 14px;
  }
  .t-score iconify-icon { font-size: 14px; }
  .t-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    padding-right: 36px;
  }
  .t-badge { font-size: 12px; font-weight: 400; min-height: 24px; padding: 3px 10px; }
  .t-uni { font-size: 14px; font-weight: 500; }
  .t-quote {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }

  /* Articles — mobile Figma:
     order: featured → grid cards → most read (vertical) */
  .articles-section {
    padding: 48px var(--mobile-pad);
    gap: 28px;
  }
  .articles-body {
    padding-left: 0;
    padding-right: 0;
    gap: 28px;
    display: flex;
    flex-direction: column;
  }
  .articles-section .section-header {
    padding: 0;
    margin-bottom: 0;
  }
  .articles-section .eyebrow {
    font-size: 16px;
    font-weight: 700;
  }
  .articles-section .section-header h2 {
    font-size: 24px;
    font-weight: 800;
  }
  .articles-section .section-header p {
    font-size: 16px;
    font-weight: 400;
    max-width: 320px;
  }
  .articles-layout {
    display: contents;
  }
  .article-featured {
    order: 1;
    border-radius: 16px;
  }
  .articles-grid-3 {
    order: 2;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .most-read-panel {
    order: 3;
    padding: 16px;
    border-radius: 16px;
    gap: 18px;
  }
  .article-feat-img {
    height: 200px;
  }
  .article-feat-body {
    padding: 16px;
    gap: 10px;
  }
  .article-feat-body h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
  }
  .article-feat-body p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .art-badge {
    font-size: 12px;
    font-weight: 800;
  }
  .art-meta {
    font-size: 12px;
    font-weight: 400;
  }
  .article-author {
    flex-wrap: wrap;
    gap: 10px;
  }
  .article-author .author-name {
    font-size: 14px;
    font-weight: 700;
  }
  .read-link { font-size: 12px; margin-left: 0; }
  .most-read-panel h4 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
  }
  /* Mobile Most Read — vertical stack (Figma left) */
  .mr-item {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .mr-img {
    width: 100%;
    height: 148px;
    border-radius: 12px;
  }
  .mr-text {
    gap: 4px;
    padding-top: 0;
  }
  .mr-text h5 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: #002B5B;
  }
  .mr-text span {
    font-size: 14px;
    font-weight: 400;
    color: #A5ACB7;
  }
  .article-card {
    min-height: 0;
    border-radius: 16px;
  }
  .article-card-img {
    height: 180px;
  }
  .article-card-body {
    padding: 16px;
    gap: 8px;
  }
  .article-card-body h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
  }
  .article-card-body p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }
  .ac-badge {
    font-size: 12px;
    font-weight: 800;
  }
  .ac-footer .author-name {
    font-size: 14px;
    font-weight: 700;
  }
  .ac-meta-time {
    font-size: 12px;
    font-weight: 400;
  }

  /* Why Choose Us — mobile Figma */
  .why-section {
    padding: 48px var(--mobile-pad);
    gap: 20px;
  }
  .why-content .eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
  }
  .why-content h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
  }
  .why-content .why-sub {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #E5E7EB;
  }
  .why-img-wrap {
    max-width: 100%;
    border-radius: 16px;
    border-width: 3px;
  }
  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .why-card {
    padding: 14px 12px;
    border-radius: 12px;
    gap: 6px;
    min-height: 0;
  }
  .why-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  .why-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }
  .why-tri-cream { opacity: 0.2; }
  .pill-tag {
    font-size: 16px;
    font-weight: 700;
    width: auto;
    height: auto;
    min-height: 28px;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  /* Package cards — Figma mobile typography */
  .pkg-section, .virtual-section, .services-section, .faq-section {
    padding-top: 48px; padding-bottom: 48px;
  }

  /* Virtual visits — mobile Figma type */
  .virtual-section .section-header { margin-bottom: 28px; }
  .virtual-section .section-header h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
  }
  .virtual-section .section-header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #484E6D;
  }
  .virtual-section .section-header p em,
  .virtual-section .section-header p strong,
  .virtual-section .section-header p em strong {
    font-weight: 500;
  }
  .virtual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
  }
  .virtual-card {
    min-height: 0;
    padding: 16px 18px;
    border-radius: 14px;
    border-left-width: 4px;
    gap: 6px;
  }
  .virtual-card h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
  }
  .virtual-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
  }

  /* Specialized services — mobile Figma type */
  .services-section { gap: 28px; }
  .services-section .section-header h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
  }
  .services-section .section-header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #7F859F;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card {
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
    gap: 10px;
  }
  .service-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .service-icon-wrap i,
  .service-icon-wrap iconify-icon { font-size: 20px; }
  .service-icon-wrap img { width: 20px; height: 20px; }
  .service-card h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
  }
  .service-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
  }

  .pkg-grid-3 {
    gap: 24px;
    padding-top: 0;
  }
  .pkg-grid-2 {
    gap: 24px;
    padding-top: 0;
  }
  .pkg-grid-3 .pkg-card.featured { margin-top: 0; }
  .pkg-card { border-radius: 16px; }
  /* Hide W logo watermark on mobile — overlaps feature text */
  .pkg-card-bg-img,
  .pkg-grid-2 .pkg-card-bg-img {
    display: none;
  }
  .pkg-card .most-popular {
    position: absolute;
    top: -14px;
    right: 8px;
    left: auto;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    width: auto;
    height: auto;
    min-height: 28px;
    padding: 6px 12px;
  }
  .pkg-card-header { padding: 16px 16px 14px; margin: 10px 10px 0; }
  .pkg-card-body { padding: 16px; }
  .pkg-card h3,
  #postgraduate .pkg-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .pkg-badge-tag,
  #postgraduate .pkg-badge-tag,
  .pkg-badge-tag.blue {
    font-size: 14px;
    font-weight: 500;
    min-height: 28px;
    padding: 6px 12px;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
  }
  .pkg-feature-list { gap: 10px; margin-bottom: 12px; }
  .pkg-feature-list li,
  #postgraduate .pkg-feature-list li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #002B5B;
    gap: 8px;
  }
  .pkg-check img { width: 16px; height: 16px; }
  .pkg-more {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 14px;
    padding: 5px 12px;
    background: rgba(42, 104, 173, 0.12);
  }
  .btn-pkg {
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: none;
    padding: 24px 20px;
  }

  /* Contact — mobile Figma type */
  .contact-section {
    background: #F8FAFC;
    padding: 48px 0;
  }
  .contact-section .section-header {
    padding-left: var(--mobile-pad);
    padding-right: var(--mobile-pad);
  }
  .contact-inner {
    background: #FFFFFF;
    gap: 28px;
    row-gap: 28px;
    column-gap: 0;
    padding: 28px var(--mobile-pad) 40px;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .contact-sidebar { padding-top: 0; }
  .contact-section .section-header .eyebrow {
    font-size: 12px;
    font-weight: 700;
  }
  .contact-section .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
  }
  .contact-section .section-header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .contact-sidebar h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
  }
  .ci-label {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
  }
  .ci-value {
    font-size: 16px;
    font-weight: 400;
  }
  .ci-value.green {
    font-size: 16px;
    font-weight: 500;
  }
  .ci-icon {
    width: 28px;
    height: 28px;
  }
  .ci-icon svg {
    width: 22px;
    height: 22px;
  }
  .form-label {
    font-size: 14px;
    font-weight: 700;
  }
  .form-input {
    font-size: 14px;
    font-weight: 400;
    padding: 11px 12px;
    min-height: 44px;
  }
  .form-input::placeholder {
    font-size: 14px;
    font-weight: 400;
  }
  textarea.form-input {
    min-height: 120px;
    height: 120px;
  }
  .btn-submit-full {
    font-size: 16px;
    font-weight: 700;
    padding: 13px;
  }

  /* FAQ — mobile Figma: title → image → accordion */
  .faq-section {
    padding: 48px var(--mobile-pad);
    background: #F8FAFC;
    gap: 20px;
  }
  .faq-heading {
    max-width: none;
  }
  .faq-heading h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 6px;
    color: #002B5B;
  }
  .faq-heading p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #6B7280;
    margin: 0;
  }
  .faq-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faq-img-wrap {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11;
    border-radius: 14px;
    border: 5.33px solid #C5A800;
    overflow: hidden;
    background: #1a1a1a;
  }
  .faq-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .faq-list {
    gap: 12px;
    margin-top: 0;
  }
  .faq-item {
    padding: 0 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
    border: none;
    background: #FFFFFF;
  }
  .faq-q {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 0;
    line-height: 1.35;
    color: #111827;
  }
  .faq-arrow { font-size: 14px; color: #9CA3AF; }
  .faq-a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #6B7280;
    padding-bottom: 16px;
  }

  /* Footer — mobile Figma type */
  footer {
    padding: 40px var(--mobile-pad) 24px;
    border-top: 1px solid #E5E7EB;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand .logo span {
    font-size: 28px;
    font-weight: 700;
  }
  .footer-brand p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .footer-col ul li a {
    font-size: 14px;
    font-weight: 400;
  }
  .footer-col .contact-link {
    font-size: 14px;
    font-weight: 400;
  }
  .newsletter-input {
    font-size: 14px;
    font-weight: 400;
    padding: 11px 12px;
  }
  .newsletter-input::placeholder {
    font-size: 14px;
    font-weight: 400;
  }
  .btn-newsletter {
    font-size: 16px;
    font-weight: 700;
    padding: 12px;
  }
  .footer-bottom p { font-size: 12px; }

  .modal-row { grid-template-columns: 1fr; }
  .modal-dialog { border-radius: 16px; padding: 16px; }
}

