/* ============================================
   COACH YUDI CANDRA, Business Blindspot Strategist™
   Shared stylesheet. Edit warna di :root di bawah.
   ============================================ */

:root {
  --navy: #0B1C3A;
  --navy-deep: #060F22;
  --navy-card: #122A52;
  --navy-line: #23407233;
  --gold: #C9A24B;
  --gold-bright: #E5C475;
  --ivory: #F5F1E6;
  --muted: #9FADC4;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 14px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; height: 100%; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main, .kuis-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--maxw), 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
}

.gold-text { color: var(--gold-bright); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 6px 24px rgba(201, 162, 75, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 34px rgba(229, 196, 117, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid var(--gold);
}

.btn-ghost:hover {
  background: rgba(201, 162, 75, 0.12);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.15rem 2.6rem; font-size: 1.08rem; }

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 15, 34, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ivory); }

.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 78% 30%, rgba(201, 162, 75, 0.10), transparent 65%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.hero-blindspot {
  position: absolute;
  right: -8%;
  top: 12%;
  width: min(520px, 55vw);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
  max-width: 680px;
}

.hero h1 { margin-bottom: 1.4rem; }

.hero .lead { margin-bottom: 2.4rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Trust bar ---------- */

.trustbar {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 2.2rem 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--gold-bright);
}

.trust-stat .label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.trust-creds {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 2;
}

.trust-creds b { color: var(--ivory); font-weight: 600; }

/* ---------- Sections ---------- */

section { padding: 5.5rem 0; }

.section-deep { background: var(--navy-deep); }

.section-grad {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.section-head { max-width: 680px; margin-bottom: 3rem; }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { margin-bottom: 0.9rem; }

/* ---------- Pain section ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.pain-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.pain-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }

.pain-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Three-Lens ---------- */

.lens-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.lens-diagram { margin: 0 auto; width: 100%; max-width: 420px; }

.lens-list { display: flex; flex-direction: column; gap: 1.6rem; }

.lens-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.lens-dot {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
}

.lens-item h3 { margin-bottom: 0.3rem; }

.lens-item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Protocol timeline ---------- */

.protocol {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 2.4rem;
}

.protocol::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy-line) 100%);
}

.step {
  position: relative;
  padding-bottom: 2.2rem;
}

.step:last-child { padding-bottom: 0; }

.step::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
}

.step.locked::before {
  background: var(--gold);
}

.step h3 {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.step p { color: var(--muted); font-size: 0.94rem; max-width: 560px; }

.lock-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}

/* ---------- Offer cards ---------- */

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.offer-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.offer-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,162,75,0.10), var(--navy-card) 45%);
}

.offer-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.offer-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

.offer-card p { color: var(--muted); font-size: 0.88rem; flex-grow: 1; }

.offer-card .btn { margin-top: 1.4rem; font-size: 0.85rem; padding: 0.7rem 1.2rem; }

/* ---------- Testimonials ---------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}

.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 2rem;
}

.testi-quote {
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testi-person { display: flex; align-items: center; gap: 0.9rem; }

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy-line));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 0.8rem;
}

.testi-person .name { font-weight: 600; font-size: 0.92rem; }

.testi-person .role { font-size: 0.8rem; color: var(--muted); }

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 55% 60% at 50% 110%, rgba(201,162,75,0.16), transparent 70%),
    var(--navy-deep);
}

.final-cta h2 { max-width: 640px; margin: 0 auto 1rem; }

.final-cta .lead { margin: 0 auto 2.2rem; }

/* ---------- Footer ---------- */

footer {
  margin-top: auto;
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-line);
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-grid p, .footer-grid a {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.45rem;
}

.footer-grid a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Program page ---------- */

.page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.program-detail {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 2.4rem;
  margin-bottom: 1.6rem;
}

.program-detail.featured { border: 1.5px solid var(--gold); }

.program-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.program-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.meta-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ivory);
  border: 1px solid var(--navy-line);
  background: var(--navy);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}

.program-detail ul {
  list-style: none;
  margin: 0 0 1.4rem;
}

.program-detail ul li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.program-detail ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Comparison table */

.compare-wrap { overflow-x: auto; }

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.88rem;
}

.compare th, .compare td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--navy-line);
  text-align: left;
}

.compare thead th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.compare td { color: var(--muted); }

.compare td:first-child { color: var(--ivory); font-weight: 600; }

/* FAQ */

.faq-item {
  border-bottom: 1px solid var(--navy-line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { color: var(--muted); font-size: 0.95rem; padding: 0 0 1.3rem; max-width: 720px; }

/* ---------- Quiz page ---------- */

.stuck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.stuck-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stuck-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.stuck-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.stuck-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }

.stuck-card p { font-size: 0.85rem; color: var(--muted); }

.quiz-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  counter-reset: qstep;
}

