/* ======================================================
   RESET & GLOBAL
====================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
   background: linear-gradient(180deg, #dbeafe, #f4f7fb);
  color: #1f2937;
  line-height: 1.6;
}

/* ===== HEADER UNIVERSAL ===== */
.top-header {
  background: linear-gradient(135deg,#1565c0,#1e88e5);
  padding: 22px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  width: 52px;
  height: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  margin: 0;
  font-size: 1.7rem;
  color: white;
}

.tagline {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #e3f2fd;
}

/* ===== NAV ===== */
.main-nav {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 14px 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #e53935;
}


/* ======================================================
   NAVBAR
====================================================== */
/* ===== NAV ===== */
.main-nav {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;              /* CENTER CONTAINER */
  padding: 0 16px;
  display: flex;
  justify-content: center;     /* CENTER MENU */
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 14px 0;
  margin: 0;
  justify-content: center;     /* DOUBLE SAFETY */
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #e53935;
}


/* ======================================================
   MAIN CONTAINER
====================================================== */
.container {
  max-width: 960px;
  margin: 52px auto;
  background: #ffffff;
  padding: 42px 36px;
  border-radius: 18px;
}

/* ======================================================
   SECTION
====================================================== */
.section {
  margin-top: 56px;
  text-align: center;
}

.section:first-child {
  margin-top: 0;
}

.section h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #0f4c81; /* 🔵 BIRU TUA FINAL */
}

.section p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #475569;
}

.intro {
  font-size: 0.96rem;
}

/* ======================================================
   LIST
====================================================== */
.list-belajar {
  max-width: 560px;
  margin: 26px auto 0;
  text-align: left;
  padding-left: 22px;
}

.list-belajar li {
  margin-bottom: 10px;
}

/* ======================================================
   CARD
====================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.card {
  background: #f9fbff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.15rem;
  color: #0f4c81;
}

/* ======================================================
   TABLE
====================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
}

th, td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: left;
}

th {
  background: #1e88e5;
  color: #ffffff;
}

/* ======================================================
   BUTTON
====================================================== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(30,136,229,0.35);
}

.btn.small {
  padding: 9px 16px;
  font-size: 0.85rem;
  border-radius: 10px;
  margin: 6px 4px;
}

/* ======================================================
   FOOTER
====================================================== */
.footer {
  text-align: center;
  padding: 30px 16px;
  font-size: 0.85rem;
  color: #64748b;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 600px) {

  .header-brand {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .site-logo {
    width: 48px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .container {
    margin: 28px 14px;
    padding: 28px 22px;
  }
}
/* ===============================
   QUIZ CATEGORY – FINAL CLEAN UI
================================ */

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: #0f4c81;
}

.quiz-category {
  max-width: 720px;
  margin: 0 auto;
}

/* CARD KATEGORI */
.quiz-category details {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 18px;
  padding: 10px 18px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* JUDUL KATEGORI */
.quiz-category summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f4c81;
  padding: 14px 6px;
  display: flex;
  align-items: center;
}

/* HILANGKAN PANAH BAWAAN */
.quiz-category summary::-webkit-details-marker {
  display: none;
}

/* TAMBAH ICON SENDIRI */
.quiz-category summary::before {
  content: "▸";
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.quiz-category details[open] summary::before {
  transform: rotate(90deg);
}

/* MENU QUIZ */
.quiz-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

/* BUTTON QUIZ */
.quiz-menu button {
  min-width: 90px;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.quiz-menu button:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 600px) {
  .quiz-menu button {
    min-width: 80px;
    font-size: 0.85rem;
  }

.quiz-group {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.quiz-group h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #0f4c81;
  text-align: center;
}

   .back-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #1e88e5;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.back-btn:hover {
  opacity: 0.9;
}

   /* ===== BUTTON STYLE ===== */
.btn-primary {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(30,136,229,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30,136,229,0.45);
}

.score-text {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.result-box {
  text-align: center;
}

   /* ===== BUTTON STYLE ===== */
.btn-primary {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(30,136,229,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30,136,229,0.45);
}

.score-text {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 12px;
}

/* ===== HEADER ===== */
.top-header {
  background: linear-gradient(135deg,#1565c0,#1e88e5);
  padding: 20px 0;
  color: white;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  width: 48px;
  height: 48px;
}

.logo-text {
  margin: 0;
  font-size: 1.6rem;
}

.tagline {
  margin: 2px 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== NAV ===== */
.main-nav {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 14px 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #e53935;
}

.result-box {
  text-align: center;
}
/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.footer-brand img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 14px;
  font-size: 0.85rem;
  color: #94a3b8;
}
/* ===== FOOTER PROFESIONAL ===== */
.site-footer {
  background: #0f172a; /* dark navy */
  color: #e5e7eb;
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  width: 52px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}
/* ===== FOOTER (BERSIH & PROFESIONAL) ===== */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 80px;
}

/* ===== CONTENT ===== */
.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-desc p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== AFFILIATE BUTTON (FOOTER) ===== */
.affiliate-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #00e676;
  color: #000000;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
}

.affiliate-btn:hover {
  background: #1aff83;
  transform: translateY(-2px);
}
/* ===== AFFILIATE BUTTON (FOOTER) ===== */
.affiliate-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #00e676;
  color: #000000;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
}

.affiliate-btn:hover {
  background: #1aff83;
  transform: translateY(-2px);
}
/* ===== MONETIZATION SECTION ===== */
.monetization-section {
  background: #f8fafc;
  padding: 50px 20px;
  margin-top: 40px;
}

.monetization-inner {
  max-width: 720px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.monetization-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.monetization-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.monetization-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 26px;
}

.monetization-action {
  display: flex;
  justify-content: center;
}

.monetization-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #00e676;
  color: #000000;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}

.monetization-btn:hover {
  background: #1aff83;
  transform: translateY(-2px);
}
/* ===== MONETIZATION CENTER FIX ===== */
.monetization-section {
  width: 100%;
  padding: 50px 16px;
  background: #f8fafc;
}

.monetization-outer {
  width: 100%;
  display: flex;
  justify-content: center;   /* 🔥 PAKSA CENTER */
}

.monetization-inner {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;        /* 🔥 PAKSA CENTER TEKS */
}

.monetization-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.monetization-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.monetization-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 26px;
}

