:root {
  --red: #d0021b;
  --red-light: #fff0f0;
  --red-mid: #ffd6d6;
  --red-dark: #9b0015;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-50: #f6f6f4;
  --gray-100: #e7e7e5;
  --gray-200: #d4d4d2;
  --gray-400: #8a8a8a;
  --gray-600: #6b6b6b;
  --gray-800: #1c1c1c;
  --black: #111111;
  --font-display: "Noto Serif JP", serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── WATERMARK ── */
.watermark {
  position: fixed;
  bottom: 20px;
  right: 22px;
  z-index: 999;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  text-decoration: none;
}
.watermark .wm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}


.brand-icon-img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.watermark .wm-dot { width: 18px !important; height: 18px !important; border-radius: 5px !important; background: url("/assets/img/favicon.png") center / cover no-repeat !important; }
.nav-brand .jp-char { background: url("/assets/img/favicon.png") center / cover no-repeat !important; color: transparent !important; font-size: 0 !important; overflow: hidden; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  text-decoration: none;
}
.nav-brand .brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.nav-brand .brand-main {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-brand .brand-sub {
  margin-top: 2px;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-brand .jp-char {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 0.18s;
}
.nav-links a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--black);
}

/* ── HERO ── */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid var(--red-mid);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 span {
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
  padding-top: 28px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.hero-stat-lbl {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── SECTION WRAPPER ── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px;
}
.section + .section {
  padding-top: 0;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--red-mid);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 36px;
  font-weight: 400;
}

/* ── JALUR CARDS ── */
.jalur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.jalur-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: default;
}
.jalur-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
}
.jalur-card.featured {
  border: 1.5px solid var(--red);
  background: var(--red-light);
}
.jalur-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.jalur-card.featured .jalur-icon {
  background: var(--red-mid);
}
.jalur-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid var(--red-mid);
}
.jalur-card.featured .jalur-tag {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.jalur-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.jalur-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 2px;
}
.jalur-link {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
  text-decoration: none;
}
.jalur-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

/* ── PRODUCT BANNER ── */
.product-banner {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 40px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.product-banner.red-bg {
  background: linear-gradient(135deg, #d0021b 0%, #9b0015 100%);
  border-color: transparent;
}
.pb-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.product-banner.red-bg .pb-icon {
  background: rgba(255, 255, 255, 0.2);
}
.pb-body {
  flex: 1;
  min-width: 160px;
}
.pb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.product-banner.red-bg .pb-label {
  color: rgba(255, 255, 255, 0.7);
}
.pb-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.product-banner.red-bg .pb-title {
  color: white;
}
.pb-desc {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}
.product-banner.red-bg .pb-desc {
  color: rgba(255, 255, 255, 0.75);
}
.pb-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e8f5e9;
  color: #1b5e20;
  display: inline-block;
  margin-top: 4px;
}
.product-banner.red-bg .pb-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 14px; /* dari 13px */
  font-weight: 600;
  padding: 12px 24px; /* dari 10px 20px */
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.12s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.pb-btn:hover {
  background: #7a0011;
  transform: scale(1.05); /* dari 1.03 */
}
.product-banner.red-bg .pb-btn {
  background: white;
  color: var(--red);
}
.product-banner.red-bg .pb-btn:hover {
  background: var(--gray-50);
}

/* ── TIMELINE STEPS ── */
.timeline {
  position: relative;
  padding-left: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  margin-bottom: 6px;
  position: relative;
}
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-400);
  font-family: var(--font-display);
  flex-shrink: 0;
  transition: all 0.2s;
  z-index: 1;
}
.tl-item.active .tl-num {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 0 4px var(--red-mid);
}
.tl-line {
  flex: 1;
  width: 2px;
  background: var(--gray-100);
  margin: 4px 0;
  min-height: 24px;
}
.tl-item:last-child .tl-line {
  display: none;
}
.tl-right {
  padding: 8px 0 28px;
}
.tl-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.tl-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-top: 2px;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.tl-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
}

/* ── PRODUCT INLINE ── */
.product-inline {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pi-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.pi-body {
  flex: 1;
  min-width: 140px;
}
.pi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1px;
}
.pi-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.pi-desc {
  font-size: 13.5px;
  color: var(--gray-600);
}
.pi-btn {
  font-size: 13px; /* dari 12px */
  font-weight: 600;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 9px 18px; /* dari 7px 16px */
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
  font-family: var(--font-body);
  display: inline-block;
}
.pi-btn:hover {
  background: #7a0011;
}

/* ── VISA TABLE ── */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.visa-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: box-shadow 0.2s;
}
.visa-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}
.visa-card.best {
  border: 1.5px solid var(--red);
}
.vc-best-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  border-radius: 999px;
  padding: 2px 9px;
  margin-bottom: 8px;
  display: inline-block;
}
.vc-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13.5px;
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}
.vc-row:last-child {
  border-bottom: none;
}
.vc-row label {
  color: var(--gray-400);
  flex-shrink: 0;
}
.vc-row span {
  color: var(--black);
  font-weight: 500;
  text-align: right;
}

