/* ==========================================================================
   Profit By Clix — Main Stylesheet
   ========================================================================== */

/* ----- Reset + Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--pbc-text);
  background: var(--pbc-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ----- Theme tokens (default = dark) ----- */
:root {
  --pbc-accent: #29ABE2;
  --pbc-accent-soft: rgba(41,171,226,0.10);
  --pbc-accent-line: rgba(41,171,226,0.27);
  --heading-font: 'Barlow Condensed', sans-serif;
  --body-font: 'Barlow', sans-serif;
  --radius: 10px;
}

body.pbc-theme-dark {
  --pbc-bg: #0a1220;
  --pbc-bg-alt: #0d1b2a;
  --pbc-bg-card: #13263a;
  --pbc-text: #fafcfe;
  --pbc-text-sub: rgba(250,252,254,0.65);
  --pbc-border: rgba(255,255,255,0.08);
  --pbc-input-bg: #0d1b2a;
  --pbc-form-bg: #13263a;
}
body.pbc-theme-light {
  --pbc-bg: #fafcfe;
  --pbc-bg-alt: #f0f6fa;
  --pbc-bg-card: #ffffff;
  --pbc-text: #0d1b2a;
  --pbc-text-sub: #64748b;
  --pbc-border: #e2edf5;
  --pbc-input-bg: #f8fbfd;
  --pbc-form-bg: #ffffff;
}
body.pbc-theme-gradient {
  --pbc-bg: #0c0f2e;
  --pbc-bg-alt: linear-gradient(160deg,#130d2e 0%,#0e1235 100%);
  --pbc-bg-card: rgba(255,255,255,0.05);
  --pbc-text: #fafcfe;
  --pbc-text-sub: rgba(250,252,254,0.65);
  --pbc-border: rgba(124,58,237,0.20);
  --pbc-input-bg: #0d1b2a;
  --pbc-form-bg: rgba(255,255,255,0.06);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pbc-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--pbc-accent); border-radius: 3px; }

/* ----- Utilities ----- */
.pbc-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pbc-container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pbc-section { padding: 96px 24px; }
.pbc-eyebrow {
  color: var(--pbc-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pbc-heading {
  font-family: var(--heading-font);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--pbc-text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pbc-sub-heading {
  font-family: var(--heading-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pbc-text);
}
.pbc-text { color: var(--pbc-text-sub); }

/* ----- Buttons ----- */
.pbc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: filter .2s, transform .2s, background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.pbc-btn--primary { background: var(--pbc-accent); color: #fff; }
.pbc-btn--primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.pbc-btn--ghost { color: var(--pbc-text); border-color: var(--pbc-accent-line); background: transparent; }
.pbc-btn--ghost:hover { border-color: var(--pbc-accent); background: var(--pbc-accent-soft); }
.pbc-btn--lg { padding: 15px 36px; font-size: 16px; }

/* ----- Navbar ----- */
.pbc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
  padding: 20px 0;
}
.pbc-nav.is-scrolled {
  background: var(--pbc-bg-alt);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pbc-accent-line);
  padding: 12px 0;
}
body.pbc-theme-dark .pbc-nav.is-scrolled,
body.pbc-theme-gradient .pbc-nav.is-scrolled { background: rgba(13,27,42,0.97); }
body.pbc-theme-light .pbc-nav.is-scrolled { background: rgba(250,252,254,0.97); }

.pbc-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.pbc-logo,
a.pbc-logo { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.pbc-logo img,
.custom-logo-link img { height: 40px; width: auto; max-height: 40px; max-width: 200px; object-fit: contain; display: block; }
.pbc-logo-text { font-family: var(--heading-font); font-size: 24px; font-weight: 800; color: var(--pbc-text); }

.pbc-nav__menu { display: flex; gap: 28px; align-items: center; list-style: none; }
.pbc-nav__menu a {
  color: var(--pbc-text); font-weight: 500; font-size: 15px; opacity: .82;
  transition: opacity .2s;
}
.pbc-nav__menu a:hover { opacity: 1; }

.pbc-nav__toggle {
  display: none;
  background: none; border: none; padding: 6px;
  min-width: 44px; min-height: 44px;
  color: var(--pbc-text);
}
.pbc-mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 85%; max-width: 340px;
  background: var(--pbc-bg-alt);
  box-shadow: -12px 0 32px rgba(0,0,0,0.25);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.22,1,0.36,1);
  padding: 88px 28px 32px; z-index: 999;
  display: flex; flex-direction: column; gap: 4px;
}
.pbc-mobile-drawer.is-open { transform: translateX(0); }
.pbc-mobile-drawer a {
  color: var(--pbc-text); font-weight: 600; font-size: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--pbc-accent-line);
}
.pbc-mobile-drawer .pbc-btn { margin-top: 20px; justify-content: center; }
.pbc-mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.pbc-mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ----- Hero ----- */
.pbc-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
body.pbc-theme-dark .pbc-hero { background: #0a1220; }
body.pbc-theme-light .pbc-hero { background: #e8f7fd; }
body.pbc-theme-gradient .pbc-hero { background: #0c0f2e; }
.pbc-hero__orbs { position: absolute; inset: 0; pointer-events: none; }
.pbc-hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); transform: translate(-50%,-50%); }
.pbc-hero__orb--1 { width: 520px; height: 520px; left: 20%; top: 15%;
  background: radial-gradient(circle, var(--pbc-accent-soft) 0%, transparent 70%); }
.pbc-hero__orb--2 { width: 320px; height: 320px; left: 75%; top: 65%;
  background: radial-gradient(circle, var(--pbc-accent-soft) 0%, transparent 70%); opacity: .8; }
.pbc-hero__orb--3 { width: 200px; height: 200px; left: 50%; top: 40%;
  background: radial-gradient(circle, var(--pbc-accent-soft) 0%, transparent 70%); opacity: .6; }
.pbc-hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--pbc-accent-soft) 1px, transparent 0);
  background-size: 48px 48px;
}
.pbc-hero__content {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 24px;
}
.pbc-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pbc-accent-soft); border: 1px solid var(--pbc-accent-line);
  border-radius: 100px; padding: 6px 18px; margin-bottom: 28px;
  color: var(--pbc-accent); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  animation: pbcFadeSlideUp .7s ease both;
}
.pbc-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pbc-accent);
  animation: pbcPulse 2s ease-in-out infinite;
}
.pbc-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--pbc-text);
  margin-bottom: 24px;
  min-height: 1.1em;
  letter-spacing: -0.01em;
  animation: pbcFadeSlideUp .7s .1s ease both;
}
.pbc-hero__caret {
  display: inline-block; width: 3px; height: 0.8em;
  background: var(--pbc-accent); margin-left: 4px; vertical-align: middle;
  animation: pbcBlink .9s step-end infinite;
}
.pbc-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--pbc-text-sub);
  max-width: 680px;
  margin: 0 auto 16px;
  animation: pbcFadeSlideUp .7s .2s ease both;
}
.pbc-hero__paragraph {
  font-size: 16px; color: var(--pbc-text-sub); max-width: 580px;
  margin: 0 auto 44px;
  animation: pbcFadeSlideUp .7s .3s ease both;
}
.pbc-hero__ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center;
  animation: pbcFadeSlideUp .7s .4s ease both;
}
.pbc-hero__stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 72px;
  animation: pbcFadeSlideUp .7s .55s ease both;
}
.pbc-hero__stat { text-align: center; transition: transform .25s; }
.pbc-hero__stat:hover { transform: scale(1.05); }
.pbc-hero__stat-num {
  font-family: var(--heading-font); font-size: 42px; font-weight: 800;
  color: var(--pbc-accent); line-height: 1;
}
.pbc-hero__stat-label {
  font-size: 13px; color: var(--pbc-text-sub); margin-top: 4px;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
}
.pbc-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid var(--pbc-accent); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
  opacity: .45;
}
.pbc-scroll-indicator::after {
  content: ''; width: 3px; height: 8px; border-radius: 2px; background: var(--pbc-accent);
  animation: pbcScrollDot 2s ease-in-out infinite;
}

