:root {
  --bg-sand: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-alt: #FAFAFE;

  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-tag: #475569;

  --cobalt-primary: #475569;
  --cobalt-hover: #334155;
  --lime-accent: #D4FC31;
  --lime-hover: #C2EE1B;
  --lime-surface: #E5FF70;

  --flame-coral: #475569;
  --flame-coral-hover: #334155;
  --sunny-gold: #D4FC31;
  --sunny-gold-hover: #C2EE1B;
  --candy-pink: #EC4899;
  --candy-cyan: #38BDF8;

  --border-light: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.16);
  --border-coral: #D4FC31;

  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 12px 35px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 22px 50px rgba(15, 23, 42, 0.12);
  --shadow-coral: 0 12px 35px rgba(212, 252, 49, 0.4);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body.light-horizon-theme {
  background-color: var(--bg-sand);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-feat-icon img { width: 58px; height: 58px; display: block; }
.original-emoji-art { display:inline-block; width:1.15em; height:1.15em; margin:0 .12em; vertical-align:-.16em; border-radius:32%; background:linear-gradient(135deg,#D4FC31 0 46%,#4338CA 47% 100%); position:relative; box-shadow:0 1px 0 rgba(15,23,42,.12); }
.original-emoji-art::before { content:''; position:absolute; width:38%; height:38%; left:31%; top:18%; border-radius:50%; background:#fff; opacity:.95; }
.original-emoji-art::after { content:''; position:absolute; width:52%; height:18%; left:24%; bottom:18%; border-radius:99px; background:#0F172A; }
.btn .original-emoji-art,.programs-supertag .original-emoji-art,.card-hit-badge .original-emoji-art { width:1em; height:1em; }
.course-mark,.mini-mark { display:inline-block; vertical-align:middle; flex:none; }
.course-mark { width:18px; height:18px; border-radius:50%; margin-right:8px; background:var(--cobalt-primary); box-shadow: inset 0 0 0 4px var(--lime-accent); }
.mark-ios { background:var(--lime-accent); box-shadow: inset 0 0 0 4px var(--cobalt-primary); }
.mark-vip { background:var(--candy-pink); box-shadow: inset 0 0 0 4px #ffd166; }
.mini-mark { width:20px; height:20px; border-radius:6px; margin-right:7px; background:var(--cobalt-primary); position:relative; }
.mark-group:after { content:'+'; color:#fff; font-weight:900; position:absolute; inset:0; text-align:center; line-height:20px; }
.mark-doc { background:var(--lime-accent); border:2px solid var(--cobalt-primary); }
.mark-chat { background:var(--candy-cyan); }
.mark-cap { background:var(--candy-pink); transform:rotate(45deg) scale(.75); }

/* Lime Green Bento Navbar matching Reference Image Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  padding: 16px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-container {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  border: none;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo Brand */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-img, .footer-logo-img {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  filter: invert(86%) sepia(85%) saturate(1400%) hue-rotate(22deg) brightness(108%) contrast(105%);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.logo-max {
  color: #0F172A;
}
.logo-ai, .brand-ai {
  background: linear-gradient(180deg, #F2FF66 0%, #B4EC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin: 0 3px;
}
.logo-academy {
  color: #0F172A;
}
.ai-green, .brand-ai {
  color: #70B600;
  font-weight: inherit;
}

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: #0F172A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #84CC16;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone-link:hover {
  color: #65A30D;
}
.btn-nav-compact {
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.btn-nav-compact:hover {
  transform: translateY(-1.5px) scale(1.02);
  background: linear-gradient(180deg, #FF6B78 0%, #F04351 100%);
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.5);
}

/* Language Dropdown Selector */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  background: #FFFFFF;
  border: none;
  color: #0F172A;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  box-shadow: none;
}
.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.arrow-down {
  font-size: 10px;
  color: #64748B;
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFF;
  border: 1px solid var(--border-medium);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  z-index: 120;
}
.lang-opt-item {
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s ease;
}
.lang-opt-item:hover, .lang-opt-item.active {
  background: #F1F5F9;
  color: var(--text-dark);
}

/* Ruang Edit Style Buttons & Pills */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.3px;
}
.btn-hero-glow {
  background: #D4FC31;
  color: #0F172A;
  border: none;
  box-shadow: 0 8px 24px rgba(212, 252, 49, 0.35);
  font-weight: 900;
}
.btn-hero-glow:hover {
  background: #C2EE1B;
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 252, 49, 0.5);
}
.btn-coral {
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 10px 24px -4px rgba(230, 57, 70, 0.45);
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.btn-coral:hover {
  background: linear-gradient(180deg, #FF6B78 0%, #F04351 100%);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 28px -4px rgba(230, 57, 70, 0.6);
}
.btn-coral:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 12px -2px rgba(230, 57, 70, 0.35);
}
.btn-outline {
  background: #FFF;
  color: var(--text-dark);
  border: 2px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--cobalt-primary);
  background: var(--cobalt-primary);
  color: #FFF;
  transform: translateY(-2px);
}
.btn-large {
  padding: 16px 36px;
  font-size: 15px;
}
.btn-full {
  width: 100%;
}

/* Ruang Edit Pill Highlights & Star Sparkles */
.title-pill-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  background: linear-gradient(135deg, #FF9F43 0%, #F97316 100%);
  border-radius: 999px;
  color: #FFF;
  font-size: 24px;
  margin: 0 10px;
  vertical-align: middle;
  box-shadow: 0 8px 24px rgba(255, 159, 67, 0.35);
}
.star-sparkle {
  color: var(--flame-coral);
  font-size: 24px;
  display: inline-block;
  animation: floatSparkle 3s ease-in-out infinite;
}
@keyframes floatSparkle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(15deg); }
}

/* Hero Unboxed 2-Column Section (Left Text + Right Image) */
.hero-unboxed-section {
  padding: 130px 0 60px;
}
.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.hero-text-col {
  text-align: left;
}
.hero-unboxed-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  color: #0F172A;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}
.title-pill-lime {
  display: inline-block;
  background: #D4FC31;
  color: #0F172A;
  padding: 4px 16px;
  border-radius: 999px;
  margin-left: -14px;
  margin-top: 4px;
  margin-bottom: 4px;
  box-shadow: none;
  vertical-align: baseline;
  font-weight: 800;
}
.hero-unboxed-sub {
  font-size: 17px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 660px;
}
.hero-unboxed-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

/* Right Media Image Card (Top-Aligned with Headline) */
.hero-media-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 4px;
}
.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 330px;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 4px solid #FFFFFF;
  background: #FFFFFF;
}
.hero-img-cover {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  transition: transform 0.4s ease;
}
.hero-image-card:hover .hero-img-cover {
  transform: scale(1.02);
}
.hero-floating-top-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0F172A;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

@media (max-width: 992px) {
  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bento-col-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bento-card-cobalt-sub {
  background: var(--cobalt-primary);
  color: #FFFFFF;
  flex: 1;
}
.bento-tag-small {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bento-card-cobalt-sub h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.bento-card-cobalt-sub p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.bento-card-lime {
  background: var(--lime-accent);
  color: #0F172A;
  flex: 1.2;
}
.star-3d-icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.bento-card-lime h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.3;
}
.bento-card-lime p {
  font-size: 13px;
  color: #1E293B;
  line-height: 1.5;
  font-weight: 600;
}

.bento-card-photo {
  padding: 0;
  position: relative;
}
.bento-photo-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 32px;
}
.bento-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  color: #FFF;
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bento-photo-badge span {
  display: block;
  font-size: 11px;
  color: var(--lime-accent);
  font-weight: 800;
}
.bento-photo-badge strong {
  font-size: 14px;
}

.hero-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.hero-feat-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero-feat-card:hover {
  transform: translateY(-4px);
  border-color: #84CC16;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), 0 0 24px rgba(132, 204, 22, 0.15);
}
.hero-feat-icon {
  margin-bottom: 2px;
}
.hero-feat-icon img {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 16px;
}
.hero-feat-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}
.hero-feat-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .bento-hero-grid {
    grid-template-columns: 1fr;
  }
  .bento-stats-row {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
}
.capsule-pill:hover {
  transform: translateY(-2px);
}
.pill-white {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 2.5px solid var(--text-dark);
}
.pill-blue {
  background: linear-gradient(135deg, #1D4ED8 0%, #7C3AED 100%);
  color: #FFFFFF;
  box-shadow: 0 14px 35px rgba(29, 78, 216, 0.3);
}
.pill-green-bubble {
  background: #10B981;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bubble-dot {
  color: #6EE7B7;
  font-size: 14px;
}
.badge-spark-icon {
  font-size: 32px;
  margin-left: 6px;
}
.circular-avatar-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
}
.badge-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circular-icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #FFF;
}
.circular-icon-badge.gold {
  background: linear-gradient(135deg, #FEF08A 0%, #F59E0B 100%);
}
.circular-icon-badge.purple {
  background: linear-gradient(135deg, #F3E8FF 0%, #8B5CF6 100%);
}

@media (max-width: 768px) {
  .capsule-pill {
    padding: 12px 22px;
    font-size: 24px;
    white-space: normal;
    text-align: center;
  }
  .circular-avatar-badge, .circular-icon-badge {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.6;
}

.hero-stats-krai {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFF;
  padding: 20px 28px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
  width: fit-content;
}
.stat-box { padding: 0 12px; }
.stat-box:first-child { padding-left: 0; }
.stat-box:last-child { padding-right: 0; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--flame-coral);
}
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-box-divider { width: 1px; height: 32px; background: var(--border-light); }
.hero-cta-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* Sections Common */
.section {
  padding: 90px 0;
  position: relative;
}

/* ═══ SECTION RHYTHM (Apple/Stripe alternation) ═══ */

/* Unique Rhythm Section Background Palette */
.hero-unboxed-section {
  background: #FFFFFF;
}

/* Section 1 - Programs: Warm luxury lime-cream gradient */
.activities-section, .programs-section {
  background: linear-gradient(180deg, #F6FBE8 0%, #FFFFFF 100%);
  padding: 88px 0;
}

/* Section 2 - Target Audience Profiles: Studio Pure White */
.audience-section {
  background: #FFFFFF;
  padding: 88px 0;
}

/* Section 3 - Student Outcomes Showcase: Cool Ice-Mint gradient */
.gallery-section {
  background: linear-gradient(180deg, #F0FDF4 0%, #FAFCF8 100%);
  padding: 88px 0;
}

/* Section 4 - Educational Standards: Studio White */
.standards-section {
  background: #FFFFFF;
  padding: 88px 0;
}

/* Section 5 - About Founder: Soft Warm Pearl-Cream gradient */
.about-founder-section {
  background: linear-gradient(180deg, #FAFBF7 0%, #F5FBE8 100%);
  padding: 88px 0;
}

/* Section 6 - Program Syllabus Accordion: Studio White */
.syllabus-section {
  background: #FFFFFF;
  padding: 88px 0;
}

/* Section 7 - FAQ Accordion: Warm Sage-Lime gradient */
.faq-section {
  background: linear-gradient(180deg, #F4FCE6 0%, #FFFFFF 100%);
  padding: 88px 0;
}

/* Programs Section Centered Header */
.programs-header {
  text-align: center;
  margin-bottom: 56px;
}
.programs-supertag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--cobalt-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(67, 56, 202, 0.08);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.programs-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.programs-subtitle {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}

/* Hit & Soon badges on card */
.activity-card-hit {
  border: 2.5px solid #D4FC31 !important;
  box-shadow: 0 20px 50px rgba(212, 252, 49, 0.18), 0 8px 24px rgba(15,23,42,0.06) !important;
  position: relative;
}
.card-hit-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4FC31;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(212, 252, 49, 0.4);
}
.card-soon-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FCD34D;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

/* Rich card content */
.card-course-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.2;
}
.card-course-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.2;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.card-course-meta {
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  line-height: 1.4;
}
.card-pricing {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 22px;
}
.card-price-main {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.1;
}
.card-price-kaspi {
  display: inline-block;
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}
.card-price-kaspi-vip {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
}
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  flex-grow: 1;
}
.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
}
.bullet-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 252, 49, 0.35);
  color: #1E293B;
  font-weight: 900;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Card Action Buttons */
.card-action-bottom {
  margin-top: auto;
  width: 100%;
}
.btn-card-lime {
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
  border: none;
  cursor: pointer;
}
.btn-card-lime:hover {
  transform: translateY(-2.5px) scale(1.02);
  background: linear-gradient(180deg, #FF6B78 0%, #F04351 100%);
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.6);
}
.btn-card-lime:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.35);
}
.btn-card-dark,
.btn-card-indigo {
  background: #F1F5F9;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  border: 1.5px solid #CBD5E1;
}
.btn-card-dark:hover,
.btn-card-indigo:hover {
  transform: translateY(-2px);
  background: #E2E8F0;
  border-color: #94A3B8;
  color: #0F172A;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

/* Sub-Block: Pre-Recorded Video Courses (Compact & Secondary) */
.video-courses-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1.5px dashed rgba(15, 23, 42, 0.12);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.video-courses-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}
.video-courses-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0F172A;
  margin: 10px 0 4px 0;
}
.video-courses-subtitle {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}
.video-courses-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.video-course-card .card-soon-badge {
  top: 14px;
}
.video-course-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
}
.video-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.15);
}
.video-art-frame {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #0F172A;
}
.video-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-course-card:hover .video-art-img {
  transform: scale(1.04);
}
.video-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: #F2FF66;
  font-size: 9.5px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.video-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.video-course-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
}
.video-course-meta {
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 14px;
  line-height: 1.45;
}
.video-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.video-price-main {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #0F172A;
}
.video-price-tag {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Section: Who Is It For (Target Audience) */
.audience-section {
  padding: 90px 0;
  background: #F8FAFC;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.audience-cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.audience-cards-grid-5 > :nth-child(1),
.audience-cards-grid-5 > :nth-child(2),
.audience-cards-grid-5 > :nth-child(3) {
  grid-column: span 2;
}
.audience-cards-grid-5 > :nth-child(4) {
  grid-column: 2 / span 2;
}
.audience-cards-grid-5 > :nth-child(5) {
  grid-column: 4 / span 2;
}

.audience-cards-grid-6, .audience-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .audience-cards-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-cards-grid-5 > :nth-child(1),
  .audience-cards-grid-5 > :nth-child(2),
  .audience-cards-grid-5 > :nth-child(3),
  .audience-cards-grid-5 > :nth-child(4) {
    grid-column: auto;
  }
  .audience-cards-grid-5 > :nth-child(5) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .audience-cards-grid-6, .audience-cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .audience-cards-grid-5, .audience-cards-grid-6, .audience-cards-grid-4 {
    grid-template-columns: 1fr;
  }
}
.audience-card-deluxe {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.audience-card-deluxe:hover {
  transform: translateY(-5px);
  border-color: #84CC16;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.aud-art-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0F172A;
}
.aud-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aud-pill-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0F172A;
  color: #F2FF66;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(242, 255, 102, 0.3);
  z-index: 2;
}
.aud-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.audience-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.35;
}
.audience-card-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.audience-result-tag {
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 14px;
  border-radius: 12px;
  line-height: 1.4;
  margin-top: auto;
}
.audience-result-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.45;
}
.tag-lime {
  background: rgba(112, 182, 0, 0.08);
  border: 1px solid rgba(112, 182, 0, 0.25);
  color: #1E3A00;
}

