/* ==========================================================================
   AQAR — Homepage sections (front page only)
   Hand-written port of the design mockup (D:\PROJECT\aqar-lms-re-design).

   Depends on tokens.css + ui.css. The shared component library lives in ui.css
   (cards, badges, section rhythm, tabs, FAQ, scroll-reveal); this file holds ONLY
   the sections that exist nowhere else on the site.
   ========================================================================== */

/* ==========================================================================
   PRICING CARD
   ========================================================================== */
.pcard { position: relative; display: flex; flex-direction: column; background: var(--c-canvas);
  border: 2px solid var(--c-line); border-radius: var(--r-xl); padding: var(--sp-6);
  transition: border-color .3s var(--ease); }
.pcard:hover { border-color: var(--c-tint-2); }
.pcard-featured { border-color: var(--c-turquoise); box-shadow: var(--sh-lg); }
.pcard-featured:hover { border-color: var(--c-turquoise); }
.pcard-flag { position: absolute; top: -12px; left: var(--sp-6); }
.pcard-plan { margin: 0; font-size: var(--fs-sm); font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--c-faint); }
.pcard-featured .pcard-plan { color: var(--c-turquoise-600); }
.pcard-price { display: flex; align-items: flex-end; gap: 4px; margin: var(--sp-4) 0 0; }
.pcard-amount { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--c-ink); }
.pcard-per { margin-bottom: 5px; font-size: var(--fs-sm); color: var(--c-muted); }
.pcard-note { margin: var(--sp-3) 0 0; font-size: 0.9375rem; color: var(--c-muted); }
.pcard-note strong { color: var(--c-ink); font-weight: 800; }
.pcard-list { flex: 1; list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; gap: var(--sp-3); }
.pcard-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--c-ink-2); }
.pcard-list svg { flex: none; margin-top: 3px; width: 16px; height: 16px; color: var(--c-turquoise); }
.pcard .btn { margin-top: var(--sp-6); }

/* ==========================================================================
   COST LADDER
   The single strongest argument AQAR has, and it is arithmetic, not adjectives:
   ONE Kembara Tadabbur course costs RM200. A full year of ALL FIVE costs RM192.
   The bar carries NO text — a price printed inside a short bar would force a
   min-width and quietly lie about the ratio. Outside, the bars stay true.
   Width comes from --w (set inline per row); bars grow from 0 when scrolled in.
   ========================================================================== */
.ladder { display: grid; gap: var(--sp-4); }
.ladder-row { display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: var(--sp-3) var(--sp-5); }
.ladder-what { font-size: 0.9375rem; font-weight: 800; line-height: var(--lh-snug); color: var(--c-ink); }
.ladder-sub { margin: 2px 0 0; font-size: 0.8125rem; line-height: var(--lh-snug); color: var(--c-faint); }
.ladder-bar { position: relative; grid-column: 1 / -1; order: 3; height: 12px; overflow: hidden;
  border-radius: var(--r-pill); background: var(--c-surface); }
/* display:block is load-bearing: the fill is a <span>, and width/height do not
   apply to an inline box. Without it the bars have no size and never animate. */
.ladder-fill { display: block; height: 100%; width: 0; border-radius: var(--r-pill);
  background: var(--c-ink);
  transition: width 1.1s var(--ease-soft); transition-delay: var(--d, 0ms); }
.ladder.is-in .ladder-fill,
html.no-js .ladder-fill { width: var(--w); }
.ladder-cost { text-align: right; white-space: nowrap; font-size: 1.0625rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--c-ink); font-variant-numeric: tabular-nums; }
.ladder-cost span { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--c-faint); }
/* The winning row. Teal, and the only row allowed to look good. */
.ladder-row-win .ladder-fill { background: var(--c-turquoise); }
.ladder-row-win .ladder-cost { color: var(--c-turquoise-600); }

@media (min-width: 768px) {
  .ladder-row { grid-template-columns: 15rem 1fr auto; }
  .ladder-bar { grid-column: auto; order: 0; height: 44px; border-radius: var(--r-sm); }
  .ladder-fill { border-radius: var(--r-sm); }
}

/* ==========================================================================
   HONESTY SECTION (§10)
   The most delicately designed block on the page: it admits the product's limit
   and points at the live classes. Restraint IS the design here. If it looks like
   every other marketing block, it reads as a downsell trick and destroys the
   trust the nine sections above it just built. Muted. No accent shouting.
   ========================================================================== */
.honest { max-width: 720px; margin-inline: auto; padding: var(--sp-7) var(--sp-6);
  border: 1px solid var(--c-line); border-radius: var(--r-lg); background: var(--c-surface); }
