/* Bimo Speaks — Public Speaker & Motivator Nasional */
/* Warna: #1a237e (navy), #ffd600 (kuning), #f5f7ff (bg) */

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

:root {
  --navy: #1a237e;
  --navy-dark: #0d1257;
  --navy-mid: #283593;
  --yellow: #ffd600;
  --yellow-light: #fff9c4;
  --bg: #f5f7ff;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5c6180;
  --border: #dde3f5;
  --shadow: 0 4px 24px rgba(26,35,126,0.10);
  --shadow-lg: 0 8px 40px rgba(26,35,126,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--yellow); }
ul { list-style: none; }

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--navy-dark);
  color: #b0b8e8;
  text-align: center;
  padding: 8px 16px;
  font-size: .8rem;
  letter-spacing: .02em;
  z-index: 1000;
  position: relative;
}
.demo-bar a { color: var(--yellow); font-weight: 600; }
.demo-bar a:hover { color: #fff; }

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(26,35,126,0.22);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--yellow); }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
}

/* Checkbox hack menu */
#menu-toggle { display: none; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: #c5cae9;
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--yellow);
  background: rgba(255,214,0,.1);
}
.nav-links a.cta-nav {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-links a.cta-nav:hover { background: #ffe033; color: var(--navy); }

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .nav-links a { width: 100%; padding: 12px 16px; }
  #menu-toggle:checked ~ .nav-container .nav-links { display: flex; }
  #menu-toggle:checked ~ .nav-container .menu-btn span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  #menu-toggle:checked ~ .nav-container .menu-btn span:nth-child(2) { opacity: 0; }
  #menu-toggle:checked ~ .nav-container .menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,214,0,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-avatar {
  flex-shrink: 0;
}
.avatar-frame {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, #ff8f00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(255,214,0,.2), 0 0 0 16px rgba(255,214,0,.08);
  position: relative;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,214,0,.15);
  border: 1px solid rgba(255,214,0,.4);
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #b0b8e8;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: #7986cb;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all .2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: #ffe033; color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,214,0,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 32px; text-align: center; }
  .avatar-frame { width: 150px; height: 150px; }
  .hero-stats { justify-content: center; gap: 20px; }
  .hero-cta { justify-content: center; }
}

/* ===== SECTION GENERICS ===== */
.section { padding: 72px 20px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--yellow); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.section-desc {
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 48px;
  font-size: 1.02rem;
}
.section-dark .section-desc { color: #9fa8da; }
.section-header { margin-bottom: 48px; }

/* ===== GRID TOPIK ===== */
.topik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.topik-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.topik-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.topik-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.topik-card:hover::before { transform: scaleX(1); }
.topik-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.topik-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.topik-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.topik-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: #7a6000;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== HIGHLIGHT STRIP ===== */
.highlight-strip {
  background: var(--yellow);
  padding: 24px 20px;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-text { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.strip-text span { font-weight: 400; font-size: 1rem; display: block; color: var(--navy-mid); }
.btn-navy {
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: .95rem;
  transition: all .2s;
  white-space: nowrap;
}
.btn-navy:hover { background: var(--navy-dark); color: var(--yellow); }

/* ===== KLIEN LOGOS ===== */
.klien-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.klien-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
  transition: all .2s;
}
.klien-item:hover { border-color: var(--navy); color: var(--navy); }

/* ===== JADWAL TABLE ===== */
.jadwal-table-wrap { overflow-x: auto; }
.jadwal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.jadwal-table thead { background: var(--navy); color: var(--white); }
.jadwal-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.jadwal-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  vertical-align: middle;
}
.jadwal-table tr:last-child td { border-bottom: none; }
.jadwal-table tr:hover td { background: var(--bg); }
.badge-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-confirmed { background: #e8f5e9; color: #2e7d32; }
.badge-available { background: var(--yellow-light); color: #7a6000; }
.badge-full { background: #fce4ec; color: #c62828; }

/* ===== TESTIMONIAL ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s;
}
.testi-card:hover { transform: translateY(-3px); }
.testi-quote {
  font-size: 3rem;
  line-height: .8;
  color: var(--yellow);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testi-text {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .95rem; color: var(--navy); }
.author-role { font-size: .82rem; color: var(--text-muted); }
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ===== LOGO MEDIA ===== */
.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.media-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: #c5cae9;
}

/* ===== KONTAK ===== */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .kontak-layout { grid-template-columns: 1fr; gap: 32px; } }

.kontak-info h2 { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.kontak-info p { color: var(--text-muted); margin-bottom: 28px; }
.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.kontak-item-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontak-item-text strong { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: 2px; }
.kontak-item-text span { font-size: 1rem; font-weight: 600; color: var(--navy); }

.sosmed-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.sosmed-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s;
}
.sosmed-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== FORM ===== */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.booking-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.booking-form p { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
}
.btn-submit:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ===== WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  background: #25d366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .2s;
}
.wa-float:hover { background: #1dbe5a; transform: scale(1.08); color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 56px 20px;
  text-align: center;
}
.page-hero .section-label { display: inline-block; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -.02em; }
.page-hero p { color: #9fa8da; font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ===== ABOUT BIO ===== */
.bio-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .bio-layout { grid-template-columns: 1fr; } }

.bio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 80px;
}
.bio-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--yellow) 0%, #ff8f00 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.bio-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.bio-card .role { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }
.bio-stats { display: flex; justify-content: space-around; border-top: 1px solid var(--border); padding-top: 16px; }
.bs-num { font-size: 1.4rem; font-weight: 900; color: var(--navy); display: block; }
.bs-label { font-size: .72rem; color: var(--text-muted); }

.bio-content h2 { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.bio-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.bio-content h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin: 28px 0 12px; }
.timeline { border-left: 3px solid var(--yellow); padding-left: 20px; }
.timeline-item { margin-bottom: 20px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 6px;
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--navy); letter-spacing: .06em; }
.timeline-event { font-size: .95rem; color: var(--text); margin-top: 2px; }

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.achievement-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px;
  border-left: 4px solid var(--yellow);
}
.achievement-item .a-num { font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.achievement-item .a-label { font-size: .85rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
}
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.cta-section p { color: #9fa8da; margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: #9fa8da;
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand p { font-size: .9rem; margin-top: 10px; line-height: 1.7; color: #7986cb; }
.footer-col h4 { font-size: .88rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { color: #7986cb; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #546e7a;
}
.footer-bottom a { color: var(--yellow); }

/* ===== JADWAL EXTRAS ===== */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.jadwal-note {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
  color: #5a4200;
  margin-top: 20px;
}

/* ===== PAKET ===== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.paket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all .25s;
  position: relative;
}
.paket-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.02);
}
.paket-card:hover { box-shadow: var(--shadow-lg); }
.paket-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.paket-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.paket-card.featured .paket-name { color: var(--yellow); }
.paket-price { font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.paket-card.featured .paket-price { color: var(--white); }
.paket-dur { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.paket-card.featured .paket-dur { color: #9fa8da; }
.paket-features { text-align: left; margin-bottom: 24px; }
.paket-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.paket-card.featured .paket-features li { color: #c5cae9; border-color: rgba(255,255,255,.1); }
.paket-features li::before { content: '✓'; color: var(--yellow); font-weight: 900; flex-shrink: 0; }

/* ===== ABOUT PAGE EXTRAS ===== */
.filosofi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.filosofi-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--navy);
  transition: all .2s;
}
.filosofi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.filosofi-card h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.filosofi-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