/* ----- Trust Bar ----- */
.pbc-trust-bar {
  background: var(--pbc-bg-alt);
  padding: 20px 24px;
  border-top: 1px solid var(--pbc-border);
}
body.pbc-theme-dark .pbc-trust-bar,
body.pbc-theme-gradient .pbc-trust-bar { background: #060f1a; }
.pbc-trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.pbc-trust-bar__label {
  color: rgba(250,252,254,0.45); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.pbc-trust-bar__list { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.pbc-trust-badge {
  display: flex; align-items: center; gap: 8px;
  opacity: .75; transition: opacity .2s;
}
.pbc-trust-badge:hover { opacity: 1; }
.pbc-trust-badge__icon {
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.pbc-trust-badge__logo {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pbc-trust-badge__logo svg { width: 100%; height: 100%; display: block; }
.pbc-trust-badge__name {
  color: rgba(250,252,254,0.75); font-size: 13px; font-weight: 500; white-space: nowrap;
}

/* ----- Generic Section Header ----- */
.pbc-section-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pbc-section-header p { font-size: 18px; color: var(--pbc-text-sub); margin-top: 8px; }

/* ----- Services ----- */
.pbc-services { background: var(--pbc-bg); }
.pbc-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pbc-service-card {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: block;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pbc-service-card:hover {
  border-color: var(--pbc-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41,171,226,0.15);
}
.pbc-service-card__icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .25s, color .25s;
}
.pbc-service-card:hover .pbc-service-card__icon {
  background: var(--pbc-accent); color: #fff;
}
.pbc-service-card__sub {
  font-size: 11px; color: var(--pbc-accent); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}
.pbc-service-card__title {
  font-family: var(--heading-font); font-size: 26px; font-weight: 700;
  color: var(--pbc-text); margin-bottom: 12px;
}
.pbc-service-card__desc {
  font-size: 15px; color: var(--pbc-text-sub); line-height: 1.65;
}
.pbc-service-card__more {
  margin-top: 20px; display: flex; align-items: center; gap: 6px;
  color: var(--pbc-accent); font-weight: 600; font-size: 14px;
}

/* ----- About ----- */
.pbc-about { background: var(--pbc-bg-alt); }
.pbc-about__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.pbc-about__bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pbc-about__bullet { display: flex; align-items: flex-start; gap: 12px; }
.pbc-about__bullet-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pbc-accent-soft);
  border: 1.5px solid var(--pbc-accent);
  color: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pbc-about__bullet-text { font-size: 15px; color: var(--pbc-text-sub); line-height: 1.5; }
.pbc-about__visual { position: relative; }
.pbc-about__image-frame {
  background: var(--pbc-accent-soft);
  border: 1.5px solid var(--pbc-accent-line);
  border-radius: 16px; padding: 4px;
}
.pbc-about__image {
  border-radius: 12px; height: 360px; width: 100%;
  background: var(--pbc-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--pbc-accent); opacity: .65;
  object-fit: cover;
}
.pbc-about__image-placeholder {
  font-family: monospace; font-size: 13px; letter-spacing: 0.05em;
}
.pbc-about__float-card {
  position: absolute; padding: 20px 24px; border-radius: 12px;
  background: var(--pbc-accent); color: #fff;
  box-shadow: 0 8px 32px rgba(41,171,226,0.30);
}
.pbc-about__float-card--bl { bottom: -24px; left: -24px; }
.pbc-about__float-card--tr {
  top: -20px; right: -20px;
  background: var(--pbc-bg-card); color: var(--pbc-accent);
  border: 1.5px solid var(--pbc-accent-line);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.pbc-about__float-num {
  font-family: var(--heading-font); font-size: 36px; font-weight: 800; line-height: 1;
}
.pbc-about__float-card--tr .pbc-about__float-num { font-size: 28px; }
.pbc-about__float-label { font-size: 13px; font-weight: 500; margin-top: 4px; opacity: .85; }
.pbc-about__float-card--tr .pbc-about__float-label { color: var(--pbc-text-sub); opacity: 1; }

/* ----- Portfolio ----- */
.pbc-portfolio { background: var(--pbc-bg); }
.pbc-portfolio__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.pbc-case {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px; padding: 40px 36px;
  transition: all .25s;
}
.pbc-case:hover {
  border-color: var(--case-color, var(--pbc-accent));
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.pbc-case__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; gap: 12px;
}
.pbc-case__tag {
  color: var(--case-color, var(--pbc-accent));
  background: color-mix(in srgb, var(--case-color, var(--pbc-accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--case-color, var(--pbc-accent)) 30%, transparent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.pbc-case__result {
  font-family: var(--heading-font); font-size: 22px; font-weight: 800;
  color: var(--case-color, var(--pbc-accent));
  text-align: right;
}
.pbc-case__title {
  font-family: var(--heading-font); font-size: 28px; font-weight: 700;
  color: var(--pbc-text); margin-bottom: 12px; line-height: 1.2;
}
.pbc-case__desc { font-size: 15px; color: var(--pbc-text-sub); line-height: 1.65; }

/* ----- Testimonials ----- */
.pbc-testimonials { background: var(--pbc-bg-alt); }
.pbc-testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pbc-testimonial {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px; padding: 36px 32px;
  transition: border-color .25s;
}
.pbc-testimonial:hover { border-color: var(--pbc-accent); }
.pbc-testimonial__stars { display: flex; gap: 2px; margin-bottom: 20px; color: var(--pbc-accent); }
.pbc-testimonial__quote {
  font-size: 16px; color: var(--pbc-text-sub); line-height: 1.7;
  font-style: italic; margin-bottom: 24px;
}
.pbc-testimonial__name { font-weight: 700; color: var(--pbc-text); font-size: 15px; }
.pbc-testimonial__role { font-size: 13px; color: var(--pbc-accent); font-weight: 500; margin-top: 2px; }

/* ----- AI SEO Feature ----- */
.pbc-aiseo {
  position: relative; overflow: hidden;
  background: var(--pbc-bg);
}
body.pbc-theme-light .pbc-aiseo {
  background: linear-gradient(135deg, #e8f7fd 0%, #f0f9fe 100%);
}
body.pbc-theme-dark .pbc-aiseo {
  background: linear-gradient(135deg, #080f1c 0%, #0b1d30 50%, #091929 100%);
}
.pbc-aiseo__grid {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.pbc-aiseo__tags { display: inline-flex; gap: 8px; margin-bottom: 24px; }
.pbc-aiseo__tag {
  background: var(--pbc-accent-soft); border: 1px solid var(--pbc-accent-line);
  color: var(--pbc-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.pbc-aiseo__heading {
  font-family: var(--heading-font); font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; color: var(--pbc-text); line-height: 1.05; margin-bottom: 20px;
}
.pbc-aiseo__text {
  font-size: 17px; color: var(--pbc-text-sub); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px;
}
.pbc-aiseo__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.pbc-aiseo__stat-num { font-family: var(--heading-font); font-size: 34px; font-weight: 800; color: var(--pbc-accent); line-height: 1; }
.pbc-aiseo__stat-lab { font-size: 13px; color: var(--pbc-text-sub); margin-top: 4px; font-weight: 500; }
.pbc-aiseo__cards { display: flex; flex-direction: column; gap: 16px; }
.pbc-aiseo__card {
  background: var(--pbc-bg-card);
  border: 1px solid var(--pbc-accent-line);
  border-radius: 12px; padding: 22px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .25s, transform .25s;
  backdrop-filter: blur(8px);
}
.pbc-aiseo__card:hover { border-color: var(--pbc-accent); transform: translateX(4px); }
.pbc-aiseo__card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s, color .25s;
}
.pbc-aiseo__card:hover .pbc-aiseo__card-icon { background: var(--pbc-accent); color: #fff; }
.pbc-aiseo__card-title { font-weight: 700; font-size: 15px; color: var(--pbc-text); margin-bottom: 6px; }
.pbc-aiseo__card-desc { font-size: 14px; color: var(--pbc-text-sub); line-height: 1.6; }

/* ----- Areas We Serve ----- */
.pbc-areas { background: var(--pbc-bg); }
.pbc-areas__header {
  max-width: 1100px; margin: 0 auto 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.pbc-areas__tabs {
  display: flex; background: var(--pbc-bg-alt);
  border-radius: 10px; padding: 4px; gap: 4px;
}
.pbc-areas__tab {
  padding: 11px 20px; border-radius: 7px; border: none; background: transparent;
  font-family: var(--body-font); font-weight: 600; font-size: 14px;
  color: var(--pbc-text-sub); cursor: pointer; transition: all .2s;
  min-height: 44px;
}
.pbc-areas__tab.is-active { background: var(--pbc-accent); color: #fff; }
.pbc-areas__card {
  max-width: 1100px; margin: 0 auto;
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  border-radius: 16px; padding: 40px 48px;
}
.pbc-areas__sub-label {
  font-size: 13px; color: var(--pbc-accent); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
}
.pbc-areas__cities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.pbc-areas__city {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 0; color: var(--pbc-text);
  border-bottom: 1px solid var(--pbc-border);
  transition: color .2s;
}
.pbc-areas__city:hover { color: var(--pbc-accent); }
.pbc-areas__note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--pbc-text-sub); }

/* ----- CTA Banner ----- */
.pbc-cta {
  background: var(--pbc-accent);
  padding: 72px 24px;
  position: relative; overflow: hidden;
  text-align: center;
}
.pbc-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 36px 36px;
}
.pbc-cta__inner { max-width: 800px; margin: 0 auto; position: relative; }
.pbc-cta__heading {
  font-family: var(--heading-font); font-size: clamp(32px, 4vw, 54px);
  font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 16px;
}
.pbc-cta__sub { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.pbc-cta__btn {
  background: #fff; color: var(--pbc-accent);
  padding: 15px 38px; border-radius: 8px; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.pbc-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ----- FAQ ----- */
.pbc-faq { background: var(--pbc-bg-alt); }
.pbc-faq__wrap { max-width: 780px; margin: 0 auto; }
.pbc-faq__item { border-bottom: 1px solid var(--pbc-border); }
.pbc-faq__q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left; gap: 16px;
  font-weight: 600; font-size: 17px; color: var(--pbc-text); line-height: 1.4;
}
.pbc-faq__q-icon { flex-shrink: 0; color: var(--pbc-accent); transition: transform .25s; }
.pbc-faq__item.is-open .pbc-faq__q-icon { transform: rotate(180deg); }
.pbc-faq__a {
  display: none; padding: 0 36px 24px 0;
  font-size: 16px; color: var(--pbc-text-sub); line-height: 1.7;
}
.pbc-faq__item.is-open .pbc-faq__a { display: block; }

/* ----- Blog listing ----- */
.pbc-blog { background: var(--pbc-bg); }
.pbc-blog__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.pbc-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Category filter bar */
.pbc-cat-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
  padding-bottom: 28px; border-bottom: 1px solid var(--pbc-border);
}
.pbc-cat-filter__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  color: var(--pbc-text-sub); transition: all .2s; white-space: nowrap;
}
.pbc-cat-filter__btn:hover,
.pbc-cat-filter__btn.is-active {
  background: var(--pbc-accent); border-color: var(--pbc-accent); color: #fff;
}
.pbc-cat-filter__btn span {
  background: rgba(0,0,0,0.12); border-radius: 100px;
  font-size: 10px; padding: 1px 6px; min-width: 18px; text-align: center;
}
.pbc-cat-filter__btn:not(.is-active) span {
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
}

/* Blog cards */
.pbc-blog-card {
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  border-radius: 16px; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: inherit; display: flex; flex-direction: column;
}
.pbc-blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(41,171,226,0.18); border-color: var(--pbc-accent); }
.pbc-blog-card__thumb {
  height: 200px; background: var(--pbc-accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--pbc-accent); object-fit: cover; position: relative; overflow: hidden;
}
img.pbc-blog-card__thumb { width: 100%; height: 200px; object-fit: cover; }
.pbc-blog-card__thumb-placeholder { font-size: 40px; opacity: .3; }
.pbc-blog-card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.pbc-blog-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pbc-blog-card__tag {
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; display: inline-block;
  transition: background .2s, color .2s;
}
.pbc-blog-card__tag:hover { background: var(--pbc-accent); color: #fff; }
.pbc-blog-card__title {
  font-family: var(--heading-font); font-size: 20px; font-weight: 700;
  color: var(--pbc-text); line-height: 1.3; margin-bottom: 10px;
}
.pbc-blog-card__excerpt { font-size: 14px; color: var(--pbc-text-sub); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.pbc-blog-card__meta { display: flex; gap: 12px; font-size: 13px; color: var(--pbc-text-sub); margin-top: auto; align-items: center; }
.pbc-blog-card__meta-dot { opacity: .4; }
.pbc-blog-card__read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--pbc-accent); font-weight: 600; font-size: 13px; margin-top: 14px; }

/* ── Single post hero ─────────────────────────────── */
.pbc-post-hero {
  position: relative; overflow: hidden;
  background: var(--pbc-bg-alt);
  padding: 160px 24px 72px; text-align: center;
}
.pbc-post-hero--has-img { padding: 200px 24px 80px; }
.pbc-post-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.03);
}
.pbc-post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,28,0.55) 0%, rgba(5,12,28,0.88) 100%);
}
.pbc-post-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.pbc-post-hero__cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.pbc-post-hero__cat {
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; transition: opacity .2s;
}
.pbc-post-hero--has-img .pbc-post-hero__cat {
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3);
}
.pbc-post-hero__cat:hover { opacity: .78; }
.pbc-post-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--pbc-text); margin-bottom: 28px;
}
.pbc-post-hero--has-img .pbc-post-hero__title { color: #fff; }
.pbc-post-hero__meta { display: inline-flex; align-items: center; gap: 12px; }
.pbc-post-hero__avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--pbc-accent); flex-shrink: 0;
}
.pbc-post-hero__meta-text { text-align: left; }
.pbc-post-hero__author { display: block; font-weight: 700; font-size: 14px; color: var(--pbc-text); }
.pbc-post-hero--has-img .pbc-post-hero__author { color: #fff; }
.pbc-post-hero__date { font-size: 13px; color: var(--pbc-text-sub); }
.pbc-post-hero--has-img .pbc-post-hero__date { color: rgba(255,255,255,0.7); }

/* ── Single post layout ───────────────────────────── */
.pbc-post-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 56px;
  padding: 64px 24px 80px;
}
.pbc-post-content { font-size: 17px; line-height: 1.8; color: var(--pbc-text); }
.pbc-post-content h2 {
  font-family: var(--heading-font); font-size: clamp(22px, 4vw, 30px);
  font-weight: 700; margin: 48px 0 16px; color: var(--pbc-text);
}
.pbc-post-content h3 {
  font-family: var(--heading-font); font-size: clamp(18px, 3vw, 24px);
  font-weight: 700; margin: 36px 0 12px; color: var(--pbc-text);
}
.pbc-post-content p, .pbc-post-content ul, .pbc-post-content ol { margin-bottom: 22px; }
.pbc-post-content ul, .pbc-post-content ol { padding-left: 26px; }
.pbc-post-content li { margin-bottom: 10px; }
.pbc-post-content a { color: var(--pbc-accent); text-decoration: underline; }
.pbc-post-content blockquote {
  border-left: 4px solid var(--pbc-accent); padding: 16px 20px;
  margin: 32px 0; font-style: italic; color: var(--pbc-text-sub);
  background: var(--pbc-bg-alt); border-radius: 0 8px 8px 0;
}
.pbc-post-content code { background: var(--pbc-bg-alt); padding: 2px 7px; border-radius: 4px; font-size: .9em; }
.pbc-post-content pre { background: var(--pbc-bg-alt); padding: 20px; border-radius: 8px; overflow-x: auto; margin-bottom: 22px; }
.pbc-post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 28px 0; display: block; }
.pbc-post-content table { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 15px; }
.pbc-post-content th, .pbc-post-content td { padding: 10px 14px; border: 1px solid var(--pbc-border); text-align: left; }
.pbc-post-content th { background: var(--pbc-bg-alt); font-weight: 700; }

