/*
Theme Name:  Promobal Blog Theme
Theme URI:   https://www.promobal.in
Author:      Promobal Digital Communications
Author URI:  https://www.promobal.in
Description: Custom WordPress theme matching Promobal.in design — dual light/dark mode
Version:     3.0.0
License:     GNU General Public License v2 or later
Text Domain: promobal-theme
*/

/* ── LIGHT MODE (default) ── */
:root {
  --bg:        #ffffff;
  --surface:   #f6f8fc;
  --surface2:  #eef1f7;
  --border:    #e0e5ef;
  --accent:    #2563eb;
  --accent2:   #e84c2b;
  --text:      #111827;
  --muted:     #6b7280;
  --tag-bg:    rgba(37,99,235,0.08);
  --tag-bd:    rgba(37,99,235,0.25);
  --aio-bg:    rgba(37,99,235,0.05);
  --aio-bd:    #2563eb;
  --fix-bg:    rgba(22,163,74,0.06);
  --fix-bd:    rgba(22,163,74,0.22);
  --fix-text:  #166534;
  --fix-li:    #166534;
  --green:     #16a34a;
  --r:  14px;
  --rs: 8px;
  --fh: 'Sora', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --toc-w: 280px;
}

/* ── DARK MODE ── */
html[data-theme='dark'],
body.pmb-dark {
  --bg:        #0d0f14;
  --surface:   #13161d;
  --surface2:  #1a1e28;
  --border:    #232736;
  --accent:    #4f8ef7;
  --accent2:   #f7674f;
  --text:      #e8eaf0;
  --muted:     #8891a8;
  --tag-bg:    rgba(79,142,247,0.12);
  --tag-bd:    rgba(79,142,247,0.28);
  --aio-bg:    rgba(79,142,247,0.07);
  --aio-bd:    #4f8ef7;
  --fix-bg:    rgba(56,210,120,0.07);
  --fix-bd:    rgba(56,210,120,0.22);
  --fix-text:  #38d278;
  --fix-li:    #9ddcb8;
  --green:     #38d278;
  background:  #0d0f14 !important;
  color:       #e8eaf0 !important;
}
body.pmb-dark *:not(#pmb-nav):not(#pmb-nav *):not(#pmb-footer):not(#pmb-footer *):not(.pmb-card):not(.mistake-card):not(.aio-block):not(.fix-box):not(.faq-item):not(.conclusion):not(.pmb-toc-sidebar) {
  background-color: transparent;
}
body.pmb-dark #page,
body.pmb-dark #content,
body.pmb-dark .site,
body.pmb-dark main#main,
body.pmb-dark .hentry,
body.pmb-dark .ast-article-post,
body.pmb-dark .ast-container,
body.pmb-dark .entry-content,
body.pmb-dark .ast-grid-common-wrap,
body.pmb-dark .blog-wrap,
body.pmb-dark #primary {
  background: #0d0f14 !important;
  color: #e8eaf0 !important;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: 92px; min-width: 0;
  transition: background .3s, color .3s;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }

/* ── PROGRESS BARS ── */
#pmb-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #7c5ef7);
  z-index: 100000; transition: width .1s linear;
}
#pmb-read-progress {
  position: fixed; top: 3px; left: 0; height: 2px; width: 0%;
  background: var(--green);
  z-index: 99999; opacity: .7; transition: width .1s linear;
}

/* ── NAV ── */
#pmb-nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1200px; z-index: 9999;
  height: 68px; padding: 0 28px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 50px;
  box-shadow: 0 2px 20px rgba(15,35,64,.08);
  transition: background .3s, box-shadow .3s;
  overflow: hidden;
}
#pmb-nav.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 4px 32px rgba(15,35,64,.1); }
body.pmb-dark #pmb-nav { background: rgba(13,15,20,.92); border-color: rgba(255,255,255,.07); }
body.pmb-dark #pmb-nav.scrolled { background: rgba(13,15,20,.98); box-shadow: 0 4px 32px rgba(0,0,0,.3); }

