/* ============================================================
   Thetoolsweb — Jasa PBN Berkualitas
   File   : pbn.css
   Lokasi : /wp-content/uploads/css/pbn.css
   ============================================================ */

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

.ttw-wrap {
  --blue-950: #0a1628;
  --blue-900: #0d2040;
  --blue-800: #0f3460;
  --blue-700: #1a4a8a;
  --blue-600: #1d5cba;
  --blue-500: #2575fc;
  --blue-400: #4e94ff;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --gold:     #f5a623;
  --green:    #22c55e;
  --text-dark:  #0f172a;
  --text-mid:   #334155;
  --text-light: #64748b;
  --white:   #ffffff;
  --surface: #f8fafc;
  --border:  #e2e8f0;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 32px rgba(37,117,252,.25);

  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* reset WP interference */
.ttw-wrap p, .ttw-wrap h1, .ttw-wrap h2, .ttw-wrap h3,
.ttw-wrap ul, .ttw-wrap li { margin: 0; padding: 0; }

/* ── UTILITY ── */
.ttw-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.ttw-section   { padding: 72px 0; }
.ttw-center    { text-align: center; }

.ttw-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); color: var(--blue-700);
  border: 1px solid var(--blue-100);
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.ttw-badge::before { content: "●"; color: var(--blue-500); font-size: 8px; }
.ttw-badge-dark {
  background: rgba(255,255,255,.1); color: #a5c8ff;
  border-color: rgba(255,255,255,.15);
}
.ttw-badge-dark::before { color: var(--gold); }

.ttw-wrap h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.2; }
.ttw-wrap h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; line-height: 1.25; }
.ttw-wrap h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }

/* ── BUTTONS ── */
.ttw-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .2s ease;
}
.ttw-btn-primary {
  background: var(--gold); color: var(--blue-950);
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.ttw-btn-primary:hover { background: #f0b429; transform: translateY(-2px); color: var(--blue-950); text-decoration: none; }
.ttw-btn-outline {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.ttw-btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); text-decoration: none; }
.ttw-btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(34,197,94,.3);
}
.ttw-btn-green:hover { background: #16a34a; transform: translateY(-2px); color: var(--white); text-decoration: none; }
.ttw-btn-blue {
  background: var(--blue-600); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.ttw-btn-blue:hover { background: var(--blue-700); transform: translateY(-2px); color: var(--white); text-decoration: none; }

/* ── HERO ── */
.ttw-hero {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 60%, #1a3a7a 100%);
  padding: 72px 0 60px; position: relative; overflow: hidden;
}
.ttw-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(37,117,252,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ttw-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.ttw-hero .ttw-badge { background: rgba(255,255,255,.1); color: #a5c8ff; border-color: rgba(255,255,255,.15); }
.ttw-hero .ttw-badge::before { color: var(--gold); }
.ttw-hero h1 { color: var(--white); margin-bottom: 18px; }
.ttw-hero h1 span { color: var(--gold); font-style: italic; font-family: 'DM Serif Display', serif; }
.ttw-hero-desc { color: #b8d4f8; font-size: 16px; margin-bottom: 28px; max-width: 480px; }
.ttw-hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.ttw-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.ttw-hero-stat strong { display: block; color: var(--white); font-size: 26px; font-weight: 800; }
.ttw-hero-stat span   { color: #94b8e8; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

.ttw-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.ttw-form-card h3   { color: var(--blue-900); margin-bottom: 6px; font-size: 18px; }
.ttw-form-card-desc { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.ttw-form-note      { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ── TRUST BAR ── */
.ttw-trust {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  padding: 18px 0;
}
.ttw-trust-items { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }
.ttw-trust-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--blue-800); }

/* ── WHY ── */
.ttw-why { background: var(--white); }
.ttw-why-intro { color: var(--text-mid); font-size: 16px; max-width: 680px; margin: 14px auto 0; }
.ttw-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 40px;
}
.ttw-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; transition: all .2s;
}
.ttw-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.ttw-card-icon { font-size: 28px; margin-bottom: 14px; }
.ttw-card h3   { font-size: 17px; margin-bottom: 10px; }
.ttw-card p    { font-size: 14px; color: var(--text-mid); }

/* ── EXPERTISE ── */
.ttw-expertise { background: var(--blue-950); }
.ttw-expertise h2   { color: var(--white); }
.ttw-expertise-sub  { color: #94b8e8; font-size: 16px; max-width: 620px; margin-top: 12px; }
.ttw-expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }

.ttw-exp-list { list-style: none; }
.ttw-exp-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ttw-exp-list li:last-child { border-bottom: none; }
.ttw-exp-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--blue-600); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--white);
}
.ttw-exp-title { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ttw-exp-desc  { font-size: 13px; color: #94b8e8; }

.ttw-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ttw-metric {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px;
}
.ttw-metric strong     { display: block; font-size: 34px; font-weight: 800; color: var(--gold); }
.ttw-metric-label      { font-size: 13px; color: #94b8e8; }
.ttw-metric-desc       { font-size: 12px; color: #6b8fc4; margin-top: 4px; }

/* ── PROCESS ── */
.ttw-process { background: var(--surface); }
.ttw-process-sub { color: var(--text-mid); font-size: 15px; margin-top: 10px; }
.ttw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.ttw-step {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border); text-align: center;
}
.ttw-step-num {
  width: 48px; height: 48px; background: var(--blue-600); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; margin: 0 auto 16px;
}
.ttw-step h3 { font-size: 16px; margin-bottom: 8px; }
.ttw-step p  { font-size: 13px; color: var(--text-mid); }

/* ── KEUNGGULAN ── */
.ttw-unggulan { background: var(--white); }
.ttw-unggulan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 40px; }

.ttw-check-list { list-style: none; }
.ttw-check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 15px;
}
.ttw-check-list li:last-child { border-bottom: none; }
.ttw-check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: #dcfce7; color: #16a34a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 2px;
}
.ttw-check-list strong { display: block; font-weight: 700; margin-bottom: 2px; }
.ttw-check-list p      { font-size: 14px; color: var(--text-mid); }

.ttw-hl-box {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  border-radius: var(--radius-lg); padding: 36px; color: var(--white);
}
.ttw-hl-box h3 { color: var(--white); font-size: 21px; margin-bottom: 12px; }
.ttw-hl-box p  { color: #b8d4f8; font-size: 14px; margin-bottom: 24px; }
.ttw-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.ttw-mini-stat  { background: rgba(255,255,255,.1); border-radius: 10px; padding: 14px; }
.ttw-mini-stat strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.ttw-mini-stat span   { font-size: 12px; color: #94b8e8; }

/* ── PRICING ── */
.ttw-pricing { background: var(--surface); }
.ttw-pricing-sub  { color: var(--text-mid); margin-top: 12px; font-size: 15px; }
.ttw-pricing-note { font-size: 13px; color: var(--text-light); margin-top: 20px; }

/* ── TESTIMONI ── */
.ttw-testi { background: var(--white); }
.ttw-testi-sub { color: var(--text-mid); margin-top: 12px; font-size: 15px; }
.ttw-testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.ttw-testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.ttw-stars       { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.ttw-testi-text  { font-size: 14px; color: var(--text-mid); font-style: italic; line-height: 1.7; }
.ttw-testi-author{ display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.ttw-testi-img   { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-100); }
.ttw-testi-name  { font-weight: 700; font-size: 14px; }
.ttw-testi-role  { font-size: 12px; color: var(--text-light); }

/* ── FAQ ── */
.ttw-faq { background: var(--surface); }
.ttw-faq-inner { max-width: 780px; margin: 40px auto 0; }
.ttw-faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.ttw-faq-q {
  padding: 20px 24px; font-weight: 700; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; user-select: none;
}
.ttw-faq-arrow { font-size: 18px; transition: transform .3s; flex-shrink: 0; color: var(--blue-600); }
.ttw-faq-a     { padding: 0 24px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; display: none; }
.ttw-faq-item.ttw-open .ttw-faq-arrow { transform: rotate(180deg); }
.ttw-faq-item.ttw-open .ttw-faq-a     { display: block; }

/* ── RANK2 ── */
.ttw-rank2 { background: var(--blue-50); border-top: 1px solid var(--blue-100); border-bottom: 1px solid var(--blue-100); }
.ttw-rank2-sub { color: var(--text-mid); font-size: 15px; max-width: 560px; margin: 12px auto 0; }
.ttw-rank2-box {
  max-width: 480px; margin: 28px auto 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}

/* ── CTA FINAL ── */
.ttw-cta {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.ttw-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(37,117,252,.2) 0%, transparent 70%);
}
.ttw-cta h2      { color: var(--white); position: relative; }
.ttw-cta h2 span { color: var(--gold); font-style: italic; font-family: 'DM Serif Display', serif; }
.ttw-cta-sub     { color: #94b8e8; font-size: 16px; margin: 16px auto 32px; max-width: 560px; position: relative; }
.ttw-cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ttw-hero-grid      { grid-template-columns: 1fr; }
  .ttw-expertise-grid { grid-template-columns: 1fr; }
  .ttw-unggulan-grid  { grid-template-columns: 1fr; }
  .ttw-metrics        { grid-template-columns: 1fr 1fr; }
  .ttw-hero-stats     { gap: 18px; }
  .ttw-section        { padding: 52px 0; }
}
@media (max-width: 480px) {
  .ttw-btn      { font-size: 14px; padding: 12px 20px; }
  .ttw-hero-cta { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════
   PRICING CARDS — Jasa PBN (pengganti shortcode supsystic)
   Tambahkan ke akhir file pbn.css
   ════════════════════════════════════════════════════════════ */

.ttw-pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ttw-pc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.ttw-pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

/* kartu unggulan (Terlaris / Terbaik) */
.ttw-pc-hot {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 28px rgba(245,166,35,.2);
}
.ttw-pc-hot:hover {
  box-shadow: 0 16px 40px rgba(245,166,35,.3);
}

.ttw-pc-ribbon {
  position: absolute;
  top: 16px; right: -2px;
  background: var(--gold);
  color: var(--blue-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 5px 14px 5px 18px;
  border-radius: 100px 0 0 100px;
  box-shadow: -2px 2px 8px rgba(0,0,0,.15);
  z-index: 2;
}

.ttw-pc-head {
  padding: 26px 24px 20px;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
}
.ttw-pc-hot .ttw-pc-head {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-600) 100%);
}

.ttw-pc-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ttw-pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.ttw-pc-cur {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.ttw-pc-amt {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.ttw-pc-pbn-count {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
}

.ttw-pc-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ttw-pc-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 18px;
}
.ttw-pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.4;
}
.ttw-pc-feats li:last-child { border-bottom: none; }

.ttw-pc-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 1px;
}
.ttw-pc-hot .ttw-pc-check {
  background: #fef3c7;
  color: #d97706;
}

.ttw-pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.ttw-pc-btn:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}
.ttw-pc-hot .ttw-pc-btn {
  background: var(--gold);
  color: var(--blue-950);
  box-shadow: 0 4px 16px rgba(245,166,35,.4);
}
.ttw-pc-hot .ttw-pc-btn:hover {
  background: #f0b429;
  color: var(--blue-950);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ttw-pc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ttw-pc-grid { grid-template-columns: 1fr; }
  .ttw-pc-hot { order: -1; } /* tampilkan paket favorit duluan di mobile, opsional */
}

