
:root {
  --dna-blue: #0b8ed8;
  --dna-blue-2: #075da8;
  --dna-navy: #0b376d;
  --dna-orange: #ff7a1a;
  --dna-orange-2: #ff9f1c;
  --soft-blue: #eaf7ff;
  --soft-orange: #fff1e6;
  --soft-mint: #eafaf3;
  --soft-lavender: #f4f0ff;
  --ink: #13233a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .09);
  --card: rgba(255, 255, 255, .82);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 55, 109, .12);
  --shadow-soft: 0 14px 35px rgba(11, 55, 109, .09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 6%, rgba(14, 165, 233, .14), transparent 28%),
    radial-gradient(circle at 94% 4%, rgba(255, 122, 26, .14), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 42%, #f9fbff 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--dna-navy);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 14px; }

.topbar {
  background: #071b35;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-inner span:first-child {
  color: white;
  font-weight: 850;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.navbar-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 128px; }
.brand img { width: 118px; height: auto; }
.brand .brand-word { display: none; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link, .dropdown-toggle {
  border: 0;
  background: transparent;
  color: #243b57;
  padding: 11px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
.nav-link:hover, .dropdown-toggle:hover { background: rgba(11, 142, 216, .08); color: var(--dna-blue-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 250px;
  padding: 12px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: .2s ease;
}
.dropdown.open .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-menu a { display: grid; gap: 3px; padding: 12px; border-radius: 14px; }
.dropdown-menu a:hover { background: var(--soft-blue); }
.dropdown-menu strong { font-size: 14px; }
.dropdown-menu span { font-size: 12px; color: var(--muted); line-height: 1.45; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--dna-blue), var(--dna-blue-2));
  box-shadow: 0 14px 28px rgba(11, 142, 216, .24);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(11, 142, 216, .32); }
.btn-orange {
  color: white;
  background: linear-gradient(135deg, #ff6c16, #ff9d15);
  box-shadow: 0 14px 28px rgba(255, 122, 26, .24);
}
.btn-ghost {
  color: var(--dna-navy);
  background: rgba(255, 255, 255, .8);
  border-color: rgba(11, 142, 216, .18);
}
.btn-soft {
  color: var(--dna-blue-2);
  background: rgba(11, 142, 216, .09);
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: rgba(11, 142, 216, .1);
  color: var(--dna-blue-2);
  cursor: pointer;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 99px; }

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 68px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dna-blue-2);
  background: rgba(11, 142, 216, .09);
  border: 1px solid rgba(11, 142, 216, .12);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .01em;
}
.section-heading { margin: 14px 0 14px; font-size: clamp(32px, 4vw, 54px); line-height: 1.02; letter-spacing: -.045em; }
.section-heading span { color: var(--dna-blue); }
.section-subtitle { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.72; margin: 0; }
.center { text-align: center; }
.center .section-subtitle { margin-inline: auto; }

.hero { padding: 80px 0 44px; position: relative; overflow: hidden; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.hero::before { width: 280px; height: 280px; background: rgba(11, 142, 216, .12); left: -100px; top: 110px; }
.hero::after { width: 320px; height: 320px; background: rgba(255, 122, 26, .12); right: -130px; top: 80px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.dna-hero {
  padding: 74px 0 48px;
  color: var(--ink);
  background:
    radial-gradient(circle at 73% 35%, rgba(11, 142, 216, .2), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(255, 122, 26, .18), transparent 25%),
    radial-gradient(circle at 13% 18%, rgba(255, 255, 255, .92), transparent 28%),
    linear-gradient(135deg, #f2fbff 0%, #ffffff 45%, #fff3ea 100%);
}
.dna-hero::before {
  width: 520px;
  height: 520px;
  left: auto;
  right: 110px;
  top: 70px;
  background: transparent;
  border: 1px solid rgba(11, 142, 216, .14);
}
.dna-hero::after {
  width: 520px;
  height: 520px;
  right: -150px;
  top: 16px;
  border-radius: 0;
  filter: none;
  opacity: .2;
  background:
    repeating-linear-gradient(112deg, transparent 0 12px, rgba(11,142,216,.32) 13px 15px, transparent 16px 28px);
}
.dna-hero .hero-grid {
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  min-height: 620px;
}
.dna-hero h1 {
  color: var(--dna-navy);
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}
.dna-hero .hero-lead {
  color: #455a72;
  max-width: 640px;
}
.hero-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-kickers > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--dna-blue-2);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(11, 142, 216, .14);
  box-shadow: 0 12px 30px rgba(11, 55, 109, .08);
  font-size: 14px;
  font-weight: 900;
}
.hero-kickers > span:last-child {
  color: #9a4b00;
  background: rgba(255, 241, 230, .9);
  border-color: rgba(255, 122, 26, .2);
}
.hero-benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #33465f;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
}
.hero-benefits li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffb21a;
  box-shadow: 0 0 0 7px rgba(255, 178, 26, .14);
}
.dna-hero .btn-ghost {
  color: var(--dna-navy);
  background: rgba(255,255,255,.86);
  border-color: rgba(11, 142, 216, .16);
}
.dna-hero .btn-ghost:hover { background: #fff; }
.dna-hero .hero-proof div {
  background: rgba(255,255,255,.74);
  border-color: rgba(11, 142, 216, .1);
  box-shadow: 0 14px 34px rgba(11, 55, 109, .06);
}
.dna-hero .hero-proof strong { color: var(--dna-navy); }
.dna-hero .hero-proof span { color: #637083; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(11, 142, 216, .16);
  box-shadow: 0 10px 40px rgba(11, 142, 216, .08);
  color: var(--dna-navy);
  font-weight: 850;
  font-size: 14px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dna-orange); box-shadow: 0 0 0 8px rgba(255, 122, 26, .12); }