/* Tags row */
.pbc-post-tags {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--pbc-border);
}
.pbc-post-tags__label { font-size: 13px; font-weight: 600; color: var(--pbc-text-sub); }
.pbc-post-tag {
  background: var(--pbc-bg-alt); color: var(--pbc-text-sub); font-size: 12px;
  padding: 5px 12px; border-radius: 100px; border: 1px solid var(--pbc-border);
  transition: border-color .2s, color .2s;
}
.pbc-post-tag:hover { border-color: var(--pbc-accent); color: var(--pbc-accent); }

/* Prev / Next nav */
.pbc-post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--pbc-border);
}
.pbc-post-nav a { font-weight: 600; font-size: 14px; color: var(--pbc-text); line-height: 1.4; transition: color .2s; }
.pbc-post-nav a:hover { color: var(--pbc-accent); }
.pbc-post-nav__label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--pbc-text-sub); margin-bottom: 4px; }
.pbc-post-nav__prev { border: 1.5px solid var(--pbc-border); border-radius: 10px; padding: 14px 16px; }
.pbc-post-nav__next { border: 1.5px solid var(--pbc-border); border-radius: 10px; padding: 14px 16px; text-align: right; }
.pbc-post-nav__prev:hover, .pbc-post-nav__next:hover { border-color: var(--pbc-accent); }