.pmb-logo { display: flex; align-items: center; text-decoration: none; }
.pmb-logo img { height: 44px; width: auto; object-fit: contain; display: block; transition: opacity .25s, transform .3s; }
.pmb-logo:hover img { opacity: .85; transform: scale(1.03); }
body .l-light { display: block; } body .l-dark { display: none; }
body.pmb-dark .l-light { display: none; } body.pmb-dark .l-dark { display: block; }

.pmb-links { display: flex; gap: 22px; list-style: none; justify-content: center; align-items: center; }
.pmb-links a { font-family: var(--fh); font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none; transition: color .2s; }
.pmb-links a:hover, .pmb-links a.pmb-active { color: var(--accent); }
body.pmb-dark .pmb-links a { color: #CBD5E1; }

.pmb-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.pmb-phone { font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s; white-space: nowrap; }
.pmb-phone:hover { color: var(--accent); }
.pmb-cta {
  background: #0F2340; color: #fff !important;
  padding: 10px 20px; border-radius: 50px;
  font-family: var(--fh); font-size: 13px; font-weight: 700;
  text-decoration: none !important; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .25s, transform .2s;
}
.pmb-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }
body.pmb-dark .pmb-cta { background: #1E3A5F !important; }

.pmb-dm {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s, transform .2s; flex-shrink: 0; padding: 0;
}
.pmb-dm:hover { transform: rotate(20deg); }
.pmb-dm .i-moon { display: block; } .pmb-dm .i-sun { display: none; }
body.pmb-dark .pmb-dm .i-moon { display: none; } body.pmb-dark .pmb-dm .i-sun { display: block; }
body.pmb-dark .pmb-dm { background: var(--surface); border-color: var(--border); }
body.pmb-dark .pmb-dm svg { stroke: #E8EDF5; }

.pmb-burger { display: none; flex-direction: column; gap: 4.5px; background: none; border: none; cursor: pointer; padding: 5px; }
.pmb-burger span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 1px; transition: transform .3s, opacity .3s; }
.pmb-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pmb-burger.open span:nth-child(2) { opacity: 0; }
.pmb-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#pmb-mmenu {
  position: fixed; inset: 0; background: var(--bg); z-index: 9998;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.22,1,.36,1);
}
#pmb-mmenu.open { transform: none; }
#pmb-mmenu a { font-family: var(--fh); font-size: 28px; font-weight: 800; color: var(--text); text-decoration: none; }
#pmb-mmenu a:hover { color: var(--accent); }
.pmb-mm-cta { background: linear-gradient(135deg,#0057FF,#00C2A8) !important; color: #fff !important; padding: 14px 36px; border-radius: 50px; font-size: 16px !important; margin-top: 8px; }

/* ── WRAP ── */
.pmb-wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── BLOG LISTING HERO ── */
.pmb-blog-hero {
  padding: 64px 32px 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1140px; margin: 0 auto;
}
.pmb-hero-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--tag-bg); border: 1px solid var(--tag-bd); padding: 5px 14px; border-radius: 40px; font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.pmb-hero-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2;transform:scale(1.8)} }
.pmb-blog-hero h1 { font-family: var(--fh); font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text); margin-bottom: 14px; }
.pmb-blog-hero p { font-size: 17px; color: var(--muted); max-width: 560px; }