.quiz-step {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 1.8rem;
  counter-increment: qstep;
}

.quiz-step::before {
  content: counter(qstep, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.quiz-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }

.quiz-step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .offer-card, .stuck-card { transition: none; }
}

/* ---------- Focus visibility ---------- */

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .lens-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--navy-line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 4%;
    gap: 1.1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 4rem 0; }
  .hero { min-height: 76vh; }
  .hero-content { padding: 4.5rem 0 4rem; }
}

/* ---------- Article pages ---------- */

.article-body { max-width: 740px; margin: 0 auto; }

.article-body h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  margin: 2.6rem 0 0.9rem;
}

.article-body p { color: var(--muted); margin-bottom: 1.2rem; }

.article-body strong { color: var(--ivory); }

.article-body .answer-box {
  background: var(--navy-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 1.6rem 0 2rem;
}

.article-body .answer-box p { margin: 0; color: var(--ivory); font-size: 1.02rem; }

.article-meta {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 1rem;
}

.article-cta {
  background: var(--navy-card);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0 0;
  text-align: center;
}

.article-cta h3 { margin-bottom: 0.6rem; }

.article-cta p { color: var(--muted); margin-bottom: 1.4rem; }

.article-list { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }

.article-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: block;
}

.article-card:hover { transform: translateY(-3px); border-color: var(--gold); }

.article-card h3 { margin-bottom: 0.5rem; }

.article-card p { color: var(--muted); font-size: 0.95rem; }

.article-card .read-more {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.9rem;
}


/* ---------- Dummy images (ganti dengan foto asli) ---------- */

.hero.has-photo {
  background-image:
    linear-gradient(100deg, rgba(6,15,34,0.96) 0%, rgba(11,28,58,0.88) 45%, rgba(11,28,58,0.55) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center 20%;
}

.page-hero.has-photo {
  background-image:
    linear-gradient(180deg, rgba(6,15,34,0.94), rgba(11,28,58,0.92)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}

.testi-avatar img, .stuck-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--navy-line);
  position: relative;
}

.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-card .photo-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(6,15,34,0.85);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-grid .photo-card { aspect-ratio: 4/5; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .photo-card { max-width: 380px; }
}

.article-card.has-thumb {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.4rem;
}

.article-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.article-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .article-card.has-thumb { grid-template-columns: 1fr; }
  .article-thumb { aspect-ratio: 16/9; }
}


/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.08); }

.micro-proof {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.micro-proof b { color: var(--gold-bright); }


/* ---------- Video testimonial link ---------- */

.testi-video {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.testi-video:hover { text-decoration: underline; }

.testi-video .play-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  padding-left: 2px;
}

/* ============================================================
   Blok "Sebaiknya jangan ambil sesi ini kalau"
   Ditambahkan 12 Agu 2026. Dipasang di program.html, seksi #reading.
   ============================================================ */
.not-for-you {
  margin-top: 2rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(6, 15, 34, 0.45);
}
.not-for-you h3 {
  font-size: 1.02rem;
  margin: 0 0 1rem;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}
.not-for-you ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.not-for-you li {
  position: relative;
  padding: 0 0 0 1.3rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  line-height: 1.62;
}
.not-for-you li:last-of-type { margin-bottom: 0; }
.not-for-you li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 12px; height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
.not-for-you li b { color: #E8EDF5; font-weight: 600; }
.not-for-you .nfy-note {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--navy-line);
  font-size: 0.88rem;
  color: var(--muted);
  opacity: 0.82;
}
@media (max-width: 560px) {
  .not-for-you { padding: 1.2rem 1.1rem; }
}
/* ============================================================
   LIPUTAN MEDIA  —  tempel ke bagian bawah styles.css
   ============================================================ */
.media-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.media-item {
  display: block;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.media-item:hover {
  border-color: var(--gold-bright, #E5C475);
  background: rgba(255,255,255,0.025);
  transform: translateY(-2px);
}

.media-outlet {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright, #E5C475);
  margin-bottom: 0.5rem;
}

.media-title {
  display: block;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.media-date {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   CLIENT STRIP (versi teks, tanpa file logo)
   ============================================================ */
.client-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem 2rem;
  margin-top: 2rem;
  padding: 2.2rem 1rem;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  text-align: center;
}

.client-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  transition: color .25s ease;
}

.client-strip:hover .client-name { color: rgba(255,255,255,0.55); }
.client-strip .client-name:hover { color: #fff; }

.client-name em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright, #E5C475);
  margin-top: 0.3rem;
}

/* ============================================================
   LOGO STRIP KLIEN
   Logo warna asli di kartu putih agar terbaca di latar navy.
   ============================================================ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem 0.5rem;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}

.logo-card {
  display: grid;
  place-items: center;
  height: 76px;
  padding: 0 1.1rem;
  background: #fff;
  border-radius: 10px;
  filter: saturate(0.9);
  opacity: 0.9;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.logo-card:hover { opacity: 1; transform: translateY(-2px); filter: saturate(1); }

.logo-card img { height: 40px; width: auto; display: block; }

@media (max-width: 560px) {
  .logo-card { height: 62px; padding: 0 0.8rem; }
  .logo-card img { height: 30px; }
}

/* Logo asli di navigasi. Ditambahkan 12 Agu 2026. */
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo .nav-mark { display: block; height: 29px; width: auto; }
.nav-logo .nav-name { line-height: 1; }
.nav-logo .nav-name b { color: var(--gold); font-weight: 700; }
@media (max-width: 560px) {
  .nav-logo .nav-mark { height: 24px; }
  .nav-logo .nav-name { font-size: 0.94rem; }
}

/* ============================================================
   Halaman kuis (kuis.html). Ditambahkan 12 Agu 2026.
   ============================================================ */
.kuis-page { padding: 3rem 0; width: 100%; }
.kuis-box { max-width: 720px; margin: 0 auto; }
.kuis-box h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; margin: 0.6rem 0 1.1rem; }
.kuis-box h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); line-height: 1.25; margin: 0.5rem 0 1rem; }
.kuis-poin { list-style: none; padding: 0; margin: 1.6rem 0 2rem; }
.kuis-poin li { position: relative; padding-left: 1.4rem; margin-bottom: 0.75rem; color: var(--muted); }
.kuis-poin li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 12px; height: 1px; background: var(--gold); }
.kuis-note { margin-top: 1.2rem; font-size: 0.86rem; color: var(--muted); opacity: 0.8; }