/* ── Post sidebar ─────────────────────────────────── */
.pbc-post-sidebar { display: flex; flex-direction: column; gap: 24px; }
.pbc-post-widget {
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  border-radius: 14px; padding: 22px;
}
.pbc-post-widget__title {
  font-family: var(--heading-font); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--pbc-text);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--pbc-border);
}
/* wp_list_categories output */
.pbc-post-widget__cats { list-style: none; display: flex; flex-direction: column; }
.pbc-post-widget__cats li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; font-size: 14px; color: var(--pbc-text);
  border-bottom: 1px solid var(--pbc-border); transition: color .2s;
}
.pbc-post-widget__cats li:last-child a { border-bottom: none; }
.pbc-post-widget__cats li a:hover { color: var(--pbc-accent); }
.pbc-post-widget__cats .count {
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 100px;
}
/* CTA widget */
.pbc-post-widget--cta { background: var(--pbc-bg-alt); border-color: var(--pbc-accent-line); text-align: center; }
.pbc-post-widget__cta-icon { color: var(--pbc-accent); margin-bottom: 10px; display: flex; justify-content: center; }
.pbc-post-widget--cta p { font-size: 13px; color: var(--pbc-text-sub); line-height: 1.6; margin-bottom: 16px; }

/* Related posts */
.pbc-related-post {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--pbc-border);
}
.pbc-related-post:last-child { border-bottom: none; padding-bottom: 0; }
.pbc-related-post:hover .pbc-related-post__title { color: var(--pbc-accent); }
.pbc-related-post__img {
  width: 68px; height: 68px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.pbc-related-post__img--placeholder {
  background: var(--pbc-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--pbc-accent);
}
.pbc-related-post__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pbc-related-post__title {
  font-size: 13px; font-weight: 600; color: var(--pbc-text);
  line-height: 1.4; transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pbc-related-post__date { font-size: 12px; color: var(--pbc-text-sub); }

/* Comments */
.pbc-post-comments { max-width: 860px; padding: 0 24px 64px; margin: 0 auto; }

/* Blog responsive */
@media (max-width: 960px) {
  .pbc-post-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pbc-post-sidebar { flex-direction: row; flex-wrap: wrap; }
  .pbc-post-widget { flex: 1 1 280px; }
}
@media (max-width: 640px) {
  .pbc-post-hero { padding: 120px 18px 56px; }
  .pbc-post-hero--has-img { padding: 140px 18px 60px; }
  .pbc-post-wrap { padding: 40px 18px 56px; gap: 32px; }
  .pbc-post-content { font-size: 16px; }
  .pbc-post-sidebar { flex-direction: column; }
  .pbc-post-nav { grid-template-columns: 1fr; }
  .pbc-cat-filter { gap: 6px; }
  .pbc-cat-filter__btn { padding: 7px 14px; font-size: 12px; }
}

/* ----- Contact ----- */
.pbc-contact { background: var(--pbc-bg); }
.pbc-contact__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start;
}
.pbc-contact__info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.pbc-contact__info-row { display: flex; align-items: center; gap: 16px; }
.pbc-contact__info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pbc-contact__info-label { font-size: 12px; color: var(--pbc-text-sub); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.pbc-contact__info-val { font-weight: 600; color: var(--pbc-text); font-size: 15px; margin-top: 1px; }
.pbc-form-card {
  background: var(--pbc-form-bg); border: 1.5px solid var(--pbc-border);
  border-radius: 16px; padding: 44px 40px;
}
.pbc-form { display: flex; flex-direction: column; gap: 16px; }
.pbc-form__title { font-family: var(--heading-font); font-size: 24px; font-weight: 700; color: var(--pbc-text); margin-bottom: 8px; }
.pbc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pbc-form input, .pbc-form textarea {
  width: 100%; background: var(--pbc-input-bg);
  border: 1.5px solid var(--pbc-border); border-radius: 8px;
  padding: 12px 16px; font-size: 15px; color: var(--pbc-text);
  outline: none; font-family: var(--body-font);
  transition: border-color .2s;
}
.pbc-form input:focus, .pbc-form textarea:focus { border-color: var(--pbc-accent); }
.pbc-form textarea { resize: vertical; min-height: 110px; }
.pbc-form__submit {
  background: var(--pbc-accent); color: #fff; border: none;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 16px;
  font-family: var(--body-font); display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: filter .2s;
}
.pbc-form__submit:hover { filter: brightness(1.12); }
.pbc-form__note { font-size: 12px; color: var(--pbc-text-sub); text-align: center; line-height: 1.5; }

/* ----- WhatsApp Floating Button ----- */
.pbc-wa {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform .2s, box-shadow .2s;
}
.pbc-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.pbc-wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pbcWaPulse 2s ease-out infinite;
}

/* ----- Footer ----- */
.pbc-footer {
  background: #060f1a;
  padding: 64px 24px 32px;
  color: rgba(250,252,254,0.5);
}
body.pbc-theme-light .pbc-footer { background: #0d1b2a; }
.pbc-footer__top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.pbc-footer__brand p { font-size: 15px; line-height: 1.7; max-width: 340px; margin: 20px 0 24px; }
.pbc-footer__social { display: flex; gap: 12px; }
.pbc-footer__social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pbc-accent-soft); border: 1px solid var(--pbc-accent-line);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.pbc-footer__social a:hover { background: var(--pbc-accent); }
.pbc-footer__col-title {
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}
.pbc-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.pbc-footer__col a { font-size: 15px; padding: 8px 0; display: block; transition: color .2s; }
.pbc-footer__col a:hover { color: var(--pbc-accent); }
.pbc-footer__bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.pbc-footer__bottom-links { display: flex; gap: 24px; align-items: center; }
.pbc-footer__bottom-links a { padding: 6px 0; }
.pbc-footer__bottom-links a:hover { color: #fff; }

/* ----- Reveal animations ----- */
.pbc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(0.22,1,0.36,1), transform .65s cubic-bezier(0.22,1,0.36,1); }
.pbc-reveal.is-visible { opacity: 1; transform: none; }

/* ----- Keyframes ----- */
@keyframes pbcFadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pbcBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes pbcPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .6; } }
@keyframes pbcScrollDot { 0%,100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(10px); opacity: 1; } }
@keyframes pbcWaPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .pbc-section { padding: 72px 20px; }
  .pbc-services__grid { grid-template-columns: repeat(2, 1fr); }
  .pbc-about__grid, .pbc-aiseo__grid, .pbc-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .pbc-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .pbc-areas__cities { grid-template-columns: repeat(3, 1fr); }
  .pbc-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pbc-about__float-card { display: none; }
  .pbc-about__image { height: 280px; }
}