.hero h1 { margin: 18px 0 18px; font-size: clamp(46px, 7vw, 82px); line-height: .95; letter-spacing: -.065em; }
.gradient-text { background: linear-gradient(135deg, var(--dna-blue-2), var(--dna-blue), var(--dna-orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { margin: 0; color: #516174; font-size: clamp(17px, 2vw, 21px); line-height: 1.75; max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  max-width: 690px;
}
.hero-proof div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(11, 142, 216, .12);
  box-shadow: 0 12px 32px rgba(11, 55, 109, .06);
}
.hero-proof strong {
  display: block;
  color: var(--dna-navy);
  font-size: 14px;
}
.hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}
.hero-mini { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  color: #41536b;
  font-weight: 750;
  font-size: 13px;
}

.hero-visual { position: relative; min-height: 560px; }
.audience-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(640px, 100%);
  min-height: 640px;
}
.audience-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 6px;
  bottom: 90px;
  width: 548px;
  height: 424px;
  border-radius: 54px 54px 54px 120px;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.74), transparent 28%),
    linear-gradient(138deg, rgba(11, 142, 216, .24), rgba(234, 247, 255, .96) 52%, rgba(255, 122, 26, .16));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 32px 90px rgba(11, 55, 109, .12);
  transform: rotate(-4deg);
}
.audience-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 52px;
  bottom: 64px;
  width: 462px;
  height: 336px;
  border-radius: 46px 92px 46px 46px;
  background:
    linear-gradient(135deg, rgba(255, 159, 28, .5), rgba(255, 122, 26, .2)),
    repeating-linear-gradient(112deg, transparent 0 16px, rgba(255,255,255,.32) 17px 19px, transparent 20px 34px);
  box-shadow: 0 28px 70px rgba(255, 122, 26, .18);
  transform: rotate(5deg);
}
.audience-photo {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 116px;
  width: min(570px, 96%);
  height: 405px;
  overflow: hidden;
  border-radius: 44px 44px 44px 96px;
  border: 12px solid rgba(255,255,255,.92);
  background: #eaf7ff;
  box-shadow: 0 34px 86px rgba(11, 55, 109, .2);
  transform: rotate(-1.4deg);
}
.audience-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 30px;
  width: 92px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 178, 26, .86);
  box-shadow:
    0 14px 0 rgba(11, 142, 216, .62),
    0 22px 34px rgba(11, 55, 109, .12);
  transform: rotate(-3deg);
}
.audience-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(11, 55, 109, .16)),
    radial-gradient(circle at 34% 10%, rgba(255,255,255,.25), transparent 26%);
  pointer-events: none;
}
.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
  filter: saturate(1.07) contrast(1.02) brightness(1.06);
}
.hero-goal-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 200px;
  padding: 15px 17px 15px 56px;
  border-radius: 22px;
  color: #162033;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 22px 48px rgba(11, 55, 109, .14);
  isolation: isolate;
}
.hero-goal-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--dna-blue);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.32);
}
.hero-goal-card span {
  color: #7a8598;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-goal-card strong {
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -.015em;
}
.card-campus { left: 0; top: 74px; transform: rotate(-3deg); }
.card-campus::before { background: var(--dna-blue); }
.card-career { right: -2px; top: 118px; transform: rotate(3deg); }
.card-career::before { background: var(--dna-orange); }
.card-test { left: 38px; bottom: 140px; transform: rotate(2deg); }
.card-test::before { background: #16b981; }
.hero-brush {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 62px;
  width: min(452px, 80%);
  padding: 18px 24px 18px 62px;
  border-radius: 999px 28px 999px 999px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 93, 168, .92), rgba(11, 142, 216, .88) 38%, rgba(255, 122, 26, .96));
  box-shadow: 0 20px 46px rgba(255, 122, 26, .2);
  transform: rotate(-1.5deg);
  font-weight: 950;
  font-size: 18px;
  line-height: 1.25;
}
.hero-brush::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 7px #ffb21a;
  transform: translateY(-50%);
}
.hero-ring {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 1px dashed rgba(11,142,216,.22);
}
.ring-one { width: 506px; height: 506px; right: -14px; top: 64px; }
.ring-two { width: 242px; height: 242px; left: 54px; bottom: 42px; border-color: rgba(255, 122, 26, .24); }
.orbit-card {
  position: absolute;
  inset: 34px 0 0 auto;
  width: min(480px, 100%);
  padding: 28px;
  border-radius: 38px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}