.honest-title { font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: var(--lh-snug); margin: 0 0 var(--sp-4); }
.honest p { color: var(--c-muted); line-height: var(--lh-body); }
.honest p:last-child { margin-bottom: 0; }
/* :not(.btn) matters. A bare `.honest a` rule is specificity 0,1,1 and outranks
   `.btn-dark` (0,1,0), so it repainted the dark button's label in ink-on-ink —
   invisible until hover. Style the prose links, leave the buttons alone. */
.honest a:not(.btn) { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }
.honest a:not(.btn):hover { color: var(--c-turquoise-700); }

/* ==========================================================================
   1. HERO
   The one gradient on the page: a single static radial, painted once, never
   animated. The panel over it is a flat translucent fill — the mockup used
   backdrop-blur, but there is nothing behind the panel except this gradient,
   so the blur cost a per-frame repaint and changed no pixels.
   ========================================================================== */
.hero-glow {
  background: radial-gradient(1000px 540px at 22% 8%, var(--c-turquoise) 0%, transparent 62%);
  opacity: .55;
}
.hero-inner { position: relative; display: grid; gap: var(--sp-8); align-items: center;
  padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
.hero-badge { display: inline-flex; align-items: center; gap: var(--sp-2);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  border-radius: var(--r-pill); padding: 6px 14px; font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .02em; }
.hero-title { margin: var(--sp-5) 0 0; font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.06; letter-spacing: -.02em; color: #fff; }
.hero-accent { color: var(--c-turquoise-300); }
.hero-lead { margin: var(--sp-4) 0 0; max-width: 36em; font-size: 1.0625rem;
  line-height: var(--lh-body); color: rgba(255,255,255,.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
/* .56 not .5 — WCAG AA needs 4.5:1 for this text size against --c-teal-deep;
   .5 measured 4.18:1 (fails), .56 measures ~4.6:1. Same muted intent, barely
   perceptible change, not a redesign. Verified 2026-07-30. */
.hero-note { margin: var(--sp-4) 0 0; font-size: 0.8125rem; color: rgba(255,255,255,.56); }

/* Money-back guarantee chip (Phase 16, S2). Same pill shape as .hero-badge, but
   placed after the CTAs/note and using the accent colour so it reads as a
   trust signal, not a repeat of the badge above the title. */
.hero-guarantee { display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4); padding: 6px 14px; border: 1px solid rgba(110,231,183,.35);
  background: rgba(110,231,183,.1); border-radius: var(--r-pill); font-size: var(--fs-xs);
  font-weight: 700; color: var(--c-success-300); text-decoration: none; }
.hero-guarantee svg { flex-shrink: 0; width: 16px; height: 16px; }
a.hero-guarantee:hover { background: rgba(110,231,183,.16); }

.hero-panel { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06);
  border-radius: var(--r-xl); padding: var(--sp-5); }
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.hero-panel-label { margin: 0; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .2em; color: var(--c-turquoise-300); }
/* .56 not .45 — WCAG AA fix, same reasoning as .hero-note above. */
.hero-panel-count { margin: 0; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.56); }
.hero-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-top: var(--sp-4); }
.hero-panel-cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1); background: var(--c-turquoise-900); }
.hero-panel-cover img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel-blank { display: flex; align-items: center; justify-content: center; height: 100%;
  padding: var(--sp-2); text-align: center; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.55); }
.hero-panel-foot { display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--sp-3); margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.1); }
.hero-panel-all { margin: 0; font-size: var(--fs-sm); color: rgba(255,255,255,.6); }
.hero-panel-price { margin: 0; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
/* .56 not .5 — WCAG AA fix, same reasoning as .hero-note above. */
.hero-panel-price span { font-size: var(--fs-sm); font-weight: 700; color: rgba(255,255,255,.56); }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: var(--sp-8) var(--sp-8);
    padding-top: var(--sp-9); padding-bottom: var(--sp-9); }
}

/* ==========================================================================
   2. STATISTIK
   ========================================================================== */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-5); }
.stat { text-align: center; }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(5, 1fr); } }

/* ==========================================================================
   3. MASALAH — three people, named plainly
   ========================================================================== */
.pain-grid { margin-top: var(--sp-8); }
.pain-card { background: var(--c-canvas); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: var(--sp-6); }
.pain-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--c-danger-bg); color: var(--c-danger); }
.pain-title { margin: var(--sp-4) 0 0; font-size: var(--fs-h4); }
.pain-body { margin: var(--sp-3) 0 0; font-size: 0.9375rem; line-height: var(--lh-body); color: var(--c-muted); }

.t-brand { color: var(--c-turquoise-600); }