/* Mobile ≤ 880px — hamburger menu */
@media (max-width: 880px) {
  .pbc-nav__menu { display: none; }
  .pbc-nav__toggle { display: flex; align-items: center; justify-content: center; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .pbc-section { padding: 64px 18px; }
  .pbc-services__grid, .pbc-portfolio__grid, .pbc-testimonials__grid, .pbc-blog__grid {
    grid-template-columns: 1fr; gap: 18px;
  }
  .pbc-areas__cities { grid-template-columns: repeat(2, 1fr); }
  .pbc-footer__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .pbc-form__row { grid-template-columns: 1fr; }
  .pbc-form-card { padding: 28px 22px; }
  .pbc-hero { padding-top: 100px; }
  .pbc-hero__stats { gap: 24px; margin-top: 40px; }
  .pbc-hero__stat { flex: 0 0 calc(50% - 12px); }
  .pbc-hero__stat-num { font-size: 32px; }
  .pbc-trust-bar { padding: 16px; }
  .pbc-trust-bar__inner { gap: 14px; }
  .pbc-areas__card { padding: 28px 22px; }
  .pbc-areas__header { flex-direction: column; align-items: flex-start; }
  .pbc-case { padding: 28px 24px; }
  .pbc-case__head { flex-direction: column; gap: 8px; }
  .pbc-case__result { text-align: left; }
  .pbc-section-header { margin-bottom: 44px; }
  .pbc-aiseo__stats { gap: 24px; }
  .pbc-wa { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .pbc-service-card { padding: 24px 20px; }
  .pbc-service-card__title { font-size: 22px; }
  .pbc-testimonial { padding: 24px 20px; }
  .pbc-about__image { height: 200px; }
  .pbc-cta__sub { font-size: 16px; }
  .pbc-hero__orb--1 { width: 260px; height: 260px; }
  .pbc-hero__orb--2 { width: 160px; height: 160px; }
  .pbc-hero__orb--3 { display: none; }
  .pbc-mobile-drawer { padding-top: 72px; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .pbc-hero__title { font-size: clamp(34px, 9vw, 44px); }
  .pbc-btn { padding: 12px 22px; font-size: 14px; }
  .pbc-section { padding: 48px 16px; }
  .pbc-areas__cities { grid-template-columns: 1fr; }
  .pbc-areas__card { padding: 20px 16px; }
  .pbc-mobile-drawer { padding: 72px 18px 24px; width: 92%; }
}

/* Print */
@media print {
  .pbc-nav, .pbc-wa, .pbc-hero__orbs, .pbc-hero__grid, .pbc-scroll-indicator { display: none; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Sub-page hero + breadcrumbs + content layouts
   ========================================================================== */
.pbc-page-hero {
  position: relative; overflow: hidden;
  padding: 160px 24px 80px; text-align: center;
  background: var(--pbc-bg-alt);
}
.pbc-page-hero__inner { max-width: 800px; margin: 0 auto; position: relative; }
.pbc-page-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.05;
  color: var(--pbc-text); margin: 12px 0 16px; letter-spacing: -0.01em;
}
.pbc-page-hero__intro {
  font-size: 18px; color: var(--pbc-text-sub); line-height: 1.7;
  max-width: 640px; margin: 0 auto;
}

/* Split hero — service pages with featured image */
.pbc-page-hero--has-image {
  text-align: left;
  padding: 140px 24px 80px;
}
.pbc-page-hero__split {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pbc-page-hero--has-image .pbc-page-hero__intro { margin-left: 0; max-width: none; }
.pbc-page-hero__img-wrap { position: relative; }
.pbc-page-hero__img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: block;
}

/* Breadcrumbs */
.pbc-breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0;
  font-size: 13px; color: var(--pbc-text-sub); justify-content: flex-start;
}
.pbc-breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.pbc-breadcrumbs span { opacity: 0.4; }
.pbc-breadcrumbs a { color: var(--pbc-accent); text-decoration: none; }
.pbc-breadcrumbs a:hover { text-decoration: underline; }

/* Content prose used inside service/city/case body */
.pbc-prose {
  max-width: 760px; margin: 0 auto; color: var(--pbc-text);
  font-size: 17px; line-height: 1.75;
}
.pbc-prose h2 { font-family: var(--heading-font); font-size: clamp(28px, 3vw, 38px); font-weight: 700; margin: 40px 0 16px; color: var(--pbc-text); }
.pbc-prose h3 { font-family: var(--heading-font); font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; margin: 32px 0 12px; color: var(--pbc-text); }
.pbc-prose p, .pbc-prose ul, .pbc-prose ol { margin-bottom: 20px; color: var(--pbc-text-sub); }
.pbc-prose ul, .pbc-prose ol { padding-left: 24px; }
.pbc-prose li { margin-bottom: 8px; }
.pbc-prose a { color: var(--pbc-accent); text-decoration: underline; }
.pbc-prose blockquote {
  border-left: 3px solid var(--pbc-accent); padding: 8px 0 8px 20px;
  margin: 24px 0; font-style: italic; color: var(--pbc-text-sub);
}
.pbc-prose img { border-radius: 12px; margin: 24px 0; }

/* ----- Rich content blocks used inside .pbc-prose ----- */
/* Hero banner at the top of service/city body content */
.pbc-prose .pbc-banner {
  position: relative;
  width: 100%; aspect-ratio: 10 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 40px;
  border: 1px solid var(--pbc-border);
}
.pbc-prose .pbc-banner svg { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) {
  .pbc-prose .pbc-banner { aspect-ratio: 5 / 3; }
}

/* Stats row — inline KPI strip */
.pbc-prose .pbc-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 36px 0;
}
.pbc-prose .pbc-stats-row__item {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.pbc-prose .pbc-stats-row__num {
  font-family: var(--heading-font);
  font-size: 38px; font-weight: 800;
  color: var(--pbc-accent); line-height: 1;
  margin-bottom: 6px;
}
.pbc-prose .pbc-stats-row__label {
  font-size: 14px; color: var(--pbc-text-sub); line-height: 1.4;
  margin: 0;
}
@media (max-width: 640px) {
  .pbc-prose .pbc-stats-row { grid-template-columns: 1fr; gap: 14px; }
}

/* Callout — highlighted aside inside body content */
.pbc-prose .pbc-callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--pbc-accent-soft);
  border: 1px solid var(--pbc-accent-line);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 32px 0;
}
.pbc-prose .pbc-callout__icon {
  flex: 0 0 40px; width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--pbc-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
}
.pbc-prose .pbc-callout p { margin: 0; color: var(--pbc-text); }
.pbc-prose .pbc-callout strong { color: var(--pbc-text); }

/* FAQ accordion using <details> */
.pbc-prose .pbc-faq-block { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
.pbc-prose .pbc-faq-block details {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 10px;
  padding: 0;
  transition: border-color .2s;
}
.pbc-prose .pbc-faq-block details[open] { border-color: var(--pbc-accent-line); }
.pbc-prose .pbc-faq-block summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--heading-font);
  font-size: 19px; font-weight: 700;
  color: var(--pbc-text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pbc-prose .pbc-faq-block summary::-webkit-details-marker { display: none; }
.pbc-prose .pbc-faq-block summary::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: var(--pbc-accent);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pbc-accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.pbc-prose .pbc-faq-block details[open] summary::after { content: '−'; }
.pbc-prose .pbc-faq-block details > p,
.pbc-prose .pbc-faq-block details > div {
  padding: 0 22px 20px;
  color: var(--pbc-text-sub);
  font-size: 16px; line-height: 1.7;
  margin: 0;
}

/* Two-column key-points grid */
.pbc-prose .pbc-key-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 28px 0;
}
.pbc-prose .pbc-key-grid__item {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.pbc-prose .pbc-key-grid__num {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 13px; font-weight: 800;
  color: var(--pbc-accent);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pbc-prose .pbc-key-grid__title {
  font-family: var(--heading-font);
  font-size: 20px; font-weight: 700;
  color: var(--pbc-text);
  margin: 0 0 8px;
}
.pbc-prose .pbc-key-grid__desc {
  font-size: 15px; color: var(--pbc-text-sub); line-height: 1.6; margin: 0;
}
@media (max-width: 640px) {
  .pbc-prose .pbc-key-grid { grid-template-columns: 1fr; }
}

/* Inline CTA card at the end of body content */
.pbc-prose .pbc-inline-cta {
  background: linear-gradient(135deg, var(--pbc-accent-soft) 0%, transparent 100%);
  border: 1.5px solid var(--pbc-accent-line);
  border-radius: 14px;
  padding: 32px 28px;
  margin: 40px 0 0;
  text-align: center;
}
.pbc-prose .pbc-inline-cta h3 {
  font-family: var(--heading-font);
  font-size: 26px; font-weight: 700;
  color: var(--pbc-text);
  margin: 0 0 8px;
}
.pbc-prose .pbc-inline-cta p {
  color: var(--pbc-text-sub);
  margin: 0 0 18px;
}
.pbc-prose .pbc-inline-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pbc-accent); color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s, transform .2s;
}
.pbc-prose .pbc-inline-cta a:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* Generic page wrapper around a CPT single */
.pbc-page-body { padding: 72px 24px 96px; }
.pbc-page-body__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px; gap: 56px;
}
.pbc-page-side {
  position: sticky; top: 96px; align-self: start;
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  border-radius: 12px; padding: 28px 24px;
}
.pbc-page-side h4 {
  font-family: var(--heading-font); font-size: 20px; font-weight: 700;
  color: var(--pbc-text); margin-bottom: 16px;
}
.pbc-page-side ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pbc-page-side li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--pbc-text); font-size: 15px; font-weight: 500;
  transition: background .15s, color .15s;
}
.pbc-page-side li a:hover, .pbc-page-side li a.is-active {
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
}