.kuis-prog { display: flex; gap: 4px; margin-bottom: 2.4rem; }
.kuis-prog i { flex: 1; height: 2px; background: var(--navy-line); display: block; }
.kuis-prog i.done { background: var(--gold); }

.kuis-num { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.kuis-penentu { color: var(--gold); margin-left: 0.6rem; }
.kuis-q { font-family: var(--font-display); font-size: clamp(1.25rem, 2.8vw, 1.65rem); line-height: 1.3; margin: 0 0 1.8rem; }

.kuis-opt {
  display: block; width: 100%; text-align: left;
  background: var(--navy-card); color: #E8EDF5;
  border: 1px solid var(--navy-line); border-radius: 8px;
  padding: 1rem 1.15rem; margin-bottom: 0.65rem;
  font-family: var(--font-body); font-size: 1rem; line-height: 1.5;
  cursor: pointer; transition: border-color .15s ease, transform .12s ease;
}
.kuis-opt:hover { border-color: var(--gold); transform: translateX(3px); }

.kuis-field { margin-bottom: 1.1rem; }
.kuis-field label { display: block; font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 0.45rem; }
.kuis-field .opt-tag { color: var(--muted); font-weight: 400; }
.kuis-field input, .kuis-field select {
  width: 100%; padding: 0.8rem 0.9rem;
  background: var(--navy-card); color: #E8EDF5;
  border: 1px solid var(--navy-line); border-radius: 6px;
  font-family: var(--font-body); font-size: 1rem;
}
.kuis-field input:focus, .kuis-field select:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.kuis-subhead { font-family: var(--font-display); font-size: 0.95rem; margin: 2rem 0 1rem; color: var(--gold-bright); }

.kuis-consent { display: flex; gap: 0.8rem; align-items: flex-start; border: 1px solid var(--navy-line); border-radius: 8px; padding: 1rem 1.1rem; margin: 1.6rem 0; background: rgba(6,15,34,.4); }
.kuis-consent input { margin-top: 4px; width: 17px; height: 17px; flex: none; }
.kuis-consent label { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.kuis-consent a { color: var(--gold); }

.kuis-hasil { max-width: 720px; margin: 0 auto; border: 1px solid var(--navy-line); border-radius: 12px; overflow: hidden; }
.hasil-head { background: var(--navy-deep); padding: 2rem 1.8rem; border-bottom: 1px solid var(--navy-line); }
.hasil-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin: 0.5rem 0 0.8rem; }
.hasil-nampar { font-size: 1.1rem; color: var(--gold-bright); margin: 0; line-height: 1.5; }
.hasil-body { padding: 2rem 1.8rem; }
.hasil-body h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-bright); margin: 1.8rem 0 0.6rem; }
.hasil-body h3:first-child { margin-top: 0; }
.hasil-body p { color: var(--muted); line-height: 1.7; }
.hasil-bridging { margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid var(--navy-line); }
.hasil-tutup { color: #E8EDF5 !important; margin: 1.4rem 0 1.6rem; }
@media (max-width: 560px) {
  .kuis-page { padding: 5.5rem 0 3rem; }
  .hasil-head, .hasil-body { padding: 1.4rem 1.1rem; }
}

/* Gambar utama artikel. Ditambahkan 12 Agu 2026. */
.artikel-lead-img { margin: 0 0 2.2rem; }
.artikel-lead-img img { width: 100%; height: auto; display: block; border-radius: 10px; border: 1px solid var(--navy-line); }

/* Ilustrasi tipe stuck menggantikan emoji. Ditambahkan 12 Agu 2026. */
.stuck-img { margin: -0.4rem -0.4rem 1.1rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--navy-line); }
.stuck-img img { width: 100%; height: auto; display: block; }