.orbit-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -100px;
  background: radial-gradient(circle, rgba(255, 122, 26, .25), transparent 62%);
}
.orbit-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(11, 142, 216, .23), transparent 62%);
}
.visual-logo { position: relative; z-index: 1; width: 220px; margin: 0 auto 18px; padding: 14px; border-radius: 24px; background: rgba(255,255,255,.76); box-shadow: inset 0 0 0 1px rgba(11, 142, 216, .08); }
.score-card { position: relative; z-index: 1; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow-soft); }
.score-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.score-label { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.score-value { font-size: 46px; line-height: 1; color: var(--dna-blue-2); font-weight: 950; letter-spacing: -.04em; }
.score-badge { color: #9a4b00; background: var(--soft-orange); padding: 8px 11px; border-radius: 999px; font-weight: 850; font-size: 12px; }
.progress { height: 13px; border-radius: 999px; background: #edf5fb; overflow: hidden; margin: 18px 0 16px; }
.progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--dna-blue), var(--dna-orange)); }
.check-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #4b5f78; font-weight: 700; font-size: 14px; }
.check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: rgba(11, 142, 216, .1); color: var(--dna-blue-2); font-size: 13px; font-weight: 950; }
.float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: var(--soft-blue); color: var(--dna-blue-2); }
.float-card strong { display: block; font-size: 14px; }
.float-card small { color: var(--muted); font-weight: 700; }
.float-1 { left: 8px; top: 92px; }
.float-2 { right: 0; bottom: 78px; animation-delay: -2s; }
.float-3 { left: 48px; bottom: 24px; animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.trust-strip { padding: 26px 0 56px; }
.trust-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(11, 142, 216, .11);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
}
.trust-title { font-weight: 900; color: var(--dna-navy); }
.trust-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.trust-tags span { padding: 9px 13px; border-radius: 999px; background: #f6fbff; border: 1px solid var(--line); color: #41536b; font-weight: 800; font-size: 13px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 18px 48px rgba(11, 55, 109, .08);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.38));
  pointer-events: none;
}
.card > * { position: relative; z-index: 1; }
.icon-box { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; font-size: 26px; margin-bottom: 17px; background: var(--soft-blue); }
.icon-orange { background: var(--soft-orange); }
.icon-mint { background: var(--soft-mint); }
.icon-lavender { background: var(--soft-lavender); }
.card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; }
.card .tag-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: rgba(11, 142, 216, .08); color: var(--dna-blue-2); font-size: 12px; font-weight: 850; }
.tag.orange { background: rgba(255, 122, 26, .1); color: #b55200; }

.program-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 35px 0 22px; }
.tab-btn { border: 1px solid var(--line); background: rgba(255,255,255,.72); color: #43546b; padding: 11px 14px; border-radius: 999px; cursor: pointer; font-weight: 850; }
.tab-btn.active { background: linear-gradient(135deg, var(--dna-blue), var(--dna-blue-2)); color: white; border-color: transparent; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card { display: flex; flex-direction: column; min-height: 100%; }
.program-card.featured { outline: 2px solid rgba(255, 122, 26, .22); }
.program-head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.program-kicker { color: var(--dna-blue-2); font-weight: 950; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.program-price { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--soft-orange); color: #9d4b00; font-weight: 900; font-size: 12px; white-space: nowrap; }
.program-card h3 { font-size: 24px; }
.program-card ul { padding: 0; list-style: none; display: grid; gap: 10px; margin: 20px 0 24px; }
.program-card li { display: flex; gap: 10px; color: #4b5f78; line-height: 1.45; }
.program-card li::before { content: "•"; color: var(--dna-orange); font-weight: 950; }
.program-card .btn { margin-top: auto; width: 100%; }

.pathway {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(234, 247, 255, .94), rgba(255, 241, 230, .76));
  border: 1px solid rgba(11, 142, 216, .12);
  box-shadow: var(--shadow-soft);
}
.pathway-board { display: grid; gap: 13px; }
.step-row { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; padding: 14px; border-radius: 22px; background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.85); }
.step-num { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--dna-blue), var(--dna-blue-2)); color: white; font-weight: 950; }
.step-row h3 { margin: 2px 0 5px; font-size: 18px; }
.step-row p { margin: 0; color: var(--muted); line-height: 1.55; }
.device-card { padding: 26px; border-radius: 28px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); }
.device-card h3 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.03em; }
.requirements { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.requirements div { padding: 14px; border-radius: 18px; background: #fff; border: 1px solid var(--line); color: #41536b; font-weight: 800; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.stat-card { padding: 24px; border-radius: 24px; background: #fff; border: 1px solid var(--line); text-align: center; box-shadow: 0 16px 36px rgba(11, 55, 109, .06); }
.stat-card strong { display: block; font-size: 36px; letter-spacing: -.05em; color: var(--dna-blue-2); }
.stat-card span { display: block; margin-top: 6px; color: var(--muted); font-weight: 780; }

.soft-panel { background: linear-gradient(180deg, rgba(234,247,255,.72), rgba(255,255,255,.86)); border-top: 1px solid rgba(11, 142, 216, .08); border-bottom: 1px solid rgba(11, 142, 216, .08); }
.compare-table { margin-top: 34px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-soft); }
.compare-row { display: grid; grid-template-columns: 1.1fr 1.3fr 1.3fr; }
.compare-row > div { padding: 18px; border-bottom: 1px solid var(--line); }
.compare-row:last-child > div { border-bottom: 0; }
.compare-head { background: linear-gradient(135deg, var(--dna-blue), var(--dna-blue-2)); color: white; font-weight: 900; }
.compare-row:not(.compare-head) > div:first-child { font-weight: 900; color: var(--dna-navy); }
.compare-row:not(.compare-head) > div:not(:first-child) { color: #506176; line-height: 1.55; }

.testimonial-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; align-items: start; }
.quote-card { background: var(--dna-navy); color: white; padding: 34px; border-radius: 34px; box-shadow: var(--shadow); position: sticky; top: 104px; }
.quote-card h2 { font-size: 38px; line-height: 1.05; margin: 0 0 16px; letter-spacing: -.04em; }
.quote-card p { color: rgba(255,255,255,.74); line-height: 1.72; }
.testimonial-grid { display: grid; gap: 16px; }
.testimonial { padding: 22px; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 36px rgba(11, 55, 109, .06); }
.stars { color: #ff9d15; letter-spacing: .08em; margin-bottom: 10px; }
.testimonial p { color: #475569; line-height: 1.7; margin: 0 0 16px; }
.avatar-row { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--soft-blue); color: var(--dna-blue-2); font-weight: 950; }
.avatar-row strong { display: block; }
.avatar-row span { color: var(--muted); font-size: 13px; font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 22px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(11, 55, 109, .05); overflow: hidden; }
.faq-question { width: 100%; text-align: left; border: 0; background: transparent; padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-weight: 920; color: var(--ink); }
.faq-question span { flex: 1; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--soft-blue); color: var(--dna-blue-2); transition: .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 20px 20px; margin: 0; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--soft-orange); color: #b55200; }

/* Refined layanan cards and stable FAQ icons */
.program-grid { gap: 22px; margin-top: 36px; }
.program-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,255,.9)),
    radial-gradient(circle at 92% 10%, rgba(11,142,216,.1), transparent 28%);
  border: 1px solid rgba(11, 142, 216, .11);
  box-shadow: 0 18px 42px rgba(11, 55, 109, .08);
}
.program-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--dna-blue), var(--dna-orange));
  opacity: .78;
}
.program-card.featured {
  outline: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,239,.92)),
    radial-gradient(circle at 90% 8%, rgba(255,122,26,.16), transparent 30%);
  border-color: rgba(255, 122, 26, .28);
  box-shadow: 0 24px 58px rgba(255, 122, 26, .14), 0 18px 42px rgba(11, 55, 109, .08);
}
.program-head { margin-bottom: 18px; }
.program-price {
  align-items: center;
  min-height: 31px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 122, 26, .18);
}
.program-card .icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--dna-blue), var(--dna-blue-2));
  box-shadow: 0 14px 28px rgba(11, 142, 216, .18);
  font-size: 20px;
  font-weight: 950;
}
.program-card.featured .icon-box {
  background: linear-gradient(135deg, #ff6c16, #ff9d15);
  box-shadow: 0 14px 28px rgba(255, 122, 26, .2);
}
.program-card h3 { margin-bottom: 12px; color: var(--dna-navy); line-height: 1.16; }
.program-card p { color: #52647a; line-height: 1.68; }
.program-card ul {
  padding: 16px 0 0;
  gap: 11px;
  margin: 18px 0 24px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}
.program-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #3f536d;
  line-height: 1.48;
  font-weight: 720;
}
.program-card li::before {
  content: "\2022";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 122, 26, .11);
  color: var(--dna-orange);
  font-weight: 950;
}
.faq-question > span:first-child { flex: 1; min-width: 0; }
.faq-icon {
  flex: 0 0 28px;
  font-size: 0;
  position: relative;
  transform: none;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.faq-icon::after { transform: rotate(90deg); transition: opacity .2s ease; }
.faq-item.open .faq-icon { transform: none; }
.faq-item.open .faq-icon::after { opacity: 0; }

.cta-panel {
  position: relative;
  padding: 44px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.22), transparent 22%),
    linear-gradient(135deg, var(--dna-blue-2), var(--dna-blue) 58%, var(--dna-orange));
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta-panel::after { content:""; position:absolute; width:340px; height:340px; right:-130px; top:-130px; border-radius:50%; background:rgba(255,255,255,.16); }
.cta-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.cta-content h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 54px); line-height: 1.02; letter-spacing: -.045em; }
.cta-content p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.75; max-width: 720px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cta-panel .btn-ghost { background: rgba(255,255,255,.18); color: white; border-color: rgba(255,255,255,.32); }
.cta-panel .btn-orange { background: white; color: var(--dna-blue-2); box-shadow: none; }