/* CPT archive grid */
.pbc-archive { padding: 0 24px 96px; }
.pbc-archive__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pbc-archive-card {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 12px; padding: 32px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pbc-archive-card:hover { border-color: var(--pbc-accent); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(41,171,226,0.10); }
.pbc-archive-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pbc-archive-card__sub { font-size: 11px; color: var(--pbc-accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.pbc-archive-card__title { font-family: var(--heading-font); font-size: 24px; font-weight: 700; color: var(--pbc-text); margin-bottom: 10px; }
.pbc-archive-card__desc { font-size: 14px; color: var(--pbc-text-sub); line-height: 1.6; }
.pbc-archive-card__more { margin-top: 16px; color: var(--pbc-accent); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* City archive — 4-col compact */
.pbc-cities-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pbc-city-card {
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  border-radius: 10px; padding: 18px 20px;
  display: flex; align-items: center; gap: 10px;
  color: var(--pbc-text); font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}
.pbc-city-card:hover { border-color: var(--pbc-accent); color: var(--pbc-accent); background: var(--pbc-accent-soft); }

@media (max-width: 960px) {
  .pbc-page-body__grid { grid-template-columns: 1fr; gap: 32px; }
  .pbc-page-side { position: static; }
  .pbc-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .pbc-cities-grid { grid-template-columns: repeat(3, 1fr); }
  .pbc-page-hero__split { grid-template-columns: 1fr; gap: 36px; }
  .pbc-page-hero--has-image { padding: 130px 24px 64px; text-align: center; }
  .pbc-page-hero--has-image .pbc-page-hero__intro { margin: 0 auto; }
  .pbc-page-hero__img { height: 300px; }
}
@media (max-width: 640px) {
  .pbc-page-hero { padding: 130px 18px 64px; }
  .pbc-page-hero--has-image { padding: 110px 18px 48px; }
  .pbc-page-hero__img { height: 220px; border-radius: 12px; }
  .pbc-archive__grid { grid-template-columns: 1fr; }
  .pbc-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Blog — category filter, improved cards
   ========================================================================== */

.pbc-cat-filter {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.pbc-cat-filter__btn {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--pbc-border);
  background: transparent; color: var(--pbc-text-sub);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.pbc-cat-filter__btn:hover,
.pbc-cat-filter__btn.is-active {
  background: var(--pbc-accent); border-color: var(--pbc-accent); color: #fff;
}

/* Improved blog cards */
.pbc-blog-card {
  display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden;
  background: var(--pbc-bg-card);
  border: 1.5px solid var(--pbc-border);
  text-decoration: none; color: inherit;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pbc-blog-card:hover {
  border-color: var(--pbc-accent);
  box-shadow: 0 12px 40px rgba(41,171,226,0.10);
  transform: translateY(-3px);
}
.pbc-blog-card__thumb {
  width: 100%; height: 210px; object-fit: cover; display: block;
  background: var(--pbc-bg-alt);
}
.pbc-blog-card__body {
  padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 10px;
}
.pbc-blog-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pbc-blog-card__tag, .pbc-blog-card__tags span {
  display: inline-block;
  padding: 3px 10px; border-radius: 50px;
  background: var(--pbc-accent-soft); color: var(--pbc-accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.pbc-blog-card__title {
  font-family: var(--heading-font); font-size: 18px; font-weight: 700;
  color: var(--pbc-text); line-height: 1.35; margin: 0;
}
.pbc-blog-card__excerpt {
  font-size: 14px; color: var(--pbc-text-sub); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin: 0;
}
.pbc-blog-card__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--pbc-text-sub); margin-top: auto;
}
.pbc-blog-card__read-more {
  color: var(--pbc-accent); font-size: 13px; font-weight: 600; margin-top: 4px;
}

/* ==========================================================================
   Blog post — hero, layout, sidebar, tags, nav
   ========================================================================== */

.pbc-post-hero {
  position: relative;
  padding: 160px 24px 80px;
  background: var(--pbc-bg-alt);
  text-align: center;
}
.pbc-post-hero--has-img {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.pbc-post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.72) 100%);
}
.pbc-post-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.pbc-post-hero__cats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px;
}
.pbc-post-hero__cat {
  padding: 5px 14px; border-radius: 50px;
  background: var(--pbc-accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: filter .2s;
}
.pbc-post-hero__cat:hover { filter: brightness(1.15); }
.pbc-post-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(28px, 5vw, 50px); font-weight: 800; line-height: 1.1;
  margin: 0 0 24px; letter-spacing: -0.01em;
}
.pbc-post-hero--has-img .pbc-post-hero__title { color: #fff; }
.pbc-post-hero:not(.pbc-post-hero--has-img) .pbc-post-hero__title { color: var(--pbc-text); }
.pbc-post-hero__meta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px;
  font-size: 14px;
}
.pbc-post-hero--has-img .pbc-post-hero__meta { color: rgba(255,255,255,0.85); }
.pbc-post-hero:not(.pbc-post-hero--has-img) .pbc-post-hero__meta { color: var(--pbc-text-sub); }
.pbc-post-hero__avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.35);
}
.pbc-post-hero__dot { opacity: 0.5; }

/* Post two-column layout */
.pbc-post-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; padding: 64px 24px 80px;
}

/* Post content */
.pbc-post-content { color: var(--pbc-text); font-size: 17px; line-height: 1.75; min-width: 0; }
.pbc-post-content h2 {
  font-family: var(--heading-font); font-size: clamp(22px, 4vw, 32px); font-weight: 700;
  margin: 44px 0 16px; color: var(--pbc-text);
}
.pbc-post-content h3 {
  font-family: var(--heading-font); font-size: clamp(18px, 3vw, 24px); font-weight: 700;
  margin: 36px 0 12px; color: var(--pbc-text);
}
.pbc-post-content p, .pbc-post-content ul, .pbc-post-content ol { margin-bottom: 20px; }
.pbc-post-content ul, .pbc-post-content ol { padding-left: 24px; }
.pbc-post-content li { margin-bottom: 8px; }
.pbc-post-content a { color: var(--pbc-accent); text-decoration: underline; }
.pbc-post-content blockquote {
  border-left: 4px solid var(--pbc-accent); padding: 12px 0 12px 24px;
  margin: 28px 0; font-style: italic; color: var(--pbc-text-sub);
  background: var(--pbc-accent-soft); border-radius: 0 8px 8px 0;
}
.pbc-post-content code { background: var(--pbc-bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }
.pbc-post-content pre { background: var(--pbc-bg-alt); padding: 20px 24px; border-radius: 10px; overflow-x: auto; }
.pbc-post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 28px 0; display: block; }
.pbc-post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.pbc-post-content td, .pbc-post-content th { border: 1px solid var(--pbc-border); padding: 10px 14px; font-size: 15px; }
.pbc-post-content th { background: var(--pbc-bg-alt); font-weight: 700; }

/* Post tags */
.pbc-post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--pbc-border);
}
.pbc-post-tag {
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--pbc-border);
  color: var(--pbc-text-sub); font-size: 13px;
  text-decoration: none; transition: all .2s;
}
.pbc-post-tag:hover { border-color: var(--pbc-accent); color: var(--pbc-accent); background: var(--pbc-accent-soft); }