/* ============================================================
   Klien korporat: strip logo dan grid dokumentasi.
   Ditambahkan 12 Agu 2026 di tentang.html.
   ============================================================ */
.klien-strip { text-align: center; }
.klien-label {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1.6rem;
}
.klien-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 2.2rem 3rem;
}
.klien-logos img {
  height: 34px; width: auto; opacity: 0.72;
  filter: grayscale(100%) brightness(1.6);
  transition: opacity .2s ease, filter .2s ease;
}
.klien-logos img:hover { opacity: 1; filter: none; }

.bukti-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.bukti-grid figure { margin: 0; }
.bukti-grid img {
  width: 100%; height: auto; display: block;
  border-radius: 8px; border: 1px solid var(--navy-line);
}
.bukti-grid figcaption {
  margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); line-height: 1.5;
}
@media (max-width: 560px) {
  .klien-logos { gap: 1.6rem 2rem; }
  .klien-logos img { height: 26px; }
}

/* Ilustrasi tipe di halaman hasil kuis. */
.hasil-img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--navy-line); }

/* ============================================================
   Blueprint: enam sesi dan empat posture. Ditambahkan 12 Agu 2026.
   ============================================================ */
.bp-sub {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-bright);
  margin: 2rem 0 1rem; letter-spacing: 0.01em;
}
.bp-sesi { display: grid; gap: 0.9rem; margin-bottom: 0.5rem; }
.bp-item { display: flex; gap: 1rem; align-items: flex-start; }
.bp-no {
  font-family: var(--font-display); font-size: 0.82rem; color: var(--gold);
  letter-spacing: 0.08em; flex: none; padding-top: 0.15rem; min-width: 1.9rem;
}
.bp-item b { color: #E8EDF5; display: block; margin-bottom: 0.2rem; }
.bp-item p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.bp-posture { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.bp-posture > div {
  border: 1px solid var(--navy-line); border-radius: 8px;
  padding: 1rem 1.1rem; background: rgba(6,15,34,.4);
}
.bp-posture b { color: var(--gold-bright); display: block; margin-bottom: 0.35rem; }
.bp-posture p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ============================================================
   Liputan media. Ditambahkan 12 Agu 2026 di tentang.html.
   ============================================================ */
.media-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem; margin-top: 2.5rem;
}
.media-card {
  display: block; text-decoration: none;
  border: 1px solid var(--navy-line); border-radius: 8px;
  padding: 1.1rem 1.2rem; background: rgba(6,15,34,.45);
  transition: border-color .18s ease, transform .15s ease;
}
.media-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.media-outlet {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; color: var(--gold-bright); margin-right: 0.6rem;
}
.media-date { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }
.media-title {
  display: block; margin-top: 0.55rem; color: #E8EDF5;
  font-size: 0.94rem; line-height: 1.55;
}
.media-note {
  margin-top: 1.8rem; font-size: 0.88rem; color: var(--muted);
  text-align: center; line-height: 1.65;
}
.media-note a { color: var(--gold); }
@media (max-width: 560px) { .media-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Foto asli tampil langsung, bukan latar di balik overlay.
   Ditambahkan 13 Agu 2026.
   ============================================================ */
.hero-split { position: relative; overflow: hidden; }
.hero-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-foto { margin: 0; }
.hero-foto img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
  border: 1px solid var(--navy-line);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-foto figcaption {
  margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); line-height: 1.5;
}

.foto-lebar { margin: 0; }
.foto-lebar img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
  border: 1px solid var(--navy-line);
}
.foto-lebar figcaption {
  margin-top: 0.8rem; font-size: 0.86rem; color: var(--muted);
  text-align: center; line-height: 1.55;
}

@media (max-width: 900px) {
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-foto { order: -1; margin-bottom: 1.6rem; }
  .hero-foto img { box-shadow: none; }
}

/* Tombol WhatsApp mengambang. Hanya di halaman komersial, tidak di artikel. */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.07); }
@media (max-width: 560px) { .wa-float { width: 48px; height: 48px; right: 14px; bottom: 14px; } }