.monetization-action {
  display: flex;
  justify-content: center;   /* 🔥 CENTER BUTTON */
}

.monetization-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #00e676;
  color: #000000;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}

.monetization-btn:hover {
  background: #1aff83;
  transform: translateY(-2px);
}
/* ===== TOMBOL QUIZ ===== */
.quiz-action {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.quiz-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #1e88e5;
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(30,136,229,0.25);
  transition: all 0.2s ease;
}

.quiz-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}
/* ===== TOMBOL QUIZ ===== */
.quiz-action {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.quiz-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #1e88e5;
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(30,136,229,0.25);
  transition: all 0.2s ease;
}

.quiz-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}
.quiz-action{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:30px;
  flex-wrap:wrap;
  gap:12px;
}

.quiz-btn{
  display:inline-block;
  padding:14px 22px;
  background:#1e88e5;
  color:#fff;
  font-weight:700;
  border-radius:12px;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(30,136,229,.25);
  transition:.2s;
  text-align:center;
}

.quiz-btn:hover{
  background:#1565c0;
  transform:translateY(-2px);
}

.quiz-link{
  color:#1e88e5;
  text-decoration:none;
  font-weight:600;
}

.quiz-link:hover{
  text-decoration:underline;
}
.sub-file {
  margin-top: 6px;
  padding-left: 18px;
}

.sub-file li {
  list-style: none;
  margin: 4px 0;
}

.sub-file a {
  text-decoration: none;
  color: #0a58ca;
}

.sub-file a:hover {
  text-decoration: underline;
}
.simple-header {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cta-box {
  text-align: center;
  margin: 30px 0;
}

.btn-primary {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #1b5e20;
}

.note {
  font-size: 0.85rem;
  color: #666;
}
/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #f4f6f8;
  color: #222;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 30px 16px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero-inner p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  background: #ffca28;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.hero-btn:hover {
  background: #ffd95a;
}

/* ===== CARD ===== */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h2 {
  margin-top: 0;
}

/* ===== LIST ===== */
.checklist {
  padding-left: 0;
}

.checklist li {
  list-style: none;
  margin: 8px 0;
}

.checklist li::before {
  content: "✔";
  color: #2e7d32;
  margin-right: 8px;
}

/* ===== CTA ===== */
.cta-box {
  text-align: center;
  margin: 40px 0;
}

.btn-primary {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #1b5e20;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 30px 16px;
  text-align: center;
}