/* Prev/next post navigation */
.pbc-post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.pbc-post-nav__item {
  padding: 20px 24px; border-radius: 12px;
  border: 1.5px solid var(--pbc-border);
  background: var(--pbc-bg-card);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s;
}
.pbc-post-nav__item:hover { border-color: var(--pbc-accent); }
.pbc-post-nav__item--next { text-align: right; }
.pbc-post-nav__label { font-size: 12px; color: var(--pbc-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.pbc-post-nav__title a { color: var(--pbc-text); font-weight: 600; font-size: 15px; line-height: 1.4; text-decoration: none; }
.pbc-post-nav__title a:hover { color: var(--pbc-accent); }

/* Post sidebar */
.pbc-post-sidebar { display: flex; flex-direction: column; gap: 24px; align-self: start; position: sticky; top: 96px; }
.pbc-post-widget {
  background: var(--pbc-bg-card); border: 1.5px solid var(--pbc-border);
  border-radius: 14px; padding: 24px;
}
.pbc-post-widget__title {
  font-family: var(--heading-font); font-size: 17px; font-weight: 700;
  color: var(--pbc-text); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--pbc-border);
}
.pbc-post-widget--cta { background: var(--pbc-accent-soft); border-color: var(--pbc-accent-line, var(--pbc-accent)); }
.pbc-post-widget--cta p { font-size: 14px; color: var(--pbc-text-sub); line-height: 1.6; margin: 0; }
.pbc-post-widget__cats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pbc-post-widget__cats li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 8px;
  color: var(--pbc-text-sub); font-size: 14px;
  text-decoration: none; transition: background .15s, color .15s;
}
.pbc-post-widget__cats li a:hover { background: var(--pbc-accent-soft); color: var(--pbc-accent); }