/* ==========================================================================
   4. PENYELESAIAN
   ========================================================================== */
.solution { display: grid; gap: var(--sp-8); }
.solution-quote { margin: var(--sp-6) 0 0; padding-left: var(--sp-5);
  border-left: 4px solid var(--c-turquoise); font-size: 1.0625rem;
  line-height: var(--lh-body); color: var(--c-muted); }
.solution-aside .btn { margin-top: var(--sp-6); }
.solution-item { display: flex; gap: var(--sp-5); padding: var(--sp-6) 0; }
.solution-item + .solution-item { border-top: 1px solid var(--c-line); }
.solution-ico { display: grid; place-items: center; flex: none; width: 44px; height: 44px;
  border-radius: var(--r-md); background: var(--c-tint); color: var(--c-turquoise-600); }
.solution-title { margin: 0; font-size: var(--fs-h4); }
.solution-body { margin: var(--sp-2) 0 0; font-size: 0.9375rem; line-height: var(--lh-body); color: var(--c-muted); }

@media (min-width: 1024px) {
  .solution { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-9); }
  .solution-aside { position: sticky; top: 96px; align-self: start; }
}

/* ==========================================================================
   5. KURSUS
   ========================================================================== */
.htabs-wrap { margin-top: var(--sp-6); }
.course-grid { margin-top: var(--sp-6); }

/* ==========================================================================
   6. KENAPA AQAR — the authority card
   ========================================================================== */
.why-grid { display: grid; gap: var(--sp-5); margin-top: var(--sp-8); }
.authority { display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--c-line); border-radius: var(--r-xl);
  background: var(--c-teal-deep); color: #fff; }
.authority-main { display: grid; gap: var(--sp-5); align-content: center; flex: 1; padding: var(--sp-6); }
.authority-photo { display: block; width: 96px; height: 96px; flex: none; }
.authority-photo img, .authority-initials { width: 96px; height: 96px; border-radius: var(--r-lg);
  object-fit: cover; box-shadow: 0 0 0 2px rgba(255,255,255,.2); }