.footer-ad {
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.85rem;
}
/* ==============================
   JFT INFO – PROFESSIONAL COLOR
   ============================== */

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(circle at top right, #ff5252, transparent 40%),
    radial-gradient(circle at bottom left, #40c4ff, transparent 45%),
    linear-gradient(135deg, #0d47a1, #1a237e);
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 10px;
  opacity: 0.95;
}

/* Hero button */
.hero-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  color: #000;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* ===== CONTAINER ===== */
.container {
  margin-top: -60px;
}

/* ===== CARD ===== */
.card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 26px;
  box-shadow:
    0 10px 25px rgba(13,71,161,0.15),
    inset 0 0 0 1px rgba(13,71,161,0.05);
  position: relative;
}

.card h2 {
  color: #0d47a1;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ===== CHECKLIST ===== */
.checklist li {
  font-size: 1.05rem;
  padding: 6px 0;
}

.checklist li::before {
  content: "✔";
  color: #00c853;
  font-weight: bold;
}

/* ===== CTA BOX ===== */
.cta-box {
  background:
    linear-gradient(135deg, #00c853, #64dd17);
  color: #003300;
  padding: 40px 20px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,200,83,0.35);
}

.cta-box p {
  font-size: 1.1rem;
}

.btn-primary {
  margin-top: 16px;
  background: linear-gradient(135deg, #263238, #000);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #000, #263238);
}

/* ===== FOOTER ===== */
.footer {
  background:
    linear-gradient(135deg, #0f172a, #020617);
  color: #94a3b8;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer p {
  margin: 6px 0;
}

/* ===== MONETIZATION CARD ===== */
.monetization-outer {
  background:
    linear-gradient(135deg, #ff9100, #ff6d00);
  padding: 35px 20px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(255,109,0,0.4);
}

.monetization-inner {
  max-width: 700px;
  margin: auto;
  color: #2e1a00;
}

.monetization-label {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.monetization-title {
  font-size: 1.8rem;
  margin: 10px 0;
  font-weight: 900;
}

.monetization-desc {
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.jft-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.jft-item{
  background:#f8fafc;
  border-radius:14px;
  padding:24px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  border-left:5px solid #2563eb;
}

.jft-item a{
  text-decoration:none;
  font-weight:bold;
  color:#1e3a8a;
  display:block;
}
/* ===== SECTION WRAPPER ===== */
.section{
  margin-bottom:80px;
}

/* ===== GRID BESAR (SSW) ===== */
.grid-ssw{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  align-items:start;
}

/* ===== GRID KECIL (JFT / JLPT) ===== */
.grid-small{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  max-width:900px;
}

/* ===== CARD ===== */
.card{
  background:linear-gradient(180deg,#ffffff,#f1f6ff);
  border-radius:18px;
  padding:22px 24px;
  box-shadow:0 12px 28px rgba(30,58,138,.12);
  position:relative;
}

/* ACCENT BAR */
.card::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:linear-gradient(180deg,#2563eb,#38bdf8);
  border-radius:6px 0 0 6px;
}

/* TITLE */
.card strong{
  display:block;
  font-size:1.05rem;
  margin-bottom:4px;
}

/* SUBTITLE */
.card span{
  font-size:.85rem;
  color:#64748b;
  margin-bottom:14px;
  display:block;
}

/* LIST */
.card ul{
  padding-left:18px;
  margin:0;
}
.card li{
  margin:6px 0;
  font-size:.9rem;
}
/* =========================
   TOMBOL MULAI LATIHAN – SOFT PULSE
========================= */
.btn-start{
  position: relative;
  display: inline-block;
  margin-top: 18px;
  padding: 16px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg,#2563eb,#1e40af);
  box-shadow:
    0 10px 26px rgba(37,99,235,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: softPulse 10s ease-in-out infinite;
}

/* Hover tetap responsif */
.btn-start:hover{
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(37,99,235,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

/* Animasi pulse lembut */
@keyframes softPulse{
  0%{
    box-shadow:
      0 10px 26px rgba(37,99,235,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.25);
  }
  5%{
    box-shadow:
      0 16px 40px rgba(37,99,235,0.60),
      inset 0 0 0 1px rgba(255,255,255,0.35);
  }
  10%{
    box-shadow:
      0 10px 26px rgba(37,99,235,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.25);
  }
  100%{
    box-shadow:
      0 10px 26px rgba(37,99,235,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.25);
  }
}

/* Mobile optimization */
@media(max-width:600px){
  .btn-start{
    padding: 15px 30px;
    font-size: 1rem;
  }
}
/* ======= ADS ======= */
.ad-native{
  margin:30px auto;
  max-width:720px;
  padding:16px;
  border-radius:14px;
  background:#f8fafc;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

@media(max-width:768px){
  .ad-native{
    margin:20px 10px;
    padding:12px;
  }
}


