:root {
  --brand-green: #00793f;
  --brand-green-light: #00a650;
  --brand-yellow: #fff200;
  --brand-red: #ba3625;
  --brand-red-dark: #852d23;
  --brand-dark: #231f20;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --gray-border: #e2e8f0;
  --text-muted: #64748b;
  --ease-anti-gravity: cubic-bezier(0.34, 1.25, 0.64, 1);
  --ease-smooth-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   1. RESET & GLOBAL
   ========================================== */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--brand-dark);
  line-height: 1.6;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

#ftco-loader,
.chapter-nav {
  display: none !important;
}

/* ==========================================
   2. LAYOUT & CONTAINER
   ========================================== */
.story-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-border);
  contain: content;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0, 121, 63, 0.1);
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 15px;
}

.slide-title span.text-green { color: var(--brand-green); }
.slide-title span.text-red { color: var(--brand-red); }

.slide-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 40px auto;
}

/* Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; width: 100%; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* Cards White */
.card-white {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: layout style;
}

.card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ==========================================
   3. HERO SECTION & VIDEO BG
   ========================================== */
.hero-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px 80px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  isolation: isolate;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) translateZ(0);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-wrap .story-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.logo-hero {
  width: 100px;
  height: auto;
  margin: 0 auto 15px auto;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--brand-yellow);
  color: #0f172a;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0 auto 20px auto;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title {
  color: #ffffff !important;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

.text-green-hero {
  color: #4ade80 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-desc {
  color: #f1f5f9 !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400 !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  max-width: 650px;
  margin: 0 auto 25px auto;
}

/* Animasi CSS Hero */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate-fade {
  animation: heroFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.hero-animate-fade.delay-1 { animation-delay: 0.1s; opacity: 0; }
.hero-animate-fade.delay-2 { animation-delay: 0.2s; opacity: 0; }
.hero-animate-fade.delay-3 { animation-delay: 0.3s; opacity: 0; }
.hero-animate-fade.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Tombol */
.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 121, 63, 0.3);
}
.btn-primary:hover { background: var(--brand-green-light); transform: translateY(-2px); }

.btn-secondary {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(186, 54, 37, 0.3);
}
.btn-secondary:hover { background: var(--brand-red-dark); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-right: -2px; 
}

.scroll-indicator:hover { 
  opacity: 1; 
}

.scroll-indicator .arrow {
  font-size: 1.1rem;
  margin-top: 4px;
  letter-spacing: normal !important;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* ==========================================
   4. CHART & STATS
   ========================================== */
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 350px;
  margin-top: 25px;
  padding-top: 35px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-border);
  width: 100%;
  box-sizing: border-box;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  min-width: 0;
}

.chart-bar {
  width: 100%;
  max-width: 52px;
  background: var(--brand-green-light);
  border-radius: 8px 8px 0 0;
  transition: height 1s var(--ease-anti-gravity);
  min-height: 12px;
}

.chart-bar.highlight { background: var(--brand-green); }

.chart-val {
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 6px;
  white-space: nowrap;
}

.chart-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ==========================================
   5. INTERACTIVE TRAIN ANIMATION
   ========================================== */
.train-station-wrapper {
  background: #ffffff;
  border: 2px solid var(--gray-border);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  overflow-x: auto;
}

.rail-track-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 50px 35px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.rail-track-line {
  position: relative;
  min-width: 800px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin: 0 25px;
}

.rail-track-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--brand-green);
  width: 0%;
  transition: width 0.5s ease-in-out;
  border-radius: 4px;
}

.train-engine {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  transition: left 0.5s ease-in-out;
  z-index: 10;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 3px solid var(--brand-green);
  flex-shrink: 0;
  will-change: left;
}

.station-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: -12px;
}

.station-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.station-node.active {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: white;
  transform: scale(1.25);
}

.station-node .node-label {
  position: absolute;
  top: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--brand-dark);
}

.train-detail-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
  margin-top: 60px;
  text-align: left;
}

/* ==========================================
   6. BIAYA CARDS
   ========================================== */
.price-card {
  border: 2px solid var(--gray-border);
  border-radius: 16px;
  padding: 24px;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  border-color: var(--brand-green);
  box-shadow: 0 8px 25px rgba(0, 121, 63, 0.15);
}

.badge-pop {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #eab308;
}

/* ==========================================
   7. SOCIAL FLOAT & WA
   ========================================== */