/* ── BLOG GRID ── */
.pmb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 40px 0 56px; }
.pmb-card { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; text-decoration: none; color: inherit; transition: transform .3s, box-shadow .3s; display: block; position: relative; }
.pmb-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.pmb-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--accent),#7c5ef7); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,1,.36,1); z-index: 1; }
.pmb-card:hover::before { transform: scaleX(1); }
.pmb-thumb { height: 200px; overflow: hidden; background: linear-gradient(135deg,var(--accent),#7c5ef7); }
.pmb-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pmb-card:hover .pmb-thumb img { transform: scale(1.05); }
.pmb-thumb-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 48px; font-weight: 900; color: rgba(255,255,255,.15); }
.pmb-card-body { padding: 24px; }
.pmb-cat-badge { display: inline-flex; background: var(--tag-bg); border: 1px solid var(--tag-bd); padding: 3px 10px; border-radius: 40px; font-family: var(--fh); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pmb-card-title { font-family: var(--fh); font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pmb-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pmb-meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.pmb-meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; opacity: .4; }
.pmb-read-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-family: var(--fh); font-size: 12.5px; font-weight: 600; color: var(--accent); transition: gap .2s; }
.pmb-card:hover .pmb-read-more { gap: 8px; }

/* ── PAGINATION ── */
.pmb-pagination { display: flex; justify-content: center; gap: 8px; margin-bottom: 80px; flex-wrap: wrap; list-style: none; }
.pmb-pagination .page-numbers { font-family: var(--fh); font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border); color: var(--text); text-decoration: none; transition: all .2s; display: inline-block; background: var(--surface); }
.pmb-pagination .page-numbers.current, .pmb-pagination .page-numbers:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── SINGLE POST — TWO-COL ── */
.pmb-post-outer { max-width: 1140px; margin: 0 auto; padding: 0 32px; width: 100%; }
.pmb-post-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
.pmb-tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.pmb-post-tag { font-family: var(--fh); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 13px; border-radius: 40px; background: var(--tag-bg); border: 1px solid var(--tag-bd); color: var(--accent); }
.pmb-post-title { font-family: var(--fh); font-size: clamp(26px,4vw,40px); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; color: var(--text); margin-bottom: 18px; }
.pmb-post-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-top: 14px; }
.pmb-author-chip { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; }
.pmb-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),#7c5ef7); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; }

/* post two-col layout */
.pmb-content-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 52px;
  align-items: start;
  margin-top: 44px;
  width: 100%;
}

/* sticky TOC */
.pmb-toc-sidebar {
  position: sticky; top: 92px;
  max-height: calc(100vh - 120px);
  overflow-y: auto; scrollbar-width: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
}
.pmb-toc-sidebar::-webkit-scrollbar { display: none; }
.pmb-toc-head { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.pmb-toc-sidebar ol { list-style: none; counter-reset: tc; }
.pmb-toc-sidebar ol li { counter-increment: tc; display: flex; align-items: flex-start; gap: 7px; margin-bottom: 2px; }
.pmb-toc-sidebar ol li::before { content: counter(tc); font-family: var(--fh); font-size: 10px; font-weight: 700; color: var(--accent); min-width: 16px; padding-top: 5px; flex-shrink: 0; }
.pmb-toc-sidebar ol li a { font-size: 13px; line-height: 1.45; color: var(--muted); text-decoration: none; padding: 3px 0; display: block; transition: color .18s; }
.pmb-toc-sidebar ol li a:hover { color: var(--text); }
.pmb-toc-sidebar ol li a.active { color: var(--accent); font-weight: 500; }
.pmb-toc-divider { border: none; border-top: 1px solid var(--border); margin: 10px 0; }

/* blog body */
.pmb-blog-body { padding-bottom: 60px; min-width: 0; }

/* post thumbnail */
.pmb-post-thumb { width: 100%; border-radius: var(--r); margin-bottom: 36px; overflow: hidden; }
.pmb-post-thumb img { width: 100%; height: auto; display: block; }

/* breadcrumb */
.pmb-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 28px; flex-wrap: wrap; }
.pmb-breadcrumb a { color: var(--accent); }

