/* =========================================================
   SIKACLOUD — Design System v4
========================================================= */
:root {
  /* Brand */
  --blue:       #0E6EFF;
  --blue-deep:  #0A54CC;
  --blue-pale:  #EBF3FF;
  --blue-soft:  #F0F6FF;
  --ink:        #0A2A5E;
  --ink-2:      #1B3A7A;
  --gold:       #F0A202;
  --gold-deep:  #CC8600;
  --gold-pale:  #FFF8E6;
  --green:      #16A387;
  --green-pale: #E8F7F4;
  --red-pale:   #FFF0F0;

  /* Neutral */
  --white:      #FFFFFF;
  --canvas:     #F8FAFF;   /* sangat terang, hampir putih dengan hint biru */
  --gray-lt:    #F3F6FB;
  --gray-md:    #E4EAF5;
  --slate:      #5A6A8A;
  --slate-dark: #1E2D4F;
  --border:     #E0E8F5;

  /* Font */
  --f-head: 'Sora', sans-serif;
  --f-body: 'Plus Jakarta Sans', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  /* Radius */
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --r-xs: 6px;

  /* Shadow */
  --sh-sm: 0 2px 12px -4px rgba(10,42,94,.10);
  --sh-md: 0 8px 32px -12px rgba(10,42,94,.16);
  --sh-lg: 0 20px 60px -20px rgba(10,42,94,.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-size: 16px;
}
h1,h2,h3,h4,h5 {
  font-family: var(--f-head);
  color: var(--slate-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.skip-link {
  position: absolute; top: -4rem; left: 1rem;
  background: var(--ink); color: #fff;
  padding: .5rem 1rem; border-radius: var(--r-sm); z-index: 9999;
}
.skip-link:focus { top: 1rem; }
section { padding: 80px 0; }

/* ── Utility ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--f-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  padding: .3rem .85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-green { color: var(--green); background: var(--green-pale); }
.section-label {
  font-size: 1rem; color: var(--slate);
  max-width: 600px; margin-inline: auto;
  line-height: 1.75;
}
.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold-deep); }
.text-green { color: var(--green); }
.bg-canvas  { background: var(--canvas); }
.bg-white   { background: var(--white); }

/* ── Buttons ── */
.btn-primary-sk {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: #fff; font-weight: 700;
  border: none; border-radius: var(--r-sm);
  padding: .75rem 1.75rem; font-size: .95rem;
  font-family: var(--f-body);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-primary-sk:hover {
  background: var(--blue-deep); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(14,110,255,.45);
}
.btn-outline-sk {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--border); background: var(--white); color: var(--slate-dark);
  font-weight: 700; border-radius: var(--r-sm);
  padding: .72rem 1.7rem; font-size: .95rem;
  font-family: var(--f-body);
  transition: border-color .15s, color .15s;
}
.btn-outline-sk:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost-sk {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--blue); font-weight: 700; font-size: .9rem;
  background: none; border: none; padding: 0;
  font-family: var(--f-body);
}
.btn-ghost-sk:hover { color: var(--blue-deep); gap: .65rem; }

/* ── NAVBAR ── */
.navbar-sk {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: all .25s;
}
.navbar-sk.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px -10px rgba(10,42,94,.15);
}
.navbar-brand-sk {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--f-head); font-weight: 800; font-size: 1.25rem;
  color: var(--ink);
}
.navbar-brand-sk img { border-radius: 50%; width: 50px; height: 50px; }
.navbar-brand-sk small {
  font-family: var(--f-body); font-size: .55rem; font-weight: 500;
  color: var(--slate); display: block; letter-spacing: 0;
}
.nav-link-sk {
  font-weight: 600; font-size: .9rem; color: var(--slate-dark) !important;
  padding: .5rem .9rem !important;
  border-radius: var(--r-xs);
  transition: color .15s, background .15s;
}
.nav-link-sk:hover, .nav-link-sk.active { color: var(--blue) !important; }
.navbar-toggler { border: 1.5px solid var(--border); }
@media(max-width:991.98px){
  .navbar-collapse {
    background: #fff; margin-top: .75rem; padding: 1rem;
    border-radius: var(--r-lg); box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
  }
}

/* ═══════════════════════════════════════
   HERO — Full white, typography-first
═══════════════════════════════════════ */
.hero-sk {
  background: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}