.sticky-social-2026 {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon-2026 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.social-icon-2026:hover { transform: scale(1.1); }
.social-icon-2026.whatsapp { background: #25D366; }
.social-icon-2026.instagram { background: #E1306C; }
.social-icon-2026.youtube { background: #FF0000; }
.social-icon-2026.tiktok { background: #000000; }

#wa-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--brand-green);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 99;
  text-decoration: none;
}

/* ==========================================
   8. ANIMASI SCROLL REVEAL (GPU-Optimized)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-anti-gravity);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.reveal.reveal-left { transform: translateX(-30px); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.reveal-zoom { transform: scale(0.96); }

.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }

/* ==========================================
   9. CARD IMAGE SLIDER
   ========================================== */
.card-slider-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.card-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.5);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.1);
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }

/* ==========================================
   10. KLASTER & JALUR KELAS SLIDER (UPDATED)
   ========================================== */
.cluster-group {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  padding: 24px 20px 10px;
  margin-bottom: 35px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Aksesibilitas border top berwarna per klaster */
.cluster-group.cluster-green { border-top: 5px solid #10b981; }
.cluster-group.cluster-red { border-top: 5px solid #ef4444; }
.cluster-group.cluster-amber { border-top: 5px solid #f59e0b; }
.cluster-group.cluster-orange { border-top: 5px solid #f97316; }

.cluster-group-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Menjadikan ikon dan judul di tengah */
  text-align: center;
  gap: 14px;
  padding: 0 0 16px 0;
  border-bottom: 1px dashed var(--gray-border);
  margin-bottom: 16px;
  background: transparent;
  box-shadow: none;
}

.cluster-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bg-green { background-color: #10b981; }
.bg-red { background-color: #ef4444; }
.bg-amber { background-color: #f59e0b; }
.bg-orange { background-color: #f97316; }

.text-green { color: var(--brand-green); }
.text-red { color: var(--brand-red); }
.text-amber { color: #b45309; }
.text-orange { color: #d97706; }

.cluster-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.cluster-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2px 0 0 0;
}

/* Tag Filter Bar */
.class-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Mengubah tombol filter jadi rata tengah */
  gap: 8px;
  margin-bottom: 12px;
}

.class-tag-btn {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Warna Active Tag per Klaster */
.filter-green .class-tag-btn.active,
.filter-green .class-tag-btn:hover {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.35);
}

.filter-red .class-tag-btn.active,
.filter-red .class-tag-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.35);
}

.filter-amber .class-tag-btn.active,
.filter-amber .class-tag-btn:hover {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.35);
}

.filter-orange .class-tag-btn.active,
.filter-orange .class-tag-btn:hover {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  box-shadow: 0 3px 8px rgba(249, 115, 22, 0.35);
}

/* Slider Track & Container */
.pathway-slider-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory; /* Mengunci kartu pas di tengah saat di-swipe */
  padding: 15px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.pathway-card {
  scroll-snap-align: center; /* Kartu akan selalu berhenti di tengah */
  /* CSS kartu lainnya tetap sama... */
}

.pathway-slider-wrap::-webkit-scrollbar { 
  height: 6px; 
}

.pathway-slider-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.pathway-slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 5px;
}

/* Kartu Slider & Interaktivitas Klik */
.pathway-card {
  scroll-snap-align: center;
  width: 310px;
  max-width: 82vw;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  cursor: pointer; /* Indikator bahwa kartu bisa diklik */

  transform: scale(0.92);
  opacity: 0.7;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.pathway-card:hover {
  opacity: 0.9;
  border-color: #cbd5e1;
}

.pathway-card.active {
  transform: scale(1);
  opacity: 1;
  border-color: var(--gray-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pathway-card .cluster-header {
  padding: 12px 16px;
  font-weight: 800;
  color: #ffffff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pathway-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pathway-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag-sub-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  width: fit-content;
}

.pathway-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 6px;
}

.pathway-kurikulum {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.35;
  margin-bottom: 6px;
}

.pathway-mapel {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0;
}

/* ==========================================
   11. CAMPUS DESTINATION LOGO GRID
   ========================================== */
.campus-destination-wrap {
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
  text-align: left;
}

.campus-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.campus-group { margin-bottom: 20px; }

.campus-category-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.campus-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.campus-logo {
  height: 38px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.campus-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
}

/* ==========================================
   12. DESKTOP MEDIA QUERIES (min-width: 992px)
   ========================================== */
@media (min-width: 992px) {
  .cluster-group {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .cluster-group-header {
    justify-content: center;
    text-align: center;
  }

  .pathway-slider-track {
    justify-content: center;
    margin: 0 auto;
  }

  .pathway-card {
    width: 320px;
  }
}

/* ==========================================
   13. MOBILE RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 768px) {
  .hero-wrap {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 30px 15px 65px;
  }

  .hero-wrap .story-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .logo-hero {
    width: 65px;
    margin-bottom: 12px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 14px;
    white-space: normal;
    word-break: break-word;
  }

  .hero-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .text-green-hero {
    font-size: 1.35rem;
    display: block;
    margin-top: 4px;
  }

  .hero-desc {
    font-size: 0.825rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn { width: 100%; }

  .scroll-indicator {
    bottom: 12px;
    font-size: 0.65rem;
  }

  .scroll-indicator .arrow { font-size: 0.85rem; }

  .stat-number { font-size: 2.5rem; }

  .chart-container {
    height: 260px;
    gap: 6px;
    padding-top: 20px;
  }

  .chart-bar { max-width: 32px; }
  .chart-val { font-size: 0.75rem; }
  .chart-label { font-size: 0.7rem; }

  .sticky-social-2026 {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top));
    right: calc(12px + env(safe-area-inset-right));
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: auto;
    max-width: calc(100vw - 24px);
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    z-index: 99999;
  }

  .social-icon-2026 {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .campus-logo-grid { gap: 12px 14px; }
  .campus-logo {
    height: 30px;
    max-width: 75px;
  }
}





.price-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  max-width: 320px;
}