.authority-initials { display: grid; place-items: center; background: var(--c-turquoise);
  font-size: 1.75rem; font-weight: 800; color: #fff; }
.authority-cred { display: inline-flex; align-items: center; gap: 6px; border-radius: var(--r-pill);
  background: var(--c-gold-soft); color: var(--c-teal-deep); padding: 4px 12px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.authority-name { margin: var(--sp-3) 0 0; font-size: 1.5rem; color: #fff; }
.authority-title { margin: var(--sp-2) 0 0; font-size: 0.9375rem; line-height: var(--lh-body);
  color: var(--c-turquoise-300); }
.authority-blurb { margin: var(--sp-3) 0 0; font-size: 0.9375rem; line-height: var(--lh-body);
  color: rgba(255,255,255,.7); }
.authority-foot { margin: 0; padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  font-size: 0.9375rem; color: rgba(255,255,255,.7); }

.why-list { display: grid; gap: var(--sp-5); align-content: start; }
.why-card { background: var(--c-canvas); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: var(--sp-6); }
.why-title { margin: 0; font-size: var(--fs-h4); }
.why-body { margin: var(--sp-2) 0 0; font-size: 0.9375rem; line-height: var(--lh-body); color: var(--c-muted); }

@media (min-width: 640px) {
  .authority-main { grid-template-columns: auto 1fr; gap: var(--sp-6); padding: var(--sp-7); }
  .authority-foot { padding: var(--sp-5) var(--sp-7); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1.15fr 1fr; }
}

/* ==========================================================================
   GURU CAROUSEL (Phase 16, S4)
   ========================================================================== */
.guru-card { display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: var(--sp-5); background: var(--c-canvas); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); height: 100%; }
.guru-card-photo { display: block; width: 88px; height: 88px; margin-bottom: var(--sp-4); }
.guru-card-photo img, .guru-card-initials { display: block; width: 88px; height: 88px;
  border-radius: var(--r-pill); object-fit: cover; }
.guru-card-initials { display: grid; place-items: center; background: var(--c-turquoise);
  font-size: 1.5rem; font-weight: 800; color: #fff; }
.guru-card-name { margin: 0; font-size: var(--fs-h4); }
.guru-card-cred { display: inline-block; margin-top: var(--sp-2); padding: 3px 10px;
  border-radius: var(--r-pill); background: var(--c-tint); color: var(--c-turquoise-700);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.guru-card-title { margin: var(--sp-2) 0 0; font-size: 0.9375rem; color: var(--c-muted); }
.guru-card-blurb { margin: var(--sp-3) 0 0; font-size: 0.9375rem; line-height: var(--lh-body);
  color: var(--c-ink-2); }

/* Low-count fallback: 3 or fewer gurus, plain centred grid, no arrows/dots. */
.guru-grid--static { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; margin-top: var(--sp-7); }
@media (min-width: 640px) { .guru-grid--static { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-inline: auto; } }
@media (min-width: 1024px) { .guru-grid--static { grid-template-columns: repeat(3, 1fr); max-width: none; } }

/* The real carousel: native horizontal scroll-snap. Works with a finger, a
   trackpad, or the keyboard with zero JS — the buttons/dots are enhancement,
   not the mechanism. */
.guru-carousel { margin-top: var(--sp-7); }
.guru-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 88%;
  gap: var(--sp-4); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--sp-2); padding-bottom: var(--sp-2); }
.guru-carousel-track:focus-visible { outline: 2px solid var(--c-turquoise); outline-offset: 4px; }
.guru-carousel-track .guru-card { scroll-snap-align: start; }
@media (min-width: 640px) { .guru-carousel-track { grid-auto-columns: 46%; } }
@media (min-width: 1024px) { .guru-carousel-track { grid-auto-columns: 31%; } }

.guru-carousel-controls { display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); margin-top: var(--sp-5); }
.guru-carousel-prev, .guru-carousel-next { display: grid; place-items: center; width: 40px;
  height: 40px; flex: none; border: 1px solid var(--c-line); border-radius: var(--r-pill);
  background: var(--c-canvas); color: var(--c-ink); cursor: pointer;
  transition: background var(--dur) var(--ease); }
.guru-carousel-prev:hover, .guru-carousel-next:hover { background: var(--c-surface); }
.guru-carousel-prev[aria-disabled="true"], .guru-carousel-next[aria-disabled="true"] {
  opacity: .35; pointer-events: none; }
.guru-carousel-dots { display: flex; align-items: center; gap: 2px; }
/* Touch target is 24x24 (WCAG 2.2 AA 2.5.8), the visible pill stays small —
   .guru-carousel-dot is the invisible hit area, .guru-carousel-dot-visual is
   the graphic. Widening the ACTIVE dot into a pill happens on the inner
   visual span, so the button's own hit area never shrinks or grows. */
.guru-carousel-dot { display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.guru-carousel-dot-visual { display: block; width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--c-line); transition: width var(--dur) var(--ease), background var(--dur) var(--ease); }
.guru-carousel-dot.is-active .guru-carousel-dot-visual { background: var(--c-turquoise); width: 22px; }
.guru-cta { margin-top: var(--sp-6); text-align: center; }

/* ==========================================================================
   JANGKAUAN — world map (Phase 16, S5)
   ========================================================================== */
.jangkauan-map-wrap { max-width: 900px; margin: var(--sp-7) auto 0; color: var(--c-muted); }
.jangkauan-map { display: block; width: 100%; height: auto; aspect-ratio: 2 / 1; overflow: visible; }

.jangkauan-marker-dot { fill: var(--c-turquoise); }
.jangkauan-marker-dot--inset { fill: var(--c-turquoise-700); }
.jangkauan-marker-pulse { fill: var(--c-turquoise); opacity: .35;
  transform-origin: center; transform-box: fill-box;
  animation: jangkauan-pulse 2.4s var(--ease) infinite; }

@keyframes jangkauan-pulse {
  0%   { transform: scale(.5); opacity: .5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.jangkauan-inset-ring { fill: none; stroke: var(--c-line); stroke-width: 1.5; stroke-dasharray: 4 4; }
.jangkauan-inset-connector { stroke: var(--c-line); stroke-width: 1.5; stroke-dasharray: 3 3; }
.jangkauan-inset-backing { fill: var(--c-canvas); }
.jangkauan-inset-frame { fill: none; stroke: var(--c-line); stroke-width: 2; rx: 6; }
.jangkauan-inset-label { font-size: 7px; fill: var(--c-ink); font-weight: 700; }

.jangkauan-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2) var(--sp-4);
  margin: var(--sp-5) 0 0; padding: 0; list-style: none; }
.jangkauan-legend li { position: relative; padding-left: var(--sp-4); font-size: var(--fs-sm);
  font-weight: 700; color: var(--c-ink-2); }
.jangkauan-legend li::before { content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--c-turquoise); }

.jangkauan-stat { margin: var(--sp-7) auto 0; max-width: 320px; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .jangkauan-marker-pulse { animation: none; opacity: 0; }
}

/* ==========================================================================
   7. UNTUK SIAPA — a quiet checklist
   ========================================================================== */