/* Soft blue gradient blob top-right */
.hero-sk::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,110,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-sk h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-sk h1 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
/* Underline accent */
.hero-sk h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 6px;
  background: var(--blue-pale);
  border-radius: 3px;
  z-index: -1;
}
.hero-lead {
  font-size: 1.1rem; color: var(--slate);
  max-width: 520px; line-height: 1.8;
}
/* Result pills (seperti GajiHub check items) */
.hero-results {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.5rem;
}
.hero-result-item {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: var(--slate-dark);
}
.hero-result-item i { color: var(--blue); font-size: 1rem; }

/* Dashboard mockup */
.hero-visual {
  position: relative;
  padding: 1rem 1rem 2rem;
}
.dashboard-mock {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dm-topbar {
  background: var(--gray-lt);
  border-bottom: 1px solid var(--border);
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.dm-dots { display: flex; gap: 5px; }
.dm-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); display: block;
}
.dm-url {
  font-family: var(--f-mono); font-size: .65rem;
  color: var(--slate); background: var(--white);
  padding: .2rem .7rem; border-radius: 999px;
  border: 1px solid var(--border);
}
.dm-body { display: flex; }
.dm-sidebar {
  width: 52px; background: var(--ink);
  padding: .8rem 0;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.dm-nav-item {
  width: 32px; height: 32px;
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .95rem;
}
.dm-nav-item.on { background: var(--blue); color: #fff; }
.dm-main { flex: 1; padding: 1rem; background: var(--canvas); }
.dm-greeting { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .8rem; }
.dm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: .8rem; }
.dm-card {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); padding: .6rem .7rem;
}
.dm-card-label { font-size: .6rem; color: var(--slate); margin-bottom: .15rem; }
.dm-card-val { font-family: var(--f-mono); font-size: .95rem; font-weight: 700; color: var(--ink); }
.dm-card-up { font-size: .6rem; color: var(--green); font-weight: 600; }
.dm-bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.dm-bar { flex: 1; border-radius: 3px 3px 1px 1px; background: var(--blue-pale); }
.dm-bar.hi { background: var(--blue); }
/* Floating notif */
.dm-notif {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: .55rem .9rem;
  font-size: .72rem; font-weight: 700; color: var(--slate-dark);
  display: flex; align-items: center; gap: .4rem;
  white-space: nowrap; animation: floatUp 4s ease-in-out infinite;
}
.dm-notif i { color: var(--blue); }
.dm-notif-1 { top: 1.5rem; right: -.5rem; animation-delay: 0s; }
.dm-notif-2 { bottom: 1rem; left: -.5rem; animation-delay: .8s; }
@keyframes floatUp {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-7px); }
}
@media(prefers-reduced-motion:reduce){ .dm-notif { animation: none; } }

/* Stat bar */
.stat-bar {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}
.stat-bar-item { text-align: center; }
.stat-num {
  font-family: var(--f-mono); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700; color: var(--blue);
  display: block;
}
.stat-suffix { color: var(--gold); }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,.12);
  align-self: stretch; margin: auto 0;
}