.footer { padding: 64px 0 28px; background: #071b35; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr .9fr; gap: 28px; }
.footer-logo { width: 190px; background: white; border-radius: 20px; padding: 10px 12px; margin-bottom: 18px; }
.footer p, .footer a, .footer li { color: rgba(255,255,255,.72); line-height: 1.65; }
.footer h3 { margin: 0 0 14px; font-size: 16px; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: white; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.58); font-size: 14px; }

.legal-hero { padding: 84px 0 48px; }
.legal-card { padding: 34px; border-radius: 34px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.legal-list { display: grid; gap: 14px; padding: 0; margin: 24px 0 0; list-style: none; }
.legal-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; color: #4b5f78; line-height: 1.65; }
.legal-list li::before { content: "✓"; width: 42px; height: 42px; border-radius: 16px; display: grid; place-items: center; background: var(--soft-blue); color: var(--dna-blue-2); font-weight: 950; }
.notice { padding: 18px; border-radius: 20px; background: rgba(255, 241, 230, .7); border: 1px solid rgba(255, 122, 26, .16); color: #6d3b13; line-height: 1.7; }

.partner-note {
  max-width: 680px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--dna-orange);
  border-radius: 16px;
  background: rgba(255, 241, 230, .72);
  color: #5f3b1f;
  line-height: 1.65;
}
.partner-note strong { color: #8a3f00; }
.dna-hero .score-value {
  max-width: 260px;
  font-size: 38px;
}
.mastery-hero-visual {
  position: absolute;
  inset: 24px 0 0 auto;
  width: min(520px, 100%);
  min-height: 560px;
}
.mastery-hero-visual::before,
.mastery-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.mastery-hero-visual::before {
  width: 330px;
  height: 330px;
  right: 18px;
  top: 20px;
  background: linear-gradient(135deg, rgba(3,164,237,.2), rgba(255,105,95,.18));
}
.mastery-hero-visual::after {
  width: 190px;
  height: 190px;
  left: 10px;
  bottom: 30px;
  background: rgba(255,105,95,.15);
}
.visual-ticket,
.certificate-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 65px rgba(3,164,237,.13);
  backdrop-filter: blur(18px);
}
.visual-ticket {
  width: min(410px, 92%);
  margin-left: auto;
  padding: 28px;
  border-radius: 34px;
}
.ticket-label,
.certificate-card > span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff3f1;
  color: #ff695f;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.visual-ticket h3 {
  margin: 14px 0 20px;
  color: #2a2a2a;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.ticket-steps {
  display: grid;
  gap: 10px;
}
.ticket-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf9, #f8fcff);
  border: 1px solid #f2e5e3;
}
.ticket-steps strong {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #03a4ed, #ff695f);
  font-size: 13px;
}
.ticket-steps span {
  color: #334155;
  font-weight: 850;
}
.certificate-card {
  width: min(370px, 86%);
  margin-top: -4px;
  margin-left: 22px;
  padding: 24px;
  border-radius: 30px;
}
.certificate-card h4 {
  margin: 13px 0 10px;
  color: #111827;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.certificate-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}
.certificate-line {
  height: 10px;
  margin: 18px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #03a4ed, #ff695f);
}
.certificate-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.certificate-meta div {
  padding: 12px;
  border-radius: 16px;
  background: #f8fcff;
  border: 1px solid #e8f3fb;
}
.certificate-meta strong,
.certificate-meta span {
  display: block;
}
.certificate-meta strong {
  color: #03a4ed;
  font-size: 12px;
}
.certificate-meta span {
  margin-top: 4px;
  color: #334155;
  font-weight: 850;
  font-size: 13px;
}
.visual-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 15px 30px rgba(15,23,42,.12);
}
.chip-blue {
  left: 0;
  top: 74px;
  background: #03a4ed;
}
.chip-orange {
  right: 18px;
  bottom: 112px;
  background: #ff695f;
}
.visual-orbit {
  position: absolute;
  z-index: 1;
  right: 48px;
  bottom: 52px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 22px solid rgba(3,164,237,.14);
}
.hero-photo-card {
  position: absolute;
  inset: 18px 0 0 auto;
  width: min(520px, 100%);
  min-height: 610px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  background: #dce8ef;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,27,53,.06), rgba(7,27,53,.72)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.36), transparent 28%);
}
.photo-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}
.photo-label span,
.photo-floating-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.photo-label strong {
  display: block;
  max-width: 360px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.photo-floating-card {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(250px, calc(100% - 48px));
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(7,27,53,.16);
  backdrop-filter: blur(14px);
}
.photo-floating-card span {
  color: var(--dna-blue-2);
}
.photo-floating-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}
.hero-service-panel {
  position: absolute;
  inset: 18px 0 0 auto;
  width: min(500px, 100%);
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.68)),
    radial-gradient(circle at 16% 16%, rgba(11, 142, 216, .16), transparent 34%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.test-day-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.test-day-card h3 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.test-day-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.support-grid div {
  padding: 14px;
  border-radius: 18px;
  background: #f6fbff;
  border: 1px solid var(--line);
}
.support-grid strong {
  display: block;
  color: var(--dna-blue-2);
  font-size: 13px;
}
.support-grid span {
  display: block;
  margin-top: 5px;
  color: #33465f;
  font-weight: 850;
}
.compact-orbit { inset: 24px 0 0 auto; }
.test-first-hero .hero h1,
.test-first-hero h1 { letter-spacing: -.05em; }
.order-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.venue-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(11, 142, 216, .11), transparent 25%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}
.venue-panel {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 36px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(11, 142, 216, .12);
  box-shadow: var(--shadow-soft);
}
.venue-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--dna-navy), #0b5d93);
  color: white;
  box-shadow: var(--shadow);
}
.venue-card h3 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.035em; }
.venue-card p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.7; }
.venue-card .check-list li { color: rgba(255,255,255,.82); }
.venue-card .check-list li::before { background: rgba(255,255,255,.16); color: white; }
.venue-card .btn { margin-top: 22px; }
.venue-tags { margin-top: 20px; }
.order-form,
.admin-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(11, 55, 109, .06);
}
.order-form label,
.admin-card label {
  display: grid;
  gap: 8px;
  color: #304158;
  font-weight: 850;
}
.order-form input,
.order-form select,
.order-form textarea,
.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus,
.admin-card input:focus,
.admin-card select:focus,
.admin-card textarea:focus {
  border-color: rgba(11, 142, 216, .55);
  box-shadow: 0 0 0 4px rgba(11, 142, 216, .1);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.order-result { max-width: 880px; margin-inline: auto; }
.admin-narrow { max-width: 520px; }
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #f6fbff;
}
.admin-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: #071b35;
  color: white;
}
.admin-nav nav { display: grid; gap: 8px; }
.admin-nav a {
  color: rgba(255,255,255,.78);
  padding: 10px 12px;
  border-radius: 12px;
}
.admin-nav a:hover { color: white; background: rgba(255,255,255,.1); }
.admin-nav form { margin-top: auto; }
.admin-main { padding: 34px; }
.admin-main h1 { margin: 0 0 22px; font-size: 38px; letter-spacing: -.04em; }
.admin-main h2 { margin: 28px 0 14px; }
.admin-settings-form { display: grid; gap: 18px; }
.admin-setting-section h2 {
  margin: 0;
  color: var(--dna-navy);
  font-size: 24px;
  letter-spacing: -.025em;
}
.admin-setting-section p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}
.admin-setting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-setting-grid .span-2 { grid-column: 1 / -1; }
.admin-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.admin-card .field-error { color: #b42318; }
.admin-savebar {
  position: sticky;
  bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  padding: 14px;
  border: 1px solid rgba(11, 142, 216, .12);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 45px rgba(11, 55, 109, .12);
  backdrop-filter: blur(14px);
}
.admin-grid { display: grid; grid-template-columns: 390px 1fr; gap: 20px; align-items: start; }
.admin-list { display: grid; gap: 18px; }
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 16px 36px rgba(11, 55, 109, .06);
}
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.admin-table th { color: var(--dna-navy); background: #eef8ff; }
.admin-table small { color: var(--muted); }
.status-pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(11, 142, 216, .1);
  color: var(--dna-blue-2);
  font-weight: 850;
}
.check-inline { display: flex !important; grid-template-columns: none !important; align-items: center; gap: 10px; }
.check-inline input { width: auto !important; }
.admin-pagination { margin-top: 18px; }
.facts-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: center;
}
.score-range-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(234,247,255,.95), rgba(255,241,230,.78));
  border: 1px solid rgba(11, 142, 216, .12);
  box-shadow: var(--shadow-soft);
}
.range-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.92);
}
.range-item strong {
  display: block;
  color: var(--dna-blue-2);
  font-size: 30px;
  letter-spacing: -.04em;
}
.range-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.reveal { opacity: 0; transform: translateY(24px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: inline-block; }
  .navbar.menu-open .nav-links {
    display: grid;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
  }
  .navbar.menu-open .nav-actions { display: flex; position: absolute; top: calc(82px + 352px); left: 20px; right: 20px; background: rgba(255, 255, 255, .96); padding: 14px; border-radius: 24px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
  .nav-link, .dropdown-toggle { width: 100%; text-align: left; justify-content: flex-start; border-radius: 14px; }
  .dropdown-menu { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; border: 0; padding-top: 0; display: none; }
  .dropdown.open .dropdown-menu { display: grid; }
  .hero-grid, .pathway, .testimonial-wrap, .faq-grid { grid-template-columns: 1fr; }
  .order-panel, .admin-grid, .facts-grid, .venue-panel { grid-template-columns: 1fr; }
  .dna-hero .hero-grid { min-height: auto; }
  .hero-visual { min-height: 570px; }
  .audience-hero-visual { position: relative; inset: auto; margin: 12px auto 0; min-height: 640px; }
  .audience-hero-visual::before {
    right: 50%;
    transform: translateX(50%) rotate(-4deg);
  }
  .audience-hero-visual::after {
    right: 50%;
    transform: translateX(50%) rotate(5deg);
  }
  .audience-photo {
    right: 50%;
    width: min(570px, 94vw);
    height: 390px;
    transform: translateX(50%) rotate(-1.4deg);
  }
  .orbit-card { left: 0; right: 0; margin: auto; }
  .mastery-hero-visual { position: relative; inset: auto; margin: auto; min-height: 500px; }
  .hero-service-panel { position: relative; inset: auto; margin: auto; }
  .hero-photo-card { position: relative; inset: auto; margin: auto; min-height: 520px; }
  .hero-photo-card img { min-height: 520px; }
  .float-1 { left: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .program-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cta-content { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner { align-items: flex-start; flex-direction: column; padding-block: 9px; gap: 4px; }
  .navbar-inner { height: 74px; }
  .brand img { width: 104px; }
  .navbar.menu-open .nav-links { top: 74px; }
  .navbar.menu-open .nav-actions { top: calc(74px + 352px); flex-direction: column; }
  .navbar.menu-open .nav-actions .btn { width: 100%; }
  .hero { padding-top: 52px; }
  .dna-hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 650px; margin-top: 20px; }
  .audience-hero-visual { width: 100%; min-height: 650px; }
  .audience-photo {
    left: 50%;
    right: auto;
    bottom: 132px;
    width: min(500px, 94vw);
    height: 336px;
    transform: translateX(-50%) rotate(-1.4deg);
    border-radius: 32px 32px 32px 72px;
    border-width: 8px;
  }
  .audience-photo::before {
    width: 76px;
    height: 6px;
    left: 18px;
    top: 20px;
  }
  .audience-hero-visual::before {
    right: 50%;
    bottom: 104px;
    width: min(410px, 88vw);
    height: 340px;
    transform: translateX(50%) rotate(-4deg);
    border-radius: 40px 40px 40px 92px;
  }
  .audience-hero-visual::after {
    right: 50%;
    bottom: 82px;
    width: min(340px, 80vw);
    height: 280px;
    transform: translateX(50%) rotate(5deg);
    border-radius: 36px 70px 36px 36px;
  }
  .card-campus { left: 0; top: 20px; }
  .card-career { right: 0; top: 104px; }
  .card-test { left: 8px; bottom: 140px; }
  .hero-goal-card {
    min-width: 168px;
    max-width: 206px;
    padding: 12px 13px 12px 48px;
  }
  .hero-goal-card::before {
    left: 13px;
    top: 13px;
    width: 25px;
    height: 25px;
  }
  .hero-goal-card strong { font-size: 14px; }
  .hero-brush {
    left: 50%;
    right: auto;
    bottom: 42px;
    width: min(360px, 88vw);
    padding: 16px 20px 16px 54px;
    transform: translateX(-50%) rotate(-1.5deg);
    font-size: 15px;
  }
  .ring-one,
  .ring-two { display: none; }
  .orbit-card { padding: 18px; border-radius: 30px; }
  .hero-service-panel { padding: 18px; border-radius: 28px; }
  .hero-photo-card { min-height: 440px; border-radius: 30px; }
  .hero-photo-card img { min-height: 440px; }
  .photo-floating-card { top: 16px; right: 16px; width: calc(100% - 32px); }
  .photo-label { left: 18px; right: 18px; bottom: 18px; }
  .photo-label strong { font-size: 23px; }
  .support-grid { grid-template-columns: 1fr; }
  .visual-logo { width: 180px; }
  .mastery-hero-visual { min-height: 560px; }
  .visual-ticket,
  .certificate-card { width: 100%; margin-left: 0; }
  .visual-ticket { padding: 22px; border-radius: 26px; }
  .visual-ticket h3 { font-size: 28px; }
  .certificate-card { margin-top: 14px; }
  .visual-chip { position: relative; margin: 10px 8px 0 0; left: auto; right: auto; top: auto; bottom: auto; }
  .visual-orbit { display: none; }
  .float-card { display: none; }
  .trust-card { align-items: flex-start; flex-direction: column; }
  .trust-tags { justify-content: flex-start; }
  .grid-4, .grid-3, .program-grid, .stats-grid { grid-template-columns: 1fr; }
  .requirements { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .score-range-card { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-nav { position: static; height: auto; }
  .admin-main { padding: 22px; }
  .admin-setting-grid { grid-template-columns: 1fr; }
  .admin-savebar { justify-content: stretch; }
  .admin-savebar .btn { width: 100%; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-head { display: none; }
  .compare-row > div { border-bottom: 1px solid var(--line); }
  .compare-row > div::before { display: block; font-size: 12px; color: var(--dna-blue-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 950; margin-bottom: 4px; }
  .compare-row > div:nth-child(1)::before { content: "Format"; }
  .compare-row > div:nth-child(2)::before { content: "Isi / komponen"; }
  .compare-row > div:nth-child(3)::before { content: "Kapan dipilih"; }
  .compare-row > div:nth-child(1)::before { content: "Kebutuhan"; }
  .compare-row > div:nth-child(2)::before { content: "TOEFL ITP®"; }
  .compare-row > div:nth-child(3)::before { content: "TOEFL iBT®"; }
  .compare-row > div:nth-child(1)::before { content: "Format"; }
  .compare-row > div:nth-child(2)::before { content: "Isi / komponen"; }
  .compare-row > div:nth-child(3)::before { content: "Kapan dipilih"; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Revisi posisi banner hero: visual dinaikkan agar tidak terlalu turun di desktop */
@media (min-width: 992px) {
  .dna-hero { padding-top: 38px; padding-bottom: 30px; }
  .dna-hero .hero-grid { min-height: 560px; align-items: start; }
  .audience-hero-visual { transform: translateY(-54px); }
  .dna-hero h1 { margin-top: 14px; }
}

/* Layanan carousel */
.program-carousel {
  position: relative;
  margin-top: 32px;
  padding-bottom: 50px;
  overflow: hidden;
}
.program-carousel::before,
.program-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 50px;
  z-index: 3;
  width: 64px;
  pointer-events: none;
}
.program-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.program-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.program-carousel .program-grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  margin-top: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.program-carousel .program-grid::-webkit-scrollbar { display: none; }
.program-carousel .program-card {
  flex: 0 0 clamp(280px, calc((100% - 32px) / 3), 350px);
  min-height: 410px;
  padding: 21px;
  scroll-snap-align: start;
}
.program-carousel .program-head {
  align-items: center;
  margin-bottom: 13px;
}
.program-carousel .program-kicker,
.program-carousel .program-price {
  font-size: 11px;
}
.program-carousel .program-card .icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-size: 18px;
}
.program-carousel .program-card h3 {
  font-size: 20px;
  line-height: 1.18;
}
.program-carousel .program-card p {
  font-size: 14px;
  line-height: 1.58;
}
.program-carousel .program-card ul {
  gap: 8px;
  margin: 14px 0 18px;
  padding-top: 13px;
}
.program-carousel .program-card li {
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-size: 13px;
  line-height: 1.38;
}
.program-carousel .program-card li::before {
  width: 18px;
  height: 18px;
  font-size: 12px;
}
.program-carousel .program-card .btn {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 13px;
}
.program-carousel-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 142, 216, .16);
  border-radius: 50%;
  color: var(--dna-blue-2);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(11, 55, 109, .08);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}
.carousel-btn:hover {
  color: white;
  background: var(--dna-blue-2);
}

@media (max-width: 1060px) {
  .program-carousel .program-card {
    flex-basis: clamp(276px, calc((100% - 16px) / 2), 340px);
  }
}

/* Service detail page */
.service-detail-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 122, 26, .16), transparent 26%),
    linear-gradient(135deg, #f2fbff, #ffffff 48%, #fff7ef);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: center;
}
.service-price-card {
  padding: 28px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, var(--dna-navy), var(--dna-blue-2));
  box-shadow: var(--shadow);
}
.service-price-card span {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 850;
}
.service-price-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -.04em;
}
.service-price-card .check-list li {
  color: rgba(255,255,255,.82);
}
.service-price-card .check-list li::before {
  background: rgba(255,255,255,.16);
  color: white;
}
.service-tabs-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: start;
}
.service-detail-cards {
  display: grid;
  gap: 16px;
}
.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-info-card h3 {
  margin: 0 0 14px;
  color: var(--dna-navy);
  font-size: 22px;
}
.service-note-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11, 142, 216, .12);
  box-shadow: var(--shadow-soft);
}
.service-note-panel h2 {
  margin: 14px 0 0;
  color: var(--dna-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #4b5f78;
  line-height: 1.6;
  font-weight: 700;
}
.schedule-table {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.schedule-row > div {
  padding: 17px 20px;
  border-bottom: 1px solid #edf2f7;
  color: #0f172a;
  font-size: 20px;
}
.schedule-row > div + div {
  border-left: 1px solid #edf2f7;
}
.schedule-row:nth-child(even):not(.schedule-head) {
  background: #f1f1f1;
}
.schedule-head {
  background: #ffffff;
  font-weight: 950;
}
.schedule-head > div {
  font-size: 18px;
}

@media (max-width: 1060px) {
  .service-detail-grid,
  .service-tabs-grid,
  .service-note-panel {
    grid-template-columns: 1fr;
  }
  .service-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-price-card {
    padding: 22px;
  }
  .schedule-row {
    grid-template-columns: 1fr;
  }
  .schedule-row > div {
    font-size: 17px;
  }
  .schedule-row > div + div {
    border-left: 0;
  }
}

/* Registration page */
.registration-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(11, 142, 216, .12), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f7fbff);
}
.registration-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.registration-notice {
  margin-bottom: 18px;
}
.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.registration-card,
.registration-summary {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.registration-summary {
  position: sticky;
  top: 104px;
}
.registration-summary h2 {
  margin: 0 0 16px;
  color: var(--dna-navy);
  font-size: 24px;
  letter-spacing: -.025em;
}
.step-meter {
  margin-bottom: 22px;
}
.step-meter div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--dna-navy);
  font-weight: 900;
}
.step-meter span:last-child {
  color: var(--dna-blue-2);
}
.step-track {
  display: block;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e8f3fb;
  overflow: hidden;
}
.step-track span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dna-blue), var(--dna-orange));
  transition: width .2s ease;
}
.registration-step {
  display: none;
  gap: 16px;
}
.registration-step.active {
  display: grid;
}
.registration-form label,
.form-label-like {
  display: grid;
  gap: 8px;
  color: #304158;
  font-weight: 850;
}
.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: rgba(11, 142, 216, .55);
  box-shadow: 0 0 0 4px rgba(11, 142, 216, .1);
}
.registration-form small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.addon-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.check-option {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px !important;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fcff;
  cursor: pointer;
}
.check-option input {
  width: auto;
}
.check-option span {
  color: #33465f;
  font-size: 14px;
}
.check-option strong {
  color: var(--dna-blue-2);
  font-size: 13px;
  white-space: nowrap;
}
.registration-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}
.registration-actions.split {
  justify-content: space-between;
}
.institution-note {
  display: none;
  padding: 14px;
  border-radius: 16px;
  color: #075985;
  background: #eaf7ff;
  border: 1px solid rgba(11, 142, 216, .16);
  font-weight: 760;
  line-height: 1.55;
}
.payment-proof-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  color: #304158;
  background: #fff7ed;
  border: 1px solid rgba(255, 122, 26, .2);
}
.payment-proof-card strong,
.payment-proof-card span {
  display: block;
}
.payment-proof-card strong {
  color: #8a3f00;
}
.payment-proof-card span {
  margin-top: 4px;
  color: #7c4a18;
  font-weight: 720;
  line-height: 1.45;
}
[hidden] { display: none !important; }
.price-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: 1.5fr .9fr 44px .9fr;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: #475569;
  font-size: 13px;
}
.price-head {
  color: var(--dna-navy);
  background: #eef8ff;
  font-weight: 950;
}
.price-row span:nth-child(2),
.price-row span:nth-child(3),
.price-row span:nth-child(4) {
  text-align: right;
}
.price-row.price-total {
  grid-template-columns: 1fr auto;
  border-bottom: 0;
  background: #fff7ed;
  color: #8a3f00;
  font-size: 16px;
  font-weight: 950;
}
.price-row.price-total strong {
  color: #8a3f00;
}
.price-empty {
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1060px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }
  .registration-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .registration-card,
  .registration-summary {
    padding: 18px;
    border-radius: 22px;
  }
  .addon-options {
    grid-template-columns: 1fr;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
  .price-row span:nth-child(2),
  .price-row span:nth-child(3),
  .price-row span:nth-child(4) {
    text-align: left;
  }
  .registration-actions,
  .registration-actions.split {
    flex-direction: column;
  }
  .registration-actions .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .program-carousel {
    padding-bottom: 48px;
  }
  .program-carousel::before,
  .program-carousel::after {
    width: 24px;
  }
  .program-carousel .program-card {
    flex-basis: min(86vw, 330px);
    min-height: 390px;
  }
  .program-carousel-controls {
    left: 0;
    justify-content: center;
  }
}