/* Related posts */
.pbc-related-post {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--pbc-border);
  text-decoration: none; color: inherit;
}
.pbc-related-post:last-child { border-bottom: none; }
.pbc-related-post:hover .pbc-related-post__title { color: var(--pbc-accent); }
.pbc-related-post__thumb { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.pbc-related-post__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pbc-related-post__title {
  font-size: 14px; font-weight: 600; color: var(--pbc-text); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.pbc-related-post__date { font-size: 12px; color: var(--pbc-text-sub); }

/* Blog responsive */
@media (max-width: 960px) {
  .pbc-post-wrap { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 64px; }
  .pbc-post-sidebar { position: static; }
  .pbc-post-nav { grid-template-columns: 1fr; }
  .pbc-post-nav__item--next { text-align: left; }
}
@media (max-width: 640px) {
  .pbc-post-hero { padding: 110px 18px 60px; }
  .pbc-post-wrap { padding: 36px 18px 52px; }
  .pbc-post-content { font-size: 16px; }
  .pbc-cat-filter { gap: 6px; margin-bottom: 28px; }
  .pbc-cat-filter__btn { padding: 6px 14px; font-size: 13px; }
}

/* ===== TEAM ===== */
.pbc-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.pbc-team-card {
  background: var(--pbc-bg-card);
  border: 1px solid var(--pbc-border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
.pbc-team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--pbc-bg-card), var(--pbc-bg-card)) padding-box,
              linear-gradient(135deg, var(--pbc-accent), transparent 60%) border-box;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.pbc-team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,.32); }
.pbc-team-card:hover::after { opacity: 1; }

/* ---- top accent strip ---- */
.pbc-team-card__top {
  position: relative;
  padding: 40px 20px 20px;
  background: linear-gradient(160deg, var(--pbc-accent-soft) 0%, transparent 70%);
  border-bottom: 1px solid var(--pbc-border);
  overflow: hidden;
}
.pbc-team-card__orb {
  position: absolute;
  border-radius: 50%;
  background: var(--pbc-accent);
  opacity: .08;
  pointer-events: none;
}
.pbc-team-card__orb--1 { width: 80px; height: 80px; top: -24px; right: -20px; }
.pbc-team-card__orb--2 { width: 48px; height: 48px; bottom: -10px; left: -10px; }

/* ---- icon-only mode (no photo) ---- */
.pbc-team-card__icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 28px var(--pbc-accent-line);
  position: relative; z-index: 1;
  transition: transform .28s ease, box-shadow .28s ease;
}
.pbc-team-card:hover .pbc-team-card__icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 12px 36px var(--pbc-accent-line);
}
.pbc-team-card__initials {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pbc-text-sub);
}

/* ---- photo mode ---- */
.pbc-team-card__photo-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid var(--pbc-accent);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  position: relative; z-index: 1;
}
.pbc-team-card__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pbc-team-card__icon-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pbc-accent);
  display: flex; align-items: center; justify-content: center;
  margin: -17px auto 0;
  border: 2px solid var(--pbc-bg-card);
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px var(--pbc-accent-line);
}

/* ---- card body ---- */
.pbc-team-card__body { padding: 20px 20px 28px; }
.pbc-team-card__name {
  font-family: var(--heading-font);
  font-size: 20px; font-weight: 700;
  color: var(--pbc-text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pbc-team-card__role {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--pbc-accent);
  margin-bottom: 12px;
}
.pbc-team-card__role-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pbc-accent);
  display: inline-block;
  animation: pbc-team-pulse 2s ease-in-out infinite;
}
@keyframes pbc-team-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.pbc-team-card__bio {
  font-size: 14px; color: var(--pbc-text-sub);
  line-height: 1.65; margin-top: 4px;
}

@media (max-width: 1100px) {
  .pbc-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pbc-team__grid { grid-template-columns: 1fr; gap: 18px; }
}