.section-margin-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  margin-bottom: 50px;
  align-items: flex-start;
}
.margin-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--flame-coral);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 10px;
}
.margin-tag-coral {
  font-size: 12px;
  font-weight: 800;
  color: var(--sunny-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-title-large {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Balanced 2x2 Grid for Programs Section (Perfect Proportions) */
.program-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  overflow: visible;
  padding-top: 20px;
}
@media (max-width: 900px) {
  .program-cards-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.program-cards-grid-4 .activity-card {
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.program-cards-grid-4 .card-art-frame {
  height: 190px;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
}
.program-cards-grid-4 .card-content-body {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.program-cards-grid-4 .card-course-title {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #0F172A;
}
.program-cards-grid-4 .card-course-meta {
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 10px;
}
.program-cards-grid-4 .card-pricing {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}
.program-cards-grid-4 .card-price-main {
  font-size: 26px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.card-price-subnote {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
}
.program-cards-grid-4 .card-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.program-cards-grid-4 .card-bullets li {
  font-size: 14px;
  line-height: 1.45;
}
.card-action-bottom {
  margin-top: auto;
  padding-top: 0;
  width: 100%;
}
.program-cards-grid-4 .btn-full {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
}
.card-price-tag {
  display: inline-block;
  background: #D4FC31;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card-price-vip {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  color: #1C1917;
}
.activity-card-vip {
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(160deg, #FFFBEB 0%, #FFF 100%);
}
.activity-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.15);
}
.card-index-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-category {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F3E8FF;
  color: var(--flame-coral);
  border: 1px solid rgba(139, 92, 246, 0.2);
  letter-spacing: 0.5px;
}

/* Ruang Edit Arrow Button (↗) */
.card-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--flame-coral);
  color: #FFF;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.card-arrow-btn.gold {
  background: var(--sunny-gold);
  box-shadow: 0 4px 14px rgba(255, 159, 67, 0.3);
}
.activity-card:hover .card-arrow-btn {
  transform: translate(2px, -2px) scale(1.08);
}

.card-art-frame {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--border-light);
}
.card-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover .card-art-img {
  transform: scale(1.05);
}
.card-content-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.card-content-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}
.activity-banner-wide {
  background: linear-gradient(135deg, #F3E8FF 0%, #FFFFFF 100%);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
}
.banner-wide-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.banner-info h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.banner-info p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Syllabus Section - 4-Step Roadmap */
.syllabus-tabs-nav-centered {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.syl-tab-btn {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0F172A;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.syl-tab-btn.active {
  background: #4338CA;
  color: #FFFFFF;
  border-color: #4338CA;
  box-shadow: 0 8px 24px rgba(67, 56, 202, 0.25);
}
.syllabus-tab-content {
  display: none;
}
.syllabus-tab-content.active {
  display: block;
}

.step-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-roadmap-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step-roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}
.step-card-final {
  border: 2px solid #D4FC31;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FFE5 100%);
}
.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.step-number-badge {
  background: #D4FC31;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 999px;
}
.step-number-badge.final {
  background: #0F172A;
  color: #D4FC31;
}
.step-meta {
  font-size: 12px;
  font-weight: 800;
  color: #64748B;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.step-tools-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tool-pill {
  background: #F1F5F9;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.step-result-box {
  background: rgba(212, 252, 49, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: #0F172A;
  line-height: 1.4;
}
.step-result-box.final-res {
  background: #0F172A;
  color: #D4FC31;
}

@media (max-width: 1100px) {
  .step-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .step-roadmap-grid {
    grid-template-columns: 1fr;
  }
}
  color: var(--flame-coral);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.syl-module-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.syl-module-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Quiz Component */
/* Quiz Component Overhaul */
.quiz-krai-container {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 44px 48px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  max-width: 920px;
  margin: 0 auto;
}
.quiz-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.quiz-progress-bar {
  flex: 1;
  height: 8px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #84CC16 0%, #D4FC31 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.quiz-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quiz-back-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.quiz-back-btn:hover {
  background: #F1F5F9;
  border-color: #84CC16;
  transform: translateX(-3px);
}
.quiz-back-btn.hidden {
  display: none !important;
}
.quiz-step-label {
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.quiz-restart-btn {
  background: #F1F5F9;
  border: 1.5px solid #CBD5E1;
  color: #475569;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}
.quiz-restart-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
  border-color: #94A3B8;
  transform: translateY(-2px);
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #0F172A;
  line-height: 1.35;
}
.quiz-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.quiz-option-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}
.quiz-option-card:hover {
  background: #FFFFFF;
  border-color: #84CC16;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(132, 204, 22, 0.15);
}
.quiz-option-card.selected {
  background: #F7FEE7;
  border: 2.5px solid #84CC16;
  box-shadow: 0 14px 36px rgba(132, 204, 22, 0.2);
}
.opt-icon {
  font-size: 30px;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  background: #F8FAFC;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opt-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.3;
}
.opt-text p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.4;
  font-weight: 500;
}
.opt-radio-coral {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #CBD5E1;
  flex: 0 0 auto;
  transition: all 0.2s ease;
  background: #FFFFFF;
}
.quiz-option-card.selected .opt-radio-coral {
  border-color: #84CC16;
  background: #84CC16;
  box-shadow: inset 0 0 0 3.5px #FFFFFF;
}
/* Deluxe 2-Column Responsive Result Card Architecture */
.result-2col-card {
  max-width: 920px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 36px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

@media (max-width: 860px) {
  .result-2col-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }
}

.result-art-col {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #F8FAFC;
}
@media (max-width: 860px) {
  .result-art-col {
    min-height: 240px;
    height: 240px;
  }
}
.result-cover-img-2col {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.result-dir-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 900;
  color: #3F6212;
  letter-spacing: 1px;
  background: #F4FCE3;
  border: 1px solid rgba(132, 204, 22, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.result-course-title-2col {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.result-format-meta {
  font-size: 13.5px;
  font-weight: 700;
  color: #64748B;
  margin-top: -8px;
}

.result-pedagogy-desc {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
  background: #F8FAFC;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  width: 100%;
}

.result-price-row-aligned {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 4px;
}

.res-price-main-aligned {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0F172A;
}

.res-kaspi-tag-neutral {
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

.result-bullets-aligned {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.result-bullets-aligned li {
  font-size: 14px;
  color: #0F172A;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.result-bullets-aligned .bullet-badge {
  color: #65A30D;
  font-size: 15px;
  flex-shrink: 0;
}

.result-gift-notice-aligned {
  font-size: 13.5px;
  color: #3F6212;
  background: #F4FCE3;
  border: 1px solid rgba(132, 204, 22, 0.35);
  padding: 12px 18px;
  border-radius: 16px;
  width: 100%;
  line-height: 1.5;
}

.result-actions-aligned {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 8px;
}
.result-actions-aligned .btn {
  flex: 1;
  min-width: 240px;
}
.quiz-restart-link-inline {
  background: transparent;
  border: none;
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.quiz-restart-link-inline:hover {
  color: #0F172A;
  text-decoration: underline;
}

/* Centered Friendly Result Card Architecture */
.result-centered-card {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.result-header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.result-top-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 1.5px;
  background: linear-gradient(180deg, #F2FF66 0%, #B4EC00 100%);
  padding: 7px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(180, 236, 0, 0.35);
}
.result-course-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
}
.result-course-desc {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
  max-width: 540px;
}

.result-art-frame-centered {
  width: 100%;
  max-width: 600px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.result-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-pricing-box-centered {
  width: 100%;
  max-width: 600px;
  background: #F8FAFC;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.res-price-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #0F172A;
}
.res-duration {
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
}
.res-price-kaspi {
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.res-preview-bullets-centered {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.res-preview-bullets-centered li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
}

.quiz-gift-box-centered {
  width: 100%;
  max-width: 600px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 18px;
  padding: 16px 20px;
  font-size: 14.5px;
  color: #166534;
  text-align: center;
}

.result-actions-col-centered {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.btn-full-result {
  width: 100%;
  text-align: center;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 900;
}
.quiz-restart-link {
  background: transparent;
  color: #64748B;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.quiz-restart-link:hover {
  color: #0F172A;
}
.btn-link-details {
  font-size: 14px;
  font-weight: 800;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 6px 12px;
}
.btn-link-details:hover {
  color: #0F172A;
  text-decoration: underline;
}

/* 4 Pedagogy Quality Standards Grid */
.pedagogy-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pedagogy-card-deluxe {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.pedagogy-card-deluxe:hover {
  transform: translateY(-5px);
  border-color: #84CC16;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.card-deluxe-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.std-icon-3d-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.std-icon-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pedagogy-badge-slate {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pedagogy-card-deluxe h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0F172A;
  margin: 0 0 12px 0;
  line-height: 1.35;
}
.pedagogy-card-deluxe p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
/* Light Claymorphic Friendly Icon Styles */
.hero-feat-icon img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(67, 56, 202, 0.1);
  display: block;
}
.badge-icon-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  vertical-align: middle;
  margin-right: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(67, 56, 202, 0.08);
  display: inline-block;
}
.badge-icon-sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  vertical-align: middle;
  margin-right: 8px;
  object-fit: cover;
  display: inline-block;
}
.exp-icon-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.gift-icon-svg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.quiz-opt-svg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Clean Apple-style Founder Section */
.founder-clean-container {
  max-width: 1080px;
  margin: 0 auto;
}
.founder-grid-krai {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.founder-avatar-frame {
  text-align: center;
}
.founder-photo-img {
  width: 260px;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  margin-bottom: 16px;
}
.founder-name-tag {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 4px;
}
.founder-role-tag {
  font-size: 13.5px;
  font-weight: 700;
  color: #64748B;
  display: block;
}
.founder-text-paragraphs p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}
.founder-goal-card {
  background: #FFFFFF;
  border-left: 4px solid #D4FC31;
  padding: 18px 22px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  margin-top: 24px;
}
.founder-goal-card p {
  margin: 0 !important;
  color: #0F172A !important;
  font-size: 15px;
}

/* Visual Career Timeline Block */
.founder-timeline-box {
  margin-top: 28px;
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.timeline-header-tag {
  font-size: 11px;
  font-weight: 900;
  color: #64748B;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.timeline-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
@media (max-width: 900px) {
  .timeline-horizontal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.timeline-step-card {
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 14px 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-step-card:hover {
  transform: translateY(-3px);
  border-color: #84CC16;
}
.timeline-step-card.active-now {
  background: #F4FCE3;
  border-color: rgba(132, 204, 22, 0.4);
}
.timeline-year-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #0F172A;
  background: #E2E8F0;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
}
.timeline-year-badge.badge-now {
  background: #84CC16;
  color: #0F172A;
}
.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
}
.timeline-step-sub {
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
}

/* Avatar Side Trust Pills */
.founder-side-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}
.side-trust-pill {
  font-size: 12.5px;
  font-weight: 800;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Standalone Official App Store Verification Showcase Card (Single Left Axis) */
.founder-appstore-proof-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}
.app-proof-details-aligned {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
}
.app-proof-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}
.app-proof-tag-slate {
  font-size: 10.5px;
  font-weight: 800;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.app-proof-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}
.app-proof-sub {
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin: 0 !important;
}

/* Compact Content-Width Apple Badge Button (Single Left Axis) */
.appstore-proof-action-aligned {
  margin-top: 4px;
  display: flex;
  align-items: center;
}
.official-appstore-badge-btn-compact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: auto;
}
.official-appstore-badge-btn-compact:hover {
  transform: translateY(-2px);
  background: #111111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}
.apple-badge-maintext-compact {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}
@media (max-width: 640px) {
  .official-appstore-badge-btn-compact {
    width: 100%;
    justify-content: center;
  }
}

/* 4 Experience Pills Grid (1 Row) */
.founder-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.founder-exp-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.exp-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.exp-icon {
  font-size: 22px;
}
.exp-icon-title h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}
.founder-exp-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}
.pass-icon { font-size: 56px; margin-bottom: 12px; }
.pass-tag-coral { font-size: 11px; font-weight: 800; color: var(--flame-coral); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.result-pass-box h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 900; margin-bottom: 12px; color: var(--text-dark); }
.result-pass-box p { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 24px; }

/* Standards Grid */
.standards-grid-krai {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.std-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.std-badge-tag {
  display: inline-block;
  background: #F3E8FF;
  color: var(--flame-coral);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.std-badge-gold {
  background: #FEF3C7;
  color: #92400E;
  border-color: #FDE68A;
}
.std-box h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.std-box p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.std-footer-link { margin-top: 24px; font-size: 13px; font-weight: 800; color: var(--flame-coral); }

/* VIP Box */
.vip-box-krai {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 2px solid var(--sunny-gold);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-card);
}
.vip-badge-top {
  display: inline-block;
  background: var(--sunny-gold);
  color: #FFF;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.vip-grid-krai { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: center; }
.vip-details h2 { font-family: var(--font-heading); font-size: 32px; font-weight: 900; margin-bottom: 12px; color: var(--text-dark); }
.vip-check-list { list-style: none; font-size: 14px; color: var(--text-dark); margin-top: 16px; }
.vip-check-list li { margin-bottom: 8px; }
.vip-cta-box {
  background: #FFF;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-medium);
  text-align: center;
}
.vip-price-num { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: var(--text-dark); }
.vip-price-sub { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 16px; }

/* Pricing Cards */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-medium);
  border-radius: 28px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.popular-card {
  border: 3px solid #0F172A;
  background: var(--cobalt-primary);
  color: #FFFFFF;
}
.popular-card .price-header-box h3,
.popular-card .price-amount,
.popular-card .price-sub-text,
.popular-card .price-total-text,
.popular-card .price-check-list {
  color: #FFFFFF !important;
}
.pricing-card:nth-child(2) {
  background: var(--lime-surface);
  border: 3px solid #0F172A;
}
.price-pop-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime-accent);
  color: #0F172A;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid #0F172A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pop-peach { background: var(--sunny-gold); }
.pop-blue { background: #0284C7; }

.price-header-box h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--text-dark); }
.price-sub-text { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 18px; }
.price-amount { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: var(--text-dark); margin-bottom: 4px; }
.price-amount span { font-size: 16px; color: var(--text-muted); font-weight: 600; }
.price-total-text { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.price-check-list { list-style: none; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-check-list li { margin-bottom: 8px; }

/* FAQ Accordion */
.faq-accordion-box {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: var(--border-medium);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}
.faq-icon {
  font-size: 22px;
  font-weight: 900;
  color: var(--flame-coral);
}
.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.faq-item.active .faq-answer {
  display: block !important;
}

/* Simulator Box */
.simulator-box-krai {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.voice-options, .lang-options { display: flex; gap: 12px; flex-wrap: wrap; }
.voice-btn, .lang-opt {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.voice-btn.active, .lang-opt.active {
  background: var(--text-dark);
  color: #FFF;
}
.player-box-krai {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.character-avatar-large { font-size: 56px; margin-bottom: 8px; }
.transcript-box-krai {
  font-size: 14px;
  color: var(--text-muted);
  background: #FFF;
  padding: 18px;
  border-radius: 14px;
  margin: 16px 0 24px;
  border: 1px solid var(--border-light);
}

/* Signature Brand Lime Registration Section */
.dark-register-card {
  background: linear-gradient(180deg, #F2FF66 0%, #B4EC00 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  padding: 56px 48px;
  box-shadow: 0 30px 90px rgba(180, 236, 0, 0.38);
  color: #0F172A;
}
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.dark-supertag {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #A3E635;
  letter-spacing: 1.5px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.register-main-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 14px;
}
.register-main-desc {
  font-size: 16.5px;
  color: #1E293B;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 28px;
}
/* Clean Benefit List on Lime Card */
.register-value-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.reg-bullet-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.reg-check-badge {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #0F172A;
  color: #84CC16;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}
.reg-check-badge svg {
  width: 14px;
  height: 14px;
  stroke: #84CC16;
  stroke-width: 3;
}
.reg-bullet-text {
  font-size: 14.5px;
  color: #0F172A;
  font-weight: 600;
  line-height: 1.4;
}
.reg-bullet-text strong {
  font-weight: 900;
  color: #0F172A;
}

/* Form Controls on Lime Card */
.dark-lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 13.5px;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.3px;
}
.dark-form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 2px solid rgba(15, 23, 42, 0.12);
  color: #0F172A;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.dark-form-input:focus {
  outline: none;
  border-color: #0F172A;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.15);
}
.dark-form-input option {
  background: #FFFFFF;
  color: #0F172A;
}

/* Phone Input Group & International Selector */
.phone-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.country-code-select {
  width: auto;
  min-width: 145px;
  padding: 16px 12px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 2px solid rgba(15, 23, 42, 0.12);
  color: #0F172A;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.country-code-select:focus {
  outline: none;
  border-color: #0F172A;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.15);
}
.phone-masked-input {
  flex: 1;
}
.phone-error-msg {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #E63946;
  margin-top: 6px;
  transition: all 0.2s ease;
}
.phone-error-msg.hidden {
  display: none;
}
.dark-form-input.input-error,
.country-code-select.input-error {
  border-color: #E63946 !important;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.25) !important;
  animation: shakeError 0.35s ease-in-out;
}
@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
@media (max-width: 480px) {
  .phone-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .country-code-select {
    width: 100%;
  }
}

/* Dark Contrast Submit Button on Lime Card */
.btn-neon-lime-submit {
  width: 100%;
  background: linear-gradient(180deg, #FF5E6C 0%, #E63946 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.4);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-neon-lime-submit:hover {
  transform: translateY(-2.5px) scale(1.015);
  box-shadow: 0 18px 44px rgba(230, 57, 70, 0.55);
  background: linear-gradient(180deg, #FF6B78 0%, #F04351 100%);
  color: #FFFFFF;
}
.form-subnote-pay {
  margin-top: 14px;
  font-size: 13px;
  color: #1E293B;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
  opacity: 0.85;
}

/* High-Contrast Success Card on Lime Background */
.form-success-dark {
  text-align: center;
  padding: 44px 28px;
  background: #0F172A;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
}
.success-icon-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.success-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.form-success-dark h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.form-success-dark p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .register-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dark-register-card {
    padding: 36px 24px;
  }
}

/* Footer */
.footer-krai {
  border-top: 1px solid var(--border-light);
  padding: 44px 0;
  margin-top: 90px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-content-krai {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.footer-socials { display: flex; gap: 24px; }
.footer-link { color: var(--flame-coral); text-decoration: none; font-weight: 800; }

/* Utilities */
.hidden { display: none !important; }
.margin-top-12 { margin-top: 12px; }
.margin-top-16 { margin-top: 16px; }
.margin-top-20 { margin-top: 20px; }
.margin-top-24 { margin-top: 24px; }
.margin-top-40 { margin-top: 40px; }

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .hero-content-krai, .section-margin-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-margin-label, .margin-tag { padding-top: 0; }
  .activity-cards-grid, .pricing-cards-grid, .syl-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Age Filter Buttons */
.age-segment-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.age-filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}
.age-filter-btn.active, .age-filter-btn:hover {
  background: var(--text-dark);
  color: #FFF;
  border-color: var(--text-dark);
}

/* Founder Personal Trust Card */
.founder-card-krai {
  background: linear-gradient(135deg, #FFF 0%, #F3E8FF 100%);
  border: 2px solid var(--border-medium);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.founder-badge-top {
  display: inline-block;
  background: var(--flame-coral);
  color: #FFF;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.founder-grid-krai {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.founder-avatar-frame {
  background: #FFF;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.founder-avatar-icon {
  font-size: 72px;
  margin-bottom: 12px;
}
.founder-name-tag {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
}
.founder-role-tag {
  font-size: 13px;
  color: var(--flame-coral);
  font-weight: 800;
}
.founder-quote-body h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.founder-quote-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.founder-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.founder-h-item {
  background: #FFF;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center;
}
.founder-h-item strong {
  display: block;
  font-size: 13px;
  color: var(--flame-coral);
}
.founder-h-item span {
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .founder-grid-krai { grid-template-columns: 1fr; }
  .founder-highlights-row { grid-template-columns: 1fr; }
}


/* Kodland-style Student Projects Gallery */
.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.15);
}
.project-thumb-frame {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.project-card:hover .project-thumb-img {
  transform: scale(1.06);
}
.project-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.project-body {
  padding: 20px 20px 14px;
  flex-grow: 1;
}
.project-author {
  font-size: 12px;
  color: #475569;
  font-weight: 800;
  margin-bottom: 4px;
  display: block;
}
.project-body h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 0;
  line-height: 1.3;
}
.project-footer {
  padding: 0 20px 20px;
}

/* Modal Lightbox for Project Preview */
.gallery-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-modal-content {
  background: #FFF;
  border-radius: 28px;
  max-width: 680px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--bg-surface);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 800;
}

/* Create & Learn-style Trust & Safety Badges */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.trust-badge-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
}
.trust-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F3E8FF 0%, #FEF3C7 100%);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.trust-badge-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.trust-badge-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .gallery-cards-grid, .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-cards-grid, .trust-badges-grid {
    grid-template-columns: 1fr;
  }
}

/* Deep Dark Premium Footer */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 70px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.4fr 1.4fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.brand-max { color: #FFFFFF; }
.brand-ai { color: #D4FC31; margin-right: 4px; }
.brand-academy { color: #FFFFFF; }

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 380px;
  margin-bottom: 20px;
}
.footer-location-tag {
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-links-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list a,
.footer-contact-list a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-links-list a:hover,
.footer-contact-list a:hover {
  color: #D4FC31;
}
.contact-item-phone a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
}
.contact-item-phone a:hover {
  color: #D4FC31;
}
.contact-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.messenger-link {
  color: #D4FC31 !important;
  font-weight: 800;
}
.sep {
  color: #475569;
  font-size: 12px;
}
.btn-footer-coral {
  margin-top: 20px;
  font-size: 14px;
  padding: 12px 24px;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 13px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: #CBD5E1;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   CROSS-PLATFORM RESPONSIVE ADAPTATION (iPhone, Mobile, Tablet, Laptop, Mac)
   ========================================================================== */

/* 1. Large Laptops & MacBooks (1024px - 1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  .program-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .founder-experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* 2. Tablets & iPads (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-cards-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .program-cards-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .pedagogy-standards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .register-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* 3. Mobile Devices & iPhones (max-width: 768px - iPhone 12/13/14/15/SE) */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Navbar on Mobile */
  .navbar {
    top: 0;
    padding: 10px 0;
  }
  .nav-container {
    padding: 0 14px;
  }
  .nav-left {
    gap: 16px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-phone-link {
    font-size: 12px;
  }
  .btn-nav-compact {
    padding: 6px 12px;
    font-size: 12px;
  }
  .nav-links {
    display: none; /* Hide dense menu items on small screens for clean UX */
  }

  /* Hero Section Mobile */
  /* Hero Action Buttons Mobile Stacking */
  .hero-unboxed-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-unboxed-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-title-main {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }
  .hero-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }
  .hero-feat-card {
    padding: 18px 20px;
  }

  /* Programs Section Mobile */
  .programs-header {
    margin-bottom: 32px;
  }
  .programs-title {
    font-size: 24px !important;
  }
  .activity-card {
    padding: 24px 20px;
    border-radius: 24px;
  }
  .card-art-frame {
    height: 180px;
  }
  .card-course-title {
    font-size: 20px;
    min-height: auto;
  }
  .card-course-meta {
    min-height: auto;
  }
  .card-pricing {
    min-height: auto;
  }
  .card-bullets {
    min-height: auto;
  }

  /* Interactive Quiz Mobile */
  .quiz-krai-container {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .quiz-question-title {
    font-size: 17px;
    line-height: 1.35;
  }
  .quiz-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quiz-option-card {
    padding: 16px 18px;
    border-radius: 16px;
  }

  /* Pedagogy Standards Mobile */
  .pedagogy-standards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pedagogy-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  /* Founder Section Mobile */
  .founder-grid-krai {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .founder-avatar-frame {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }
  .founder-experience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Registration Form Mobile */
  .register-clean-container {
    padding: 24px 18px;
    border-radius: 24px;
  }
  .btn-neon-lime-submit {
    font-size: 15px;
    padding: 16px 20px;
    width: 100%;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 50px 0 28px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* 4. Small Mobile Screens / iPhone SE (max-width: 400px) */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }
  .hero-title-main {
    font-size: 24px !important;
  }
  .btn-coral, .btn-hero-glow {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
  }
}

/* Section: Loyalty & Bonuses - 3 Cards Light Theme Version */
.loyalty-section-light {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  padding: 85px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.loyalty-supertag-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF2FF;
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #4F46E5;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.loyalty-title-light {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #0F172A !important;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.loyalty-sub-light {
  font-size: 16px;
  color: #475569 !important;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.loyalty-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.loyalty-card-light {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
}

.loyalty-card-light:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
}

.loyalty-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.loyalty-3d-unique-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
  transition: transform 0.3s ease;
}

.loyalty-card-light:hover .loyalty-3d-unique-icon {
  transform: scale(1.08) rotate(-2deg);
}

.loyalty-pill-light {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: #FFEBEB;
  color: #E63946 !important;
  border: 1.5px solid rgba(230, 57, 70, 0.3);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
}

.pill-subtle {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.loyalty-footnote {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-top: 28px;
  font-weight: 600;
}

.loyalty-card-title-light {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.loyalty-card-sub-light {
  font-size: 13px;
  font-weight: 800;
  color: #4F46E5 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  min-height: 24px;
  display: flex;
  align-items: center;
}

.loyalty-card-desc-light {
  font-size: 14px;
  color: #475569 !important;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .loyalty-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .loyalty-title-light {
    font-size: 28px;
  }
  .loyalty-card-light {
    padding: 26px 20px;
  }
}




/* Red Highlight for Discounts */
.text-red-highlight {
  color: #E63946 !important;
  font-weight: 900;
}


.btn-quiz-hero {
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
              linear-gradient(135deg, #A3E635 0%, #84CC16 100%) border-box;
  color: #0F172A !important;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(132, 204, 22, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-quiz-hero:hover {
  background: linear-gradient(#F7FEE7, #F7FEE7) padding-box,
              linear-gradient(135deg, #BEF264 0%, #A3E635 100%) border-box;
  color: #0F172A !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(132, 204, 22, 0.28);
}
.btn-quiz-hero:active {
  transform: translateY(0);
}


/* Official Behance Badge Button */
.official-behance-badge-btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0057FF;
  color: #FFFFFF !important;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.22);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: auto;
}
.official-behance-badge-btn-compact:hover {
  background: #0046CC;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 87, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}


/* Video Play Overlay Badge */
.video-play-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15, 23, 42, 0.78);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: all 0.25s ease;
}
.project-card:hover .video-play-overlay-badge {
  background: #0057FF;
  transform: translate(-50%, -50%) scale(1.08);
}


/* Friendly Video Button Styles */
.btn-video-friendly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0057FF 0%, #0046CC 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 87, 255, 0.3);
  transition: all 0.25s ease;
  width: 100%;
  cursor: pointer;
}
.btn-video-friendly:hover {
  background: linear-gradient(135deg, #0046CC 0%, #0038A8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 87, 255, 0.45);
}


/* Alternative Course Notice Banner in Quiz Result */
.result-alt-course-notice {
  background: rgba(0, 87, 255, 0.07);
  border: 1px solid rgba(0, 87, 255, 0.22);
  border-radius: 16px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #0F172A;
}
.result-alt-course-notice strong {
  color: #0057FF;
}
.alt-course-btn-link {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #0057FF;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.alt-course-btn-link:hover {
  color: #0046CC;
}


/* Course Card Description Paragraph Styles */
.card-course-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}


/* Card Micro-Tags Styles */
.card-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-micro-tag {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