/* ═══════════════════════════════════════
   TRUSTED BY — logo marquee
═══════════════════════════════════════ */
.section-trust { background: var(--white); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { font-size: .8rem; font-weight: 600; color: var(--slate); text-align: center; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: .08em; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg,var(--white),transparent); }
.marquee-wrap::after  { right:0; background: linear-gradient(270deg,var(--white),transparent); }
.marquee-track { display: flex; gap: .75rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track-r { animation-direction: reverse; animation-duration: 38s; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media(prefers-reduced-motion:reduce){ .marquee-track { animation: none; } }
.school-chip {
  display: flex; align-items: center; gap: .7rem;
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: .7rem 1.1rem;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s;
}
.school-chip:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.chip-av {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: .68rem;
  flex-shrink: 0;
}
.av-b { background: var(--blue-pale); color: var(--blue-deep); }
.av-g { background: var(--green-pale); color: var(--green); }
.av-n { background: #E8EEF8; color: var(--ink); }
.av-o { background: var(--gold-pale); color: var(--gold-deep); }
.chip-name { font-size: .8rem; font-weight: 700; color: var(--slate-dark); display: block; }
.chip-loc  { font-size: .68rem; color: var(--slate); }

/* ═══════════════════════════════════════
   HOW IT HELPS — Tab fitur (GajiHub style)
═══════════════════════════════════════ */
.section-tabs { background: var(--white); }
.tab-pills {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 3rem;
}
.tab-pill {
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--slate); font-weight: 600; font-size: .85rem;
  border-radius: 999px; padding: .55rem 1.2rem;
  cursor: pointer; transition: all .2s; font-family: var(--f-body);
}
.tab-pill:hover { border-color: var(--blue); color: var(--blue); }
.tab-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.tab-pane-sk {
  display: none;
}
.tab-pane-sk.active {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: tabFadeIn .25s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tab-visual {
  background: var(--canvas); border-radius: var(--r-xl);
  border: 1px solid var(--border); overflow: hidden;
  height: 340px; display: flex; align-items: center; justify-content: center;
}
.tab-visual-inner {
  padding: 1.5rem; width: 100%;
}
/* Mini card grid inside tab */
.tab-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.tab-mini-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1rem;
}
.tab-mini-card i { font-size: 1.4rem; color: var(--blue); margin-bottom: .5rem; display: block; }
.tab-mini-card strong { display: block; font-size: .85rem; color: var(--slate-dark); margin-bottom: .2rem; }
.tab-mini-card span { font-size: .75rem; color: var(--slate); }
/* Progress bar inside tab */
.tab-progress { margin-top: .5rem; }
.tp-row { margin-bottom: .7rem; }
.tp-label { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 600; color: var(--slate-dark); margin-bottom: .25rem; }
.tp-bar { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.tp-fill { height: 100%; border-radius: 999px; background: var(--blue); }
/* Tab content text */
.tab-text h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.tab-text p  { font-size: .95rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.2rem; }
.tab-feature-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tab-feature-list li {
  padding: .5rem 0; font-size: .9rem; color: var(--slate-dark);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .6rem;
}
.tab-feature-list li:last-child { border-bottom: none; }
.tab-feature-list i { color: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════════
   WHY — 6 cards grid
═══════════════════════════════════════ */
.section-why { background: var(--canvas); }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.6rem;
  height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-pale); }
.why-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.why-card p  { font-size: .88rem; margin: 0; }

/* ═══════════════════════════════════════
   PESANTREN SPOTLIGHT
═══════════════════════════════════════ */
.section-pesantren {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: rgba(255,255,255,.85);
}
.pesantren-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pf-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 1.3rem;
  transition: background .2s;
}
.pf-card:hover { background: rgba(255,255,255,.12); }
.pf-card i { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.pf-card h4 { font-size: .95rem; color: #fff; margin-bottom: .25rem; }
.pf-card p  { font-size: .8rem; color: rgba(255,255,255,.65); margin: 0; }
.pesantren-list { list-style: none; padding: 0; }
.pesantren-list li {
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .93rem; display: flex; align-items: flex-start; gap: .6rem;
}
.pesantren-list i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

/* ═══════════════════════════════════════
   HOW IT WORKS — Steps
═══════════════════════════════════════ */
.section-steps { background: var(--white); }
.step-track {
  display: flex; gap: 0;
  position: relative;
  counter-reset: step;
}
.step-track::before {
  content: '';
  position: absolute;
  top: 24px; left: calc(12.5%);
  width: 75%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.step-item h3 { font-size: .95rem; margin-bottom: .4rem; }
.step-item p  { font-size: .83rem; color: var(--slate); padding: 0 .5rem; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.section-testi { background: var(--canvas); }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem;
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow .2s;
}
.testi-card:hover { box-shadow: var(--sh-md); }
.testi-stars { color: var(--gold); font-size: .88rem; margin-bottom: 1rem; }
.testi-quote { font-size: .95rem; color: var(--slate-dark); line-height: 1.8; flex-grow: 1; font-style: italic; }
.testi-divider { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0 1rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--f-mono); font-size: .75rem;
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--slate-dark); display: block; }
.testi-role { font-size: .76rem; color: var(--slate); }
.swiper-pagination-bullet-active { background: var(--blue) !important; }
.testiSwiper { padding-bottom: 3rem !important; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.section-pricing { background: var(--white); }
.price-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 3rem; }
.toggle-lbl { font-weight: 700; font-size: .9rem; color: var(--slate-dark); }
.save-badge {
  background: var(--green-pale); color: var(--green);
  font-size: .68rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 999px; margin-left: .3rem;
}
.form-check-input:checked { background-color: var(--blue); border-color: var(--blue); }
.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 1.8rem;
  height: 100%; position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.price-card:hover { box-shadow: var(--sh-md); }
.price-card-popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-pale), var(--sh-md);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: .7rem; font-weight: 700; padding: .28rem .9rem;
  border-radius: 999px; white-space: nowrap;
}
.price-tier-badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: .2rem .75rem; border-radius: 999px; margin-bottom: .75rem;
}
.tier-basic { background: var(--gray-lt); color: var(--slate); }
.tier-smart { background: var(--blue-pale); color: var(--blue-deep); }
.tier-pro   { background: var(--gold-pale); color: var(--gold-deep); }
.price-card h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.price-tagline { font-size: .83rem; color: var(--slate); margin-bottom: 1.2rem; min-height: 2.4rem; }
.price-main { margin-bottom: 1.4rem; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--slate-dark); vertical-align: top; margin-top: .4rem; display: inline-block; }
.price-amount { font-family: var(--f-mono); font-size: 2.8rem; font-weight: 700; color: var(--ink); line-height: 1; }
.price-per { font-size: .8rem; color: var(--slate); display: block; margin-top: .2rem; }
.price-ppn { font-size: .7rem; color: var(--slate); font-style: italic; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0; }
.price-features { list-style: none; padding: 0; margin: 0; }
.price-features li {
  font-size: .88rem; color: var(--slate-dark); padding: .38rem 0;
  display: flex; align-items: center; gap: .55rem;
  border-bottom: 1px solid var(--gray-lt);
}
.price-features li:last-child { border-bottom: none; }
.price-features .fi { color: var(--green); flex-shrink: 0; }
.price-features .fx { color: var(--border); flex-shrink: 0; }
.price-features li.dim { color: var(--border); }
.custom-plan-box {
  background: var(--blue-soft); border: 1.5px solid var(--blue-pale);
  border-radius: var(--r-lg); padding: 2rem; margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.custom-plan-box h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.custom-plan-box p { font-size: .9rem; color: var(--slate); margin: 0; }

/* Comparison table */
.section-compare { background: var(--canvas); }
.compare-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.compare-table { margin: 0; background: var(--white); }
.compare-table thead th {
  background: var(--ink); color: #fff;
  font-family: var(--f-head); font-size: .88rem;
  padding: 1rem 1.1rem; border: none;
}
.compare-table thead th:first-child { background: var(--ink); }
.compare-table td { padding: .7rem 1.1rem; font-size: .88rem; border-color: var(--border); }
.compare-table tr:hover td { background: var(--canvas); }
.c-yes { color: var(--blue); font-size: 1rem; }
.c-no  { color: var(--border); font-size: 1rem; }
.promo-row td { background: var(--gold-pale) !important; font-weight: 700; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.section-faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item {
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.3rem; cursor: pointer;
  font-weight: 700; font-size: .9rem; color: var(--slate-dark);
  transition: color .2s;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--f-body);
}
.faq-q:hover { color: var(--blue); }
.faq-q i { flex-shrink: 0; color: var(--blue); transition: transform .2s; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.3rem; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .88rem; color: var(--slate); line-height: 1.8;
}
.faq-a.open { max-height: 300px; padding: 0 1.3rem 1.1rem; }
.faq-sidebar-cta {
  background: var(--blue-soft); border: 1.5px solid var(--blue-pale);
  border-radius: var(--r-xl); padding: 2rem; text-align: center;
  position: sticky; top: 5.5rem;
}
.faq-sidebar-cta h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.faq-sidebar-cta p  { font-size: .88rem; margin-bottom: 1.2rem; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.page-hero-sk {
  background: var(--white);
  padding: 120px 0 60px;
}
.page-hero-sk h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--ink); }
.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2.2rem;
  box-shadow: var(--sh-md);
}
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: .3rem; }
.contact-form-card .form-sub { font-size: .88rem; color: var(--slate); margin-bottom: 1.5rem; }
.form-label-sk { font-size: .82rem; font-weight: 700; color: var(--slate-dark); margin-bottom: .3rem; }
.form-control-sk {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: .7rem .95rem; font-size: .9rem; width: 100%;
  font-family: var(--f-body); background: var(--white); color: var(--slate-dark);
  transition: border-color .15s, box-shadow .15s;
}
.form-control-sk:focus {
  border-color: var(--blue); outline: none;
  box-shadow: 0 0 0 3px rgba(14,110,255,.1);
}
.form-legal { font-size: .73rem; color: var(--slate); margin-top: .75rem; }
.contact-why-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-why-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-why-item strong { display: block; font-size: .9rem; color: var(--slate-dark); margin-bottom: .15rem; }
.contact-why-item p { font-size: .83rem; margin: 0; }
.contact-info-item {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--slate-dark);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i { color: var(--blue); font-size: 1rem; width: 20px; text-align: center; }
.contact-info-item a { color: var(--slate-dark); font-weight: 600; }
.contact-info-item a:hover { color: var(--blue); }

