/* ============================================================
   KURSUS PINTAR — main.css  v2.0 (Premium Design)
   Font: Plus Jakarta Sans + DM Serif Display
   ============================================================ */

/* ── Tokens ── */
:root {
  --navy:   #0A1628;
  --blue:   #1542C4;
  --blue-2: #2558E8;
  --gold:   #F5A623;
  --gold-d: #E09800;
  --white:  #FFFFFF;
  --off:    #F7F9FC;
  --warm:   #FFF8EC;
  --text:   #0F1C35;
  --muted:  #5E738A;
  --border: #E4EAF2;
  --font:   'Plus Jakarta Sans', system-ui, sans-serif;
  --serif:  'DM Serif Display', Georgia, serif;
  --r:      14px;
  --r-lg:   20px;
  --shadow: 0 4px 20px rgba(21,66,196,.1);
  --shadow-lg: 0 16px 48px rgba(21,66,196,.16);
  --trans:  .22s cubic-bezier(.4,0,.2,1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; line-height: 1.7; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font); font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: var(--r);
  border: none; cursor: pointer; transition: all var(--trans);
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}
.btn-primary:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.85);
  font-family: var(--font); font-weight: 600; font-size: .92rem;
  padding: 12px 24px; border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.3); cursor: pointer;
  transition: all var(--trans); text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-white {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.8);
  font-family: var(--font); font-weight: 600; font-size: .88rem;
  padding: 11px 20px; border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.25); cursor: pointer;
  transition: all var(--trans); text-decoration: none;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: .82rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 6%; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: 7px 12px; border-radius: 8px; transition: all var(--trans);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-link svg { flex-shrink: 0; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: 100%; left: -8px;
  background: #fff; border-radius: 14px;
  padding: 16px 10px 10px; /* padding-top sebagai jembatan — tidak ada gap */
  min-width: 220px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: all var(--trans);
  border: 1px solid var(--border);
  display: flex; gap: 0;
}
.dropdown-section { flex: 1; }
.dropdown-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 6px 10px 4px; }
.dropdown-menu a { display: block; padding: 7px 10px; font-size: .83rem; color: var(--text); border-radius: 8px; font-family: var(--font); transition: var(--trans); }
.dropdown-menu a:hover { background: var(--off); color: var(--blue); }

.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font); font-size: .83rem; font-weight: 700;
  padding: 8px 18px; border-radius: 10px; transition: all var(--trans);
  white-space: nowrap; flex-shrink: 0;
}
.btn-nav-cta:hover { background: var(--gold-d); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 99; padding: 20px 6%; overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 1rem; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font); transition: var(--trans); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-section-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); padding: 16px 0 4px; }
.mobile-cta-btn {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: 14px 0 !important; text-align: center !important;
  border-radius: var(--r) !important; border: none !important; margin-top: 16px !important;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  min-height: 88vh; padding: 80px 8%; gap: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(21,66,196,.3) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3);
  color: var(--gold); font-size: .73rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: .06em;
  margin-bottom: 20px; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.2rem); }
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.8; max-width: 540px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars span { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-2)); border: 2px solid var(--navy); margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: .65rem; color: #fff; font-weight: 700; }
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .83rem; color: rgba(255,255,255,.5); }
.trust-text strong { color: var(--gold); }

.hero-visual { position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-img-placeholder { width: 100%; aspect-ratio: 4/5; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: rgba(255,255,255,.2); font-size: .85rem; }

.float-badge {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
}
.float-badge-1 { top: 10%; right: -5%; animation: float-a 4s ease-in-out infinite; }
.float-badge-2 { bottom: 16%; left: -8%; animation: float-b 4s ease-in-out infinite; }
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-b { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(0)} }
.float-badge-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.float-badge strong { display: block; font-size: .82rem; color: var(--text); font-family: var(--font); }
.float-badge small { font-size: .72rem; color: var(--muted); }

/* ── Stats bar ── */
.stats-bar {
  background: var(--gold);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 8%;
}
.stat-item { text-align: center; padding: 0 16px; border-right: 1px solid rgba(0,0,0,.1); }
.stat-item:last-child { border: none; }
.stat-num { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: .78rem; color: rgba(10,22,40,.65); font-weight: 500; }