/* ── DOKUMEN CHECKLIST ── */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 540px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}
.doc-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.doc-box:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.doc-box h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.doc-list {
  list-style: none;
}
.doc-list li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--gray-50);
  line-height: 1.5;
}
.doc-list li:last-child {
  border-bottom: none;
}
.doc-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-200);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.doc-check.checked {
  background: var(--red);
  border-color: var(--red);
}
.doc-check.checked::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.doc-list li.checked-item .doc-text {
  text-decoration: line-through;
  color: var(--gray-400);
}

/* ── FAQ ── */
.faq-group {
  margin-bottom: 32px;
}
.faq-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--red-mid);
}
.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px) scale(1.005);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--gray-50);
}
.faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    background 0.2s;
  color: var(--gray-600);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--red);
  color: white;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.2s;
  padding: 0 20px;
}
.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-body p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 4px;
}
.faq-body .faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 999px;
  padding: 5px 13px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.15s;
}
.faq-body .faq-more-btn:hover {
  background: var(--red-mid);
}

/* ── CTA BOTTOM ── */
.cta-section {
  background: linear-gradient(135deg, #d0021b 0%, #7b0010 100%);
  padding: 64px 24px;
  text-align: center;
  margin-top: 40px;
}
.cta-jp {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: -32px;
  display: block;
  line-height: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-weight: 400;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-btn-primary {
  background: white;
  color: var(--red);
  font-size: 16px; /* dari 14px */
  font-weight: 700;
  padding: 15px 32px; /* dari 13px 28px */
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.15s,
    opacity 0.15s;
  font-family: var(--font-body);
  display: inline-block;
}
.cta-btn-primary:hover {
  transform: scale(1.06); /* dari 1.04 */
  opacity: 0.95;
}
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 15px; /* dari 14px */
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: background 0.15s;
  font-family: var(--font-body);
  display: inline-block;
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* ── FOOTER ── */
footer {
  background: var(--gray-800);
  color: var(--gray-400);
  text-align: center;
  padding: 24px;
  font-size: 12px;
}
footer span {
  color: var(--red);
  font-weight: 600;
}

/* ── INFO BOX ── */
.info-box {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.65;
}
.info-box.warn {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  color: #78350f;
}
.info-box.tip {
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
  color: #14532d;
}
.info-box strong {
  font-weight: 600;
}

/* ── DIVIDER ── */
.section-divider {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  border: none;
  border-top: 1px solid var(--gray-100);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding: 48px 20px 40px;
  }
  .hero-stats {
    gap: 20px;
  }
  .product-banner {
    padding: 20px;
  }
  .tl-item {
    grid-template-columns: 38px 1fr;
    gap: 0 14px;
  }
  .tl-num {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ── FADE IN ANIM ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero > * {
  animation: fadeUp 0.55s ease both;
}
.hero > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero > *:nth-child(3) {
  animation-delay: 0.19s;
}
.hero > *:nth-child(4) {
  animation-delay: 0.26s;
}
.breadcrumb {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb span {
  color: var(--gray-800);
  font-weight: 500;
}
.kota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.kota-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.kota-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kota-card.featured {
  border: 1.5px solid var(--red);
  background: var(--red-light);
}

.kota-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.kota-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.kota-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.kota-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 8px;
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
}

.kota-card.featured .kota-tag {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
  transition: box-shadow 0.15s;
}

.tips-list li:hover {
  box-shadow: var(--shadow-sm);
}

.tips-list .tip-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tips-list strong {
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 2px;
}
.komunitas-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.komunitas-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: box-shadow 0.15s;
}

.komunitas-item:hover {
  box-shadow: var(--shadow-sm);
}

.ki-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ki-body {
  flex: 1;
  min-width: 0;
}

.ki-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.ki-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.ki-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .komunitas-item {
    flex-wrap: wrap;
  }
  .ki-tag {
    margin-top: 6px;
  }
}

/* ── READABILITY OVERRIDES ── */
body {
  font-size: 18px;
  line-height: 1.75;
}

.watermark,
footer {
  font-size: 13px;
}

.nav-links a {
  font-size: 15px;
}

.hero-badge,
.section-label,
.jalur-tag,
.pb-label,
.pi-label,
.tl-duration,
.vc-best-badge,
.faq-group-title,
.ki-tag {
  font-size: 12px;
  letter-spacing: 0;
}

.hero-sub {
  font-size: 18px;
}

.hero-stat-lbl,
.pb-desc,
.pi-desc,
.vc-row,
.doc-list li,
.faq-body p,
.info-box,
.ki-name {
  font-size: 15px;
}

.section-sub,
.cta-section p,
.tips-list li,
.ki-desc {
  font-size: 16px;
}

.jalur-card h3,
.pb-title,
.tl-title,
.doc-box h4,
.faq-q,
.pi-title,
.vc-name {
  font-size: 17px;
}

.jalur-card p,
.jalur-link,
.pi-btn,
.faq-body .faq-more-btn,
.cta-btn-secondary {
  font-size: 15px;
}

.cta-btn-primary {
  font-size: 17px;
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  .hero-sub,
  .section-sub,
  .cta-section p {
    font-size: 16px;
  }

  .faq-q {
    font-size: 16px;
    line-height: 1.5;
  }
}