/* ── BLOG CONTENT ── */
.pmb-content { font-size: 17px; line-height: 1.75; color: var(--text); }
.pmb-content p { color: var(--muted); margin-bottom: 16px; }
body.pmb-dark .pmb-content p { color: #b0b5cc; }
.pmb-content p strong { color: var(--text); }
body.pmb-dark .pmb-content p strong { color: #d8dbe8; }
.pmb-content h2 { font-family: var(--fh); font-size: clamp(18px,2.5vw,22px); font-weight: 700; color: var(--text); letter-spacing: -.01em; line-height: 1.3; margin: 36px 0 14px; scroll-margin-top: 100px; }
.pmb-content h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--text); margin: 28px 0 12px; scroll-margin-top: 100px; }
.pmb-content ul, .pmb-content ol { padding-left: 22px; margin-bottom: 18px; }
.pmb-content li { color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
body.pmb-dark .pmb-content li { color: #b0b5cc; }
.pmb-content a { color: var(--accent); border-bottom: 1px solid rgba(37,99,235,.2); }
body.pmb-dark .pmb-content a { border-color: rgba(79,142,247,.2); }

/* mistake card */
.mistake-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 30px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
.mistake-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.num-badge {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #7c5ef7);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 13px; font-weight: 800; color: #fff;
}
.mistake-card h2 { font-family: var(--fh); font-size: clamp(16px,2.2vw,20px); font-weight: 700; color: var(--text); letter-spacing: -.01em; line-height: 1.3; }

/* AIO block */
.aio-block {
  background: var(--aio-bg);
  border-left: 3px solid var(--aio-bd);
  border-radius: 0 var(--rs) var(--rs) 0;
  padding: 14px 18px; margin: 16px 0;
  font-size: 15px; line-height: 1.7;
}
body .aio-block { color: #1e3a6e; }
body.pmb-dark .aio-block { color: #c0d0f5; }
.aio-label { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 5px; }

/* fix box */
.fix-box {
  background: var(--fix-bg);
  border: 1px solid var(--fix-bd);
  border-radius: var(--rs);
  padding: 14px 18px; margin: 14px 0;
}
.fix-label { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 8px; }
.fix-box ul { padding-left: 16px; }
.fix-box ul li { color: var(--fix-li); font-size: 14px; margin-bottom: 5px; line-height: 1.6; }

/* inline CTA box */
.pmb-cta-box { background: #0F2340; border-radius: var(--r); padding: 32px 36px; margin: 44px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; position: relative; overflow: hidden; }
.pmb-cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at right,rgba(0,194,168,.2),transparent 60%); }
.pmb-cta-box-text { position: relative; z-index: 1; }
.pmb-cta-box-text h3 { font-family: var(--fh); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pmb-cta-box-text p { font-size: 14px; color: rgba(255,255,255,.5); margin: 0; }
.pmb-cta-box-btn { background: linear-gradient(135deg,#0057FF,#00C2A8); color: #fff !important; padding: 12px 24px; border-radius: 50px; font-family: var(--fh); font-size: 13px; font-weight: 700; text-decoration: none !important; position: relative; z-index: 1; flex-shrink: 0; transition: transform .2s; }
.pmb-cta-box-btn:hover { transform: translateY(-2px); }

/* section divider */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* social share */
.pmb-share { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; margin: 40px 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pmb-share-label { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.pmb-share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 50px; font-family: var(--fh); font-size: 13px; font-weight: 600; text-decoration: none; transition: all .2s; }
.pmb-share-wa { background: #25D366; color: #fff !important; }
.pmb-share-li { background: #0077B5; color: #fff !important; }
.pmb-share-tw { background: #1DA1F2; color: #fff !important; }

/* author box */
.pmb-author { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 32px; margin: 40px 0; display: flex; align-items: flex-start; gap: 20px; }
.pmb-author-av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),#7c5ef7); display: grid; place-items: center; font-family: var(--fh); font-size: 18px; font-weight: 900; color: #fff; flex-shrink: 0; }
.pmb-author-name { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pmb-author-role { font-size: 11px; color: var(--accent); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; font-family: var(--fh); }
.pmb-author-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { margin: 48px 0; scroll-margin-top: 100px; }
.faq-section-lbl { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.faq-title { font-family: var(--fh); font-size: clamp(20px,3vw,28px); font-weight: 800; color: var(--text); margin-bottom: 24px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: var(--surface); border: none; text-align: left; padding: 16px 20px; color: var(--text); font-family: var(--fh); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--surface2); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--tag-bg); border: 1px solid var(--tag-bd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 16px; font-weight: 700; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; background: var(--surface); font-size: 14.5px; line-height: 1.75; }
body .faq-a { color: #374151; }
body.pmb-dark .faq-a { color: #949cb8; }
.faq-item.open .faq-a { display: block; }

/* conclusion */
.conclusion { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 36px; margin-top: 20px; scroll-margin-top: 100px; }
.conclusion h2 { font-family: var(--fh); font-size: clamp(18px,2.5vw,24px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.conclusion p { color: var(--muted); margin-bottom: 14px; }
body.pmb-dark .conclusion p { color: #b0b5cc; }
.conclusion p strong { color: var(--text); }
body.pmb-dark .conclusion p strong { color: #d8dbe8; }
.clist { list-style: none; margin: 16px 0 22px; padding: 0; }
.clist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; margin-bottom: 9px; line-height: 1.6; }
body .clist li { color: #374151; }
body.pmb-dark .clist li { color: #b0b5cc; }
.ck { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff !important; font-family: var(--fh); font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 10px; text-decoration: none !important; transition: transform .15s, box-shadow .2s; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,142,247,.25); }

/* related posts */
.pmb-related { border-top: 1px solid var(--border); padding-top: 40px; margin-top: 40px; }
.pmb-related-title { font-family: var(--fh); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 24px; letter-spacing: -.5px; }

/* ── FOOTER ── */
#pmb-footer { background: #0F2340; padding: 64px 0 28px; margin-top: 80px; transition: background .3s; }
body.pmb-dark #pmb-footer { background: #060D1A; }
#pmb-footer .pmb-fw { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
#pmb-footer .pmb-fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 52px; }
#pmb-footer h4 { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin: 0 0 20px; padding: 0; }
#pmb-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
#pmb-footer ul li a { font-size: 13.5px; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
#pmb-footer ul li a:hover { color: #00C2A8; }
.pmb-fdesc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.8; margin: 0 0 22px; max-width: 300px; }
.pmb-socials { display: flex; gap: 8px; }
.pmb-soc { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; text-decoration: none; transition: all .2s; font-family: var(--fh); }
.pmb-soc:hover { background: #1E3A5F; color: #fff !important; }
.pmb-fbot { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.pmb-fbot span, .pmb-fbot a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; }
.pmb-fbot a:hover { color: rgba(255,255,255,.5); }
.pmb-fbot-links { display: flex; gap: 20px; }
.pmb-fci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.pmb-fci svg { flex-shrink: 0; margin-top: 2px; }
.pmb-fci a, .pmb-fci span { font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; line-height: 1.6; }
.pmb-fci a:hover { color: #00C2A8; }

/* WhatsApp */
#pmb-wa { position: fixed; bottom: 28px; right: 28px; z-index: 9997; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; transition: transform .25s; }
#pmb-wa:hover { transform: scale(1.1); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .pmb-content-wrap { grid-template-columns: 1fr; gap: 0; }
  .pmb-toc-sidebar { position: static; max-height: none; margin-bottom: 32px; }
  .pmb-toc-sidebar ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
}
@media (max-width: 1024px) {
  #pmb-nav { width: calc(100% - 32px); padding: 0 18px; grid-template-columns: auto auto; justify-content: space-between; }
  .pmb-links, .pmb-phone { display: none !important; }
  .pmb-right .pmb-cta { display: none !important; }
  .pmb-right { gap: 8px !important; }
  .pmb-burger { display: flex !important; }
  body { padding-top: 84px !important; }
  .pmb-wrap, .pmb-blog-hero, .pmb-post-outer { padding-left: 24px; padding-right: 24px; }
  .pmb-grid { grid-template-columns: 1fr 1fr; }
  #pmb-footer .pmb-fw { padding: 0 24px; }
  #pmb-footer .pmb-fg { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pmb-cta-box { flex-direction: column; }
}
@media (max-width: 600px) {
  .pmb-grid { grid-template-columns: 1fr; }
  #pmb-footer .pmb-fg { grid-template-columns: 1fr; }
  .pmb-toc-sidebar ol { grid-template-columns: 1fr; }
  .conclusion { padding: 22px 18px; }
  .mistake-card { padding: 20px 18px; }
}
