  :root {
    --purple-900: #2A0F5C;
    --purple-800: #3D1A78;
    --purple-700: #4E2392;
    --purple-600: #6332B0;
    --gold-500: #F5B824;
    --gold-400: #FFC93C;
    --gold-300: #FFD96B;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --gray-100: #F5F5F7;
    --gray-200: #E5E5EA;
    --gray-600: #6B6B72;
    --gray-900: #1C1C1E;
    --shadow-sm: 0 2px 8px rgba(42, 15, 92, 0.08);
    --shadow-md: 0 8px 24px rgba(42, 15, 92, 0.12);
    --shadow-lg: 0 16px 48px rgba(42, 15, 92, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1200px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }

  a { color: inherit; text-decoration: none; }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== HEADER ===== */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(42, 15, 92, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 184, 36, 0.2);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--container);
    margin: 0 auto;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-500);
  }

  .nav-brand-text {
    color: var(--white);
    line-height: 1.1;
  }

  .nav-brand-text strong {
    display: block;
    font-size: 18px;
    color: var(--gold-400);
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .nav-brand-text span {
    font-size: 11px;
    color: var(--cream);
    opacity: 0.85;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
  }

  .nav-menu a {
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .nav-menu a:not(.btn):hover {
    background: rgba(245, 184, 36, 0.15);
    color: var(--gold-400);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
  }

  .btn-primary,
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary:visited {
    color: var(--purple-900) !important;
  }

  .btn-primary {
    background: var(--gold-500);
    box-shadow: 0 4px 14px rgba(245, 184, 36, 0.35);
    transition: background 0.15s ease,
                box-shadow 0.15s ease,
                transform 0.08s ease;
  }

  .btn-primary:hover {
    background: var(--gold-400);
    box-shadow: 0 6px 18px rgba(245, 184, 36, 0.45);
  }

  .btn-primary:active {
    background: #E0A718;
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 2px 6px rgba(245, 184, 36, 0.3),
                inset 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-400);
  }

  .btn-outline:hover {
    background: var(--gold-400);
    color: var(--purple-900);
  }

  .nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-400);
    cursor: pointer;
    padding: 8px;
  }

  .nav-toggle svg { width: 28px; height: 28px; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    background:
      radial-gradient(circle at 20% 20%, rgba(245, 184, 36, 0.18), transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(99, 50, 176, 0.4), transparent 50%),
      linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 100px 0 120px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(rgba(245, 184, 36, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    pointer-events: none;
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 184, 36, 0.15);
    border: 1px solid rgba(245, 184, 36, 0.4);
    border-radius: 999px;
    color: var(--gold-300);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p {
    font-size: 18px;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 540px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 184, 36, 0.25);
  }

  .hero-stats div strong {
    display: block;
    font-size: 28px;
    color: var(--gold-400);
    font-weight: 800;
  }

  .hero-stats div span {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.85;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero-logo-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
  }

  .hero-logo-image {
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(245, 184, 36, 0.25);
  }

  .hero-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-logo-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(42, 15, 92, 0.5) 100%);
    pointer-events: none;
  }

  .hero-logo-ring {
    position: absolute;
    inset: -14px;
    border-radius: 36px;
    border: 1px solid rgba(245, 184, 36, 0.3);
    pointer-events: none;
  }

  .hero-badge {
    position: absolute;
    background: var(--white);
    color: var(--purple-800);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-badge.b1 { top: 20px; right: -20px; }
  .hero-badge.b2 { bottom: 30px; left: -20px; }

  .hero-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-500);
  }

  .hero-badge.b2 .dot { background: #2EBB58; }

  /* ===== SECTION COMMON ===== */
  section { padding: 80px 0; }

  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
  }

  .section-eyebrow {
    color: var(--gold-500);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    color: var(--purple-800);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-head p {
    font-size: 17px;
    color: var(--gray-600);
  }

  /* ===== ABOUT / FEATURES ===== */
  .about { background: var(--gray-100); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold-500);
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-400);
  }

  .feature-icon svg { width: 28px; height: 28px; }

  .feature-card h3 {
    font-size: 19px;
    color: var(--purple-800);
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-card p {
    color: var(--gray-600);
    font-size: 15px;
  }

  /* ===== PROGRAMS ===== */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .program-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
    color: var(--white);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .program-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 36, 0.4), transparent 70%);
  }

  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .program-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--purple-900);
    background: var(--gold-400);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    position: relative;
  }

  .program-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 700;
  }

  .program-card p {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
  }

  .program-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 184, 36, 0.25);
    position: relative;
  }

  .program-card .meta span {
    font-size: 13px;
    color: var(--gold-300);
  }

  .program-card .meta a {
    color: var(--gold-400);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* ===== FEES ===== */
  .fees { background: var(--gray-100); }

  .fee-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--white);
  }

  .fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
  }

  .fee-table thead th {
    background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 24px;
    text-align: left;
    white-space: nowrap;
  }

  .fee-table thead th small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--cream);
    opacity: 0.7;
    text-transform: none;
    margin-top: 2px;
  }

  .fee-table thead th.num { text-align: right; }

  .fee-table tbody td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-900);
    vertical-align: middle;
  }

  .fee-table tbody tr:last-child td { border-bottom: none; }
  .fee-table tbody tr:hover { background: rgba(99, 50, 176, 0.04); }

  .fee-code {
    display: inline-block;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-700);
    background: rgba(99, 50, 176, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .fee-course { font-weight: 600; color: var(--purple-800); }

  .fee-amount {
    text-align: right;
    font-weight: 700;
    color: var(--purple-900);
    white-space: nowrap;
  }

  .fee-amount .cur {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
    margin-right: 2px;
  }

  /* installment plan + notes */
  .fee-extra {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    margin-top: 28px;
  }

  .fee-plan {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
  }

  .fee-plan::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 36, 0.4), transparent 70%);
  }

  .fee-plan .plan-tag {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--purple-900);
    background: var(--gold-400);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
  }

  .fee-plan .plan-price {
    position: relative;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold-400);
    margin-bottom: 4px;
  }

  .fee-plan .plan-price span { font-size: 15px; color: var(--cream); font-weight: 500; }

  .fee-plan .plan-sub {
    position: relative;
    font-size: 14px;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 22px;
  }

  .fee-plan .plan-rows {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 184, 36, 0.25);
  }

  .fee-plan .plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .fee-plan .plan-row span { color: var(--cream); opacity: 0.85; }
  .fee-plan .plan-row strong { color: var(--white); font-weight: 700; }
  .fee-plan .plan-row strong.total { color: var(--gold-400); font-size: 17px; }

  .fee-notes {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold-500);
  }

  .fee-notes h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--purple-800);
    font-weight: 700;
    margin-bottom: 18px;
  }

  .fee-notes h4 svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }

  .fee-notes ul { list-style: none; }

  .fee-notes ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.55;
  }

  .fee-notes ul li:last-child { margin-bottom: 0; }

  .fee-notes ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
  }

  /* ===== NEWS & ACTIVITIES (SIDE BY SIDE) ===== */
  .news-activities {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  }

  .na-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .na-column {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .na-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 2px solid var(--gray-200);
    background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
    color: var(--white);
  }

  .na-header h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-400);
  }

  .na-header h3 svg { width: 22px; height: 22px; }

  .na-header a {
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s;
  }

  .na-header a:hover { opacity: 1; color: var(--gold-300); }

  .na-list {
    padding: 8px 0;
  }

  .na-item {
    display: flex;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s ease;
    cursor: pointer;
  }

  .na-item:last-child { border-bottom: none; }

  .na-item:hover {
    background: rgba(99, 50, 176, 0.04);
  }

  .na-date {
    flex-shrink: 0;
    width: 56px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--purple-900);
    line-height: 1;
  }

  .na-date strong {
    font-size: 22px;
    font-weight: 800;
  }

  .na-date span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
  }

  .na-content { flex: 1; min-width: 0; }

  .na-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--purple-700);
    background: rgba(99, 50, 176, 0.1);
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  .na-tag.event { color: var(--gold-500); background: rgba(245, 184, 36, 0.12); }

  .na-content h4 {
    font-size: 16px;
    color: var(--purple-800);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .na-content p {
    font-size: 13px;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .na-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-600);
  }

  .na-meta svg { width: 14px; height: 14px; vertical-align: middle; }

  /* ===== CTA ===== */
  .cta {
    background:
      radial-gradient(circle at 80% 50%, rgba(245, 184, 36, 0.2), transparent 60%),
      linear-gradient(135deg, var(--purple-900), var(--purple-700));
    color: var(--white);
    text-align: center;
  }

  .cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .cta h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
  }

  .cta h2 .highlight {
    color: var(--gold-400);
  }

  .cta p {
    font-size: 17px;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 32px;
  }

  .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--purple-900);
    color: var(--cream);
    padding: 64px 0 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-500);
    margin-bottom: 16px;
  }

  .footer-brand h4 {
    color: var(--gold-400);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
    max-width: 320px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(245, 184, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    transition: all 0.2s;
  }

  .footer-social a:hover {
    background: var(--gold-400);
    color: var(--purple-900);
    transform: translateY(-2px);
  }

  .footer-social svg { width: 18px; height: 18px; }

  .footer-col h5 {
    color: var(--gold-400);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
  }

  .footer-col ul a:hover {
    opacity: 1;
    color: var(--gold-400);
  }

  .footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.85;
  }

  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-400);
  }

  .footer-bottom {
    border-top: 1px solid rgba(245, 184, 36, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }

  /* ===== RESPONSIVE: TABLET ===== */
  @media (max-width: 980px) {
    .hero { padding: 64px 0 80px; }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
    }

    .hero p { margin-left: auto; margin-right: auto; }

    .hero-actions { justify-content: center; }

    .hero-logo-frame { max-width: 340px; }

    .hero-stats { max-width: 480px; margin-left: auto; margin-right: auto; }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .footer-brand { grid-column: 1 / -1; }
  }

  /* ===== RESPONSIVE: MOBILE ===== */
  @media (max-width: 720px) {
    section { padding: 56px 0; }

    .nav { padding: 12px 16px; }

    .nav-brand img { width: 40px; height: 40px; }
    .nav-brand-text strong { font-size: 16px; }
    .nav-brand-text span { font-size: 10px; }

    .nav-menu {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--purple-900);
      padding: 16px;
      border-top: 1px solid rgba(245, 184, 36, 0.2);
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      transition: all 0.25s ease;
    }

    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .nav-menu a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
    }

    .nav-menu .btn {
      width: 100%;
      margin-top: 8px;
    }

    .nav-toggle { display: block; }

    .container { padding: 0 16px; }

    .hero { padding: 48px 0 64px; }

    .hero-stats {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      padding-top: 24px;
      margin-top: 32px;
    }

    .hero-stats div strong { font-size: 22px; }
    .hero-stats div span { font-size: 11px; }

    .hero-badge { padding: 8px 12px; font-size: 11px; }
    .hero-badge.b1 { right: 0; }
    .hero-badge.b2 { left: 0; }

    .section-head { margin-bottom: 36px; }
    .section-head p { font-size: 15px; }

    .feature-card { padding: 24px 20px; }

    .program-card { padding: 24px 20px; }

    /* fee table -> stacked cards */
    .fee-table-wrap {
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }
    .fee-table { min-width: 0; }
    .fee-table thead { display: none; }
    .fee-table tbody, .fee-table tr, .fee-table td { display: block; width: 100%; }
    .fee-table tbody tr {
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      padding: 18px 20px;
      margin-bottom: 16px;
    }
    .fee-table tbody tr:hover { background: var(--white); }
    .fee-table tbody tr:last-child { margin-bottom: 0; }
    .fee-table tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 9px 0;
      border-bottom: 1px solid var(--gray-200);
      font-size: 15px;
    }
    .fee-table tbody td:last-child { border-bottom: none; }
    .fee-table tbody td::before {
      content: attr(data-label);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--gray-600);
      flex-shrink: 0;
    }
    .fee-amount { text-align: right; }
    .fee-extra { grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
    .fee-plan, .fee-notes { padding: 24px 20px; }

    .na-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .na-header { padding: 18px 20px; }
    .na-item { padding: 14px 20px; gap: 12px; }
    .na-date { width: 48px; height: 56px; }
    .na-date strong { font-size: 18px; }

    .footer { padding: 48px 0 24px; }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 380px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
  }

  /* ===== PAGE HERO (inner pages) ===== */
  .page-hero {
    position: relative;
    background:
      radial-gradient(circle at 15% 20%, rgba(245, 184, 36, 0.16), transparent 45%),
      radial-gradient(circle at 85% 90%, rgba(99, 50, 176, 0.4), transparent 55%),
      linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
    color: var(--white);
    padding: 64px 0 56px;
    text-align: center;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 184, 36, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
  }
  .page-hero .container { position: relative; }
  .page-crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gold-300);
    margin-bottom: 16px;
    opacity: 0.9;
  }
  .page-crumb a { color: var(--cream); opacity: 0.8; transition: opacity 0.2s; }
  .page-crumb a:hover { opacity: 1; color: var(--gold-400); }
  .page-crumb span { opacity: 0.5; }
  .page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .page-hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .page-hero p {
    font-size: 17px;
    color: var(--cream);
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .page-hero { padding: 44px 0 40px; }
    .page-hero p { font-size: 15px; }
  }

  /* ===== PROGRAM DETAIL ===== */
  .program-detail { background: var(--white); }

  .prog-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-700);
    background: rgba(99, 50, 176, 0.1);
    padding: 6px 16px;
    border-radius: 999px;
    margin-top: 14px;
    letter-spacing: 0.5px;
  }
  .prog-code-badge svg { width: 15px; height: 15px; }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

  .info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    margin-bottom: 18px;
  }
  .info-icon svg { width: 26px; height: 26px; }

  .info-card h3 {
    font-size: 19px;
    color: var(--purple-800);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .info-card ul { list-style: none; }

  .info-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    font-size: 15px;
    color: var(--gray-900);
    line-height: 1.5;
  }
  .info-card ul li:last-child { margin-bottom: 0; }

  .info-card ul li svg {
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    color: var(--gold-500);
    flex-shrink: 0;
  }

  /* career highlight banner */
  .career-banner {
    margin-top: 32px;
    background:
      radial-gradient(circle at 88% 50%, rgba(245, 184, 36, 0.22), transparent 55%),
      linear-gradient(135deg, var(--purple-900), var(--purple-700));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
  }
  .career-num {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
  }
  .career-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  .career-label span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--cream);
    opacity: 0.85;
    margin-top: 4px;
  }

  @media (max-width: 720px) {
    .career-banner { flex-direction: column; gap: 6px; padding: 30px 24px; text-align: center; }
    .career-label { font-size: 18px; }
  }

  /* numbered list marker in fee table */
  .fee-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-500);
    color: var(--purple-900);
    font-weight: 700;
    font-size: 13px;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .fee-code { vertical-align: middle; }

  /* ===== LALUAN PANTAS (fast-track stepper) ===== */
  .pathway {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .path-step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px 22px;
    text-align: center;
  }
  .path-step .step-ic {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
  }
  .path-step .step-ic svg { width: 24px; height: 24px; }
  .path-step h4 { font-size: 16px; color: var(--purple-800); font-weight: 700; margin-bottom: 4px; }
  .path-step p { font-size: 13px; color: var(--gray-600); line-height: 1.4; }
  .path-arrow {
    display: flex;
    align-items: center;
    color: var(--gold-500);
    flex-shrink: 0;
  }
  .path-arrow svg { width: 26px; height: 26px; }
  @media (max-width: 720px) {
    .pathway { flex-direction: column; align-items: stretch; }
    .path-step { max-width: none; }
    .path-arrow { justify-content: center; transform: rotate(90deg); }
  }

  /* ===== 10 ADVANTAGES ===== */
  .advantages { background: var(--gray-100); }
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .benefit-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .benefit-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--purple-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
  }
  .benefit-item span { font-size: 15px; font-weight: 500; color: var(--purple-800); line-height: 1.35; }
  @media (max-width: 720px) {
    .benefits-grid { grid-template-columns: 1fr; }
  }

  /* ===== CONTACT / WHATSAPP + CALL BUTTONS ===== */
  .contact-cta { text-align: center; margin-top: 44px; }
  .contact-person {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 18px;
  }
  .contact-person strong { color: var(--purple-800); font-weight: 700; }
  .btn-whatsapp,
  .btn-whatsapp:visited { background: #25D366; color: #FFFFFF !important; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
  .btn-whatsapp:hover { background: #1EBE5A; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45); }
  .btn-call,
  .btn-call:visited { background: var(--purple-700); color: #FFFFFF !important; box-shadow: 0 4px 14px rgba(78, 35, 146, 0.35); }
  .btn-call:hover { background: var(--purple-800); }
  .btn-whatsapp svg, .btn-call svg { width: 18px; height: 18px; }

  /* ===== POSTER ===== */
  .poster-section { background: var(--white); }
  .poster-frame {
    display: block;
    max-width: 1040px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .poster-frame:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(42, 15, 92, 0.24); }
  .poster-frame img { width: 100%; height: auto; display: block; }
  .poster-hint { text-align: center; margin-top: 16px; font-size: 13px; color: var(--gray-600); }

  /* ===== TOUR GUIDE ===== */
  .tourguide { background: var(--gray-100); }
  .tg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .tg-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .tg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .tg-ic {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
  }
  .tg-ic svg { width: 28px; height: 28px; }
  .tg-card h4 { font-size: 19px; color: var(--purple-800); font-weight: 700; margin-bottom: 6px; }
  .tg-card p { font-size: 14px; color: var(--gray-600); line-height: 1.4; }

  .contact-section { background: var(--white); }

  /* ===== NEWS/ACTIVITIES EMPTY STATE ===== */
  .na-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 28px;
  }
  .na-empty-ic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--purple-600);
  }
  .na-empty-ic svg { width: 30px; height: 30px; }
  .na-empty h4 { font-size: 16px; color: var(--purple-800); font-weight: 700; margin-bottom: 6px; }
  .na-empty p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