.who-list { display: grid; gap: var(--sp-3) var(--sp-7); max-width: 900px;
  margin: var(--sp-7) auto 0; padding: 0; list-style: none; }
.who-item { display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 1rem; color: var(--c-ink-2); }
.who-item--strong { font-weight: 800; color: var(--c-ink); }
@media (min-width: 640px) { .who-list { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   8. TANGGA KOS
   ========================================================================== */
.ladder { max-width: 800px; margin: var(--sp-8) auto 0; }

/* ==========================================================================
   9. HARGA
   ========================================================================== */
.price-grid { display: grid; gap: var(--sp-5); max-width: 900px; margin: var(--sp-8) auto 0; }
.price-foot { margin: var(--sp-7) 0 0; text-align: center; font-size: 0.9375rem; color: var(--c-muted); }
@media (min-width: 1024px) { .price-grid { grid-template-columns: 1fr 1fr; } }

/* Member pricing (Phase 12). The badge earns its brand colour: it is the one
   moment the page tells a returning customer why their price is lower. The
   login nudge below the cards stays deliberately quiet — it is a footnote for
   the few, not a second CTA competing with the buttons above it. */
.price-member-note {
  margin: var(--sp-3) 0 0;
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--c-tint-2);
  border-radius: 999px;
  background: var(--c-tint);
  color: var(--c-turquoise-700);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.price-foot--member { margin-top: var(--sp-2); font-size: var(--fs-sm); }

/* ==========================================================================
   10. KEJUJURAN — restraint IS the design; do not make this louder
   ========================================================================== */
.honest-eyebrow { margin: 0; font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow); color: var(--c-faint); }
.honest-title { margin-top: var(--sp-4); }
.honest-turn { font-size: 1.1875rem; font-weight: 800; line-height: var(--lh-snug);
  letter-spacing: -.02em; color: var(--c-ink); }
.honest-close { margin: var(--sp-6) 0 0; padding-top: var(--sp-6); border-top: 1px solid var(--c-line);
  font-size: 1.0625rem; font-weight: 800; line-height: var(--lh-snug);
  letter-spacing: -.02em; color: var(--c-ink); }
.honest-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* ==========================================================================
   11. TESTIMONI
   ========================================================================== */
.testi-grid { margin-top: var(--sp-7); }

/* ==========================================================================
   12. SOALAN LAZIM
   ========================================================================== */
.faq { margin-top: var(--sp-7); }

/* ==========================================================================
   SOROTAN SOAL JAWAB (homepage strip)
   ========================================================================== */
.sj-list { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
.sj-item { display: flex; gap: var(--sp-4); padding: var(--sp-5);
  background: var(--c-canvas); border: 1px solid var(--c-line); border-radius: var(--r-lg); }
.sj-mark { display: grid; place-items: center; flex: none; width: 32px; height: 32px;
  border-radius: var(--r-sm); background: var(--c-tint); color: var(--c-turquoise-700); font-weight: 800; }
.sj-title { margin: 0 0 var(--sp-2); font-size: var(--fs-h4); }
.sj-title a { color: var(--c-ink); }
.sj-title a:hover { color: var(--c-turquoise-600); text-decoration: none; }
.sj-excerpt { margin: 0; font-size: var(--fs-sm); color: var(--c-muted); }

/* CTA AKHIR moved to ui.css: template-parts/sections/cta.php is shared with
   the About page, which never loads this file. See ui.css SECTION RHYTHM. */

/* ==========================================================================
   MOBILE STICKY CTA
   Phone only. The page is long; the price must never be more than a thumb away.
   Hidden until the hero has scrolled away (so it never competes with the hero's
   own CTA) and hidden again over the pricing section, where it would be noise.
   ========================================================================== */
.sticky-cta { position: fixed; inset: auto 0 0 0; z-index: 40;
  background: var(--c-canvas); border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 30px -12px rgba(6,62,62,.25);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%); transition: transform .3s var(--ease); }
.sticky-cta.is-up { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); padding: var(--sp-3) var(--sp-5); }
.sticky-cta-price { margin: 0; font-size: 1.0625rem; font-weight: 800; letter-spacing: -.02em; color: var(--c-ink); }
.sticky-cta-price span { font-size: 0.8125rem; font-weight: 700; color: var(--c-muted); }
.sticky-cta-note { margin: 0; font-size: 11px; color: var(--c-faint); }
.sticky-cta-close { display: grid; place-items: center; flex: none; width: 32px; height: 32px;
  padding: 0; border: 0; border-radius: var(--r-pill); background: none;
  color: var(--c-faint); cursor: pointer; }
.sticky-cta-close:hover { background: var(--c-surface); color: var(--c-ink); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