/* ═══════════════════════════════════════
   CTA SECTION (semua halaman)
═══════════════════════════════════════ */
.section-cta-sk {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.section-cta-sk::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.section-cta-sk h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: .7rem; }
.section-cta-sk p  { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 0; }
.cta-result-items { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.cta-result-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.cta-result-item i { color: var(--gold); }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--ink); font-weight: 800;
  border: none; border-radius: var(--r-sm);
  padding: .8rem 1.8rem; font-size: .95rem; font-family: var(--f-body);
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(0,0,0,.25); color: var(--ink); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-weight: 700;
  border-radius: var(--r-sm); padding: .75rem 1.7rem; font-size: .95rem;
  background: transparent; font-family: var(--f-body);
  transition: background .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ═══════════════════════════════════════
   FITUR PAGE
═══════════════════════════════════════ */
.section-fitur-page { background: var(--white); }
.fitur-group-head {
  padding: 2rem 0 1rem;
  border-bottom: 2px solid var(--blue-pale);
  margin-bottom: 1.5rem;
}
.fitur-group-head:first-of-type { padding-top: 0; }
.fitur-group-head h2 { font-size: 1.35rem; margin: 0; }
.module-card-sk {
  background: var(--canvas); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.6rem;
  height: 100%; position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.module-card-sk:hover {
  border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--sh-sm);
}
.module-ic-sk { font-size: 1.5rem; color: var(--blue); display: block; margin-bottom: .8rem; }
.module-card-sk h3 { font-size: .95rem; margin-bottom: .4rem; }
.module-card-sk p  { font-size: .84rem; margin: 0; }
.soon-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold-pale); color: var(--gold-deep);
  font-size: .6rem; font-weight: 700; padding: .18rem .55rem;
  border-radius: 999px; border: 1px solid rgba(204,134,0,.2);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-sk {
  background: #070F2B; color: rgba(255,255,255,.6);
  padding: 4.5rem 0 2rem;
}
.footer-brand-sk {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--f-head); font-weight: 800; font-size: 1.2rem;
  color: #fff; margin-bottom: .5rem;
}
.footer-brand-sk img { border-radius: 50%; width: 28px; height: 28px; }
.footer-tagline-sk { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-desc-sk { font-size: .87rem; max-width: 300px; line-height: 1.7; }
.footer-social-sk { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social-sk a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.footer-social-sk a:hover { background: var(--blue); border-color: var(--blue); }
.footer-heading-sk { font-size: .85rem; color: #fff; font-weight: 700; margin-bottom: .9rem; font-family: var(--f-body); }
.footer-links-sk { list-style: none; padding: 0; margin: 0; }
.footer-links-sk li { margin-bottom: .55rem; }
.footer-links-sk a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links-sk a:hover { color: var(--blue); }
.footer-contact-sk { list-style: none; padding: 0; margin: 0; }
.footer-contact-sk li { display: flex; align-items: center; gap: .55rem; margin-bottom: .65rem; font-size: .85rem; }
.footer-contact-sk i { color: var(--blue); width: 16px; text-align: center; }
.footer-contact-sk a { color: rgba(255,255,255,.6); }
.footer-contact-sk a:hover { color: var(--blue); }
.footer-hr { border-color: rgba(255,255,255,.1); margin: 2.5rem 0 1.5rem; }
.footer-copy { font-size: .78rem; margin: 0; }
.footer-legal a { color: rgba(255,255,255,.5); font-size: .78rem; }
.footer-legal a:hover { color: var(--blue); }

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  border: none; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: all .25s; z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ── Responsive ── */
@media(max-width:991.98px){
  section { padding: 56px 0; }
  .hero-sk { padding: 90px 0 56px; }
  .page-hero-sk { padding: 90px 0 40px; }
  .price-card-popular { box-shadow: var(--sh-md); }
  .step-track::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .pesantren-feature-grid { grid-template-columns: 1fr; }
}
@media(max-width:767.98px){
  .hero-sk h1 { font-size: 2rem; }
  .dm-notif { display: none; }
  .stat-bar { padding: 1.5rem 1rem; }
  .tab-pane-sk.active { flex-direction: column; }
  .tab-visual { height: 240px; }
  .step-track { flex-direction: column; gap: 1rem; }
  .custom-plan-box { flex-direction: column; }
  .contact-form-card { padding: 1.4rem; }
}