/* ── Sections ── */
.section { padding: 88px 8%; }
.section.bg-off    { background: var(--off); }
.section.bg-white  { background: #fff; }
.section.bg-navy   { background: var(--navy); }
.section.bg-warm   { background: var(--warm); }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-title { color: var(--text); margin-bottom: 12px; }
.section-title.white { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.75; }
.section-sub.muted { color: rgba(255,255,255,.55); }
.section-head.center .section-sub { margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--blue); background: #EEF4FF;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.eyebrow.gold { color: #7c4f00; background: #FFF3DC; }
.center { text-align: center; }

/* ── SPS ── */
.sps-card-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.sps-left {
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue) 100%);
  padding: 48px 40px; display: flex; flex-direction: column; gap: 24px; justify-content: space-between;
}
.sps-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.3);
  color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; width: fit-content;
}
.sps-left-title { font-family: var(--serif); font-size: 2rem; color: #fff; line-height: 1.3; }
.sps-left p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; }
.sps-right { background: #fff; padding: 36px 40px; }
.sps-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.sps-step:last-child { border: none; padding-bottom: 0; }
.sps-step-num { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; }
.sps-num-blue { background: #EEF4FF; color: var(--blue); }
.sps-num-gold { background: #FFF3DC; color: #7c4f00; }
.sps-step-title { font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sps-step-desc  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Services homepage ── */
.services-grid-2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.services-grid-2 + .services-grid-2 { margin-top: 14px; }
.service-card {
  background: #fff; border-radius: var(--r); border: 1.5px solid var(--border);
  padding: 24px; transition: all var(--trans);
  display: flex; flex-direction: column; cursor: pointer;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 14px; flex-shrink: 0; }
.si-blue   { background: #EEF4FF; }
.si-gold   { background: #FFF3DC; }
.service-card h3 { font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.service-more { font-size: .8rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; }
.service-more::after { content: '→'; transition: transform var(--trans); }
.service-card:hover .service-more::after { transform: translateX(4px); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; transition: all var(--trans);
  position: relative;
}
.price-card:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.09); }
.price-popular { background: rgba(245,166,35,.12); border-color: var(--gold); }
.price-popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .7rem; font-weight: 800; padding: 3px 16px; border-radius: 20px;
  white-space: nowrap; font-family: var(--font); letter-spacing: .04em;
}
.price-name   { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 8px; font-family: var(--font); }
.price-popular .price-name { color: var(--gold); }
.price-amount { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin-bottom: 4px; }
.price-per    { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 22px; }
.price-feats  { list-style: none; flex: 1; margin-bottom: 22px; }
.price-feats li { font-size: .83rem; color: rgba(255,255,255,.65); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; gap: 8px; align-items: flex-start; }
.price-feats li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Testimonials ── */
.video-testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.video-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--navy); border: 1px solid var(--border); }
.testi-video { width: 100%; aspect-ratio: 16/9; display: block; background: var(--navy); }
.video-label { text-align: center; padding: 10px; font-size: .8rem; color: var(--muted); font-weight: 500; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--off); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border); transition: var(--trans); }
.testi-card:hover { box-shadow: var(--shadow); }
.testi-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.testi-label-badge { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: #EEF4FF; padding: 3px 10px; border-radius: 6px; }
.testi-quote { font-size: .88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; border-left: 3px solid var(--gold); padding-left: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; font-family: var(--font); }
.testi-name { font-size: .88rem; font-weight: 700; color: var(--text); }
.testi-sub  { font-size: .75rem; color: var(--muted); }

/* ── Partners ── */
.partners-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 8%; }
.partners-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); text-align: center; margin-bottom: 24px; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; margin-bottom: 20px; }
.partner-logo-wrap { width: 80px; height: 50px; display: flex; align-items: center; justify-content: center; }
.partner-logo { max-width: 80px; max-height: 50px; object-fit: contain; filter: grayscale(100%) opacity(.5); transition: filter var(--trans); }
.partner-logo:hover { filter: none; }
.partners-names { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.partner-chip { background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 5px 14px; font-size: .75rem; font-weight: 500; color: var(--muted); white-space: nowrap; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,166,35,.15), transparent);
}
.cta-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 10px; position: relative; }
.cta-free  { font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; position: relative; }
.cta-sub   { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 28px; position: relative; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btn   { margin: 0 auto; position: relative; }

/* ── Footer ── */
.footer { background: var(--navy); padding: 64px 8% 28px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; font-family: var(--font); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }

/* ── Masalah ── */
.masalah-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.masalah-card { background: #fff; border-radius: var(--r); padding: 24px; border-left: 4px solid #E05A00; }
.masalah-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.masalah-card h4 { font-family: var(--font); font-size: .95rem; font-weight: 700; color: #b54000; margin-bottom: 8px; }
.masalah-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Features / Icon grid ── */
.feat-grid { display: grid; gap: 16px; margin-top: 40px; }
.feat-3 { grid-template-columns: repeat(3, 1fr); }
.feat-4 { grid-template-columns: repeat(4, 1fr); }
.feat-card { background: #fff; border-radius: var(--r); border: 1.5px solid var(--border); padding: 24px; transition: all var(--trans); }
.feat-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-3px); }
.feat-icon { width: 46px; height: 46px; border-radius: 12px; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feat-blue   { background: #EEF4FF; }
.feat-orange { background: #FFF3DC; }
.feat-card h4 { font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-card p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ── Blog / Artikel ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.post-card { background: #fff; border-radius: var(--r); border: 1.5px solid var(--border); overflow: hidden; transition: all var(--trans); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--off); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 20px; }
.post-date { font-size: .74rem; color: var(--muted); margin-bottom: 8px; }
.post-title { font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.post-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-more { font-size: .8rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; }
.post-more::after { content: '→'; }

/* ── Article detail ── */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-header { margin-bottom: 36px; }
.article-title { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--text); margin-bottom: 16px; }
.article-meta { font-size: .82rem; color: var(--muted); }
.article-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r); margin-bottom: 36px; }
.article-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.article-content h2 { font-size: 1.5rem; margin: 32px 0 14px; color: var(--text); }
.article-content h3 { font-size: 1.15rem; margin: 24px 0 10px; font-family: var(--font); font-weight: 700; }
.article-content p  { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; list-style: disc; }
.article-content li { margin-bottom: 8px; }
.article-content a  { color: var(--blue); text-decoration: underline; }
.article-content strong { font-weight: 700; color: var(--navy); }
.article-content blockquote { border-left: 4px solid var(--gold); padding: 12px 20px; background: var(--off); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--muted); }

/* ── Page: Link bio ── */
.link-page { min-height: 100vh; background: linear-gradient(160deg, var(--navy) 0%, #152a5c 100%); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.link-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 40px 32px; max-width: 400px; width: 100%; text-align: center; backdrop-filter: blur(10px); }
.link-logo { height: 48px; margin: 0 auto 8px; }
.link-handle { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.link-btns { display: flex; flex-direction: column; gap: 12px; }
.link-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; padding: 14px 20px; border-radius: 12px;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  transition: all var(--trans); text-decoration: none;
}
.link-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); transform: translateX(4px); }
.link-btn.primary-btn { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: 0 4px 16px rgba(245,166,35,.35); }
.link-btn.primary-btn:hover { background: var(--gold-d); }
.link-btn-icon { width: 32px; height: 32px; flex-shrink: 0; }

/* ── Urgency bar ── */
.urgency-bar { background: var(--navy); padding: 10px 8%; text-align: center; }
.urgency-bar p { font-size: .85rem; font-weight: 600; color: var(--gold); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 8%; font-size: .8rem; color: var(--muted); background: var(--off); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ── Alumni page ── */
.alumni-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 40px 0; }
.alumni-stat { background: var(--off); border-radius: var(--r); padding: 24px; text-align: center; border: 1px solid var(--border); }
.alumni-stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.alumni-stat-lbl { font-size: .8rem; color: var(--muted); }

/* ── Alumni link button ── */
.btn-alumni-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: .95rem;
  padding: 12px 28px; border-radius: var(--r);
  border: 2px solid var(--blue); transition: all var(--trans);
  text-decoration: none;
}
.btn-alumni-link:hover { background: var(--blue); color: #fff; transform: translateX(4px); }

/* ── Lazy img ── */
img.lazy { opacity: 0; transition: opacity .4s; }
img.lazy.loaded { opacity: 1; }
img[src="/assets/img/placeholder.svg"] { background: var(--off); }

/* ── 404 ── */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 16px; padding: 40px; }
.page-404 h1 { font-family: var(--serif); font-size: 6rem; color: var(--border); line-height: 1; }

/* ── Pagination ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; color: var(--text); background: var(--off); border: 1.5px solid var(--border); transition: var(--trans); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .services-grid-2 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 6%; gap: 32px; }
  .hero-visual { display: none; }
  .sps-card-wrap { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 6%; }
  .section { padding: 56px 5%; }
  .sps-left { padding: 32px 24px; }
  .sps-right { padding: 24px; }
  .masalah-grid { grid-template-columns: 1fr; }
  .feat-3, .feat-4 { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .video-testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .alumni-stats { grid-template-columns: repeat(2, 1fr); }
  .float-badge-1, .float-badge-2 { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .pricing-grid { max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-ghost { text-align: center; justify-content: center; }
}
