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

:root {
  --blue: #2bbfb8;
  --blue-dark: #1e9e97;
  --blue-light: #e0f7f6;
  --teal: #2bbfb8;
  --teal-light: #e0f7f6;
  --coral: #f4a438;
  --coral-light: #fef0d4;
  --yellow: #ffcb47;
  --yellow-light: #fff8e7;
  --green: #3bc98a;
  --green-light: #e6faf3;
  --purple: #e05555;
  --purple-light: #feecec;
  --ink: #1d3040;
  --slate: #4a5568;
  --mist: #8896a8;
  --border: #c8eae8;
  --cream: #f0faf9;
  --white: #ffffff;
  --mint-bg: #f2fbf9;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--mint-bg);
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

a {
  text-underline-offset: 0.15em;
}

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wp-site-blocks > main {
  flex: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(43, 191, 184, 0.35);
  margin: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 6px 20px rgba(244, 164, 56, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 164, 56, 0.45);
  color: var(--ink);
}

/* Hero */
.zb-hero.hero {
  background: linear-gradient(160deg, #e0f7f4 0%, #f0faf9 50%, #fff6e4 100%);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  margin-block-start: 0;
  margin-block-end: 0;
  --wp--style--block-gap: 0;
}

.zb-hero .container,
.zb-hero .hero-inner,
.zb-hero .hero-content,
.zb-hero .hero-stats,
.zb-hero .stat {
  --wp--style--block-gap: 0;
}

.zb-hero.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(62, 123, 250, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.zb-hero.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43, 191, 184, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.zb-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zb-hero__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.zb-hero__blob--1 {
  top: -40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 40% 40%, #e05555, #c43030);
  opacity: 0.7;
  filter: blur(1px);
}

.zb-hero__blob--2 {
  top: 60px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 40%, #f4a438, #d4831a);
  opacity: 0.6;
}

.zb-hero__blob--3 {
  bottom: 40px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 40%, #2bbfb8, #1e9e97);
  opacity: 0.5;
}

.zb-hero__blob--4 {
  bottom: 20px;
  right: 120px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 40% 40%, #7baa3c, #5a8c28);
  opacity: 0.5;
}

.zb-hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.zb-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zb-hero .hero-content > h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin: 18px 0 20px;
}

.zb-hero .hero-content > h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2bbfb8, #f4a438);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zb-hero .hero-content > p:not(.pill) {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.zb-hero .hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.zb-hero .btn-primary,
.zb-hero .btn-ghost {
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}

.zb-hero .btn-primary {
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  border: none;
  padding: 15px 34px;
  box-shadow: 0 6px 20px rgba(62, 123, 250, 0.4);
}

.zb-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(62, 123, 250, 0.45);
  color: var(--ink);
}

.zb-hero .btn-ghost {
  background: white;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.zb-hero .btn-ghost::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--blue);
}

.zb-hero .btn-ghost:hover {
  background: var(--blue-light);
  color: var(--teal);
}

.zb-hero .hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.zb-hero .stat {
  display: flex;
  flex-direction: column;
}

.zb-hero .stat-num {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
}

.zb-hero .stat-label {
  display: block;
  font-size: 12px;
  color: var(--mist);
  font-weight: 500;
  margin-top: 2px;
}

.zb-hero .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.zb-hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 60px;
}

.zb-hero .dashboard-card {
  background: white;
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(30, 50, 100, 0.14),
    0 4px 16px rgba(30, 50, 100, 0.06);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.zb-hero .dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.zb-hero .dc-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.zb-hero .dc-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.zb-hero .student-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.zb-hero .student-row:last-of-type {
  border-bottom: none;
}

.zb-hero .ava {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.zb-hero .ava.b {
  background: linear-gradient(135deg, #3e7bfa, #7c5cfc);
}

.zb-hero .ava.g {
  background: linear-gradient(135deg, #2bbfb8, #3bc98a);
}

.zb-hero .ava.o {
  background: linear-gradient(135deg, #ffcb47, #f9624e);
}

.zb-hero .ava.p {
  background: linear-gradient(135deg, #7c5cfc, #f9624e);
}

.zb-hero .sr-info {
  flex: 1;
}

.zb-hero .sr-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.zb-hero .sr-sub {
  font-size: 11px;
  color: var(--mist);
  margin-top: 1px;
}

.zb-hero .prog-wrap {
  flex: 1;
  max-width: 100px;
}

.zb-hero .prog-bar-bg {
  background: var(--border);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.zb-hero .prog-bar {
  height: 6px;
  border-radius: 100px;
}

.zb-hero .prog-bar--82 {
  width: 82%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.zb-hero .prog-bar--65 {
  width: 65%;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.zb-hero .prog-bar--91 {
  width: 91%;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.zb-hero .prog-bar--47 {
  width: 47%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
}

.zb-hero .prog-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 3px;
  text-align: right;
}

.zb-hero .floating-chip {
  position: absolute;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(30, 50, 100, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  animation: zb-float 4s ease-in-out infinite;
  z-index: 3;
}

.zb-hero .floating-chip.chip1 {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.zb-hero .floating-chip.chip2 {
  bottom: 80px;
  left: -24px;
  animation-delay: 1.5s;
}

.zb-hero .chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.zb-hero .chip-icon--success {
  background: var(--green-light);
}

.zb-hero .chip-icon--lang {
  background: var(--yellow-light);
}

.zb-hero .chip-title {
  font-size: 12px;
  color: var(--mist);
  font-weight: 600;
}

.zb-hero .chip-sub {
  font-size: 12px;
  color: var(--mist);
  font-weight: 600;
}

.zb-hero .dc-footer {
  margin-top: 20px;
  padding: 14px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zb-hero .dc-footer-icon {
  font-size: 22px;
}

.zb-hero .dc-footer-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--blue);
}

.zb-hero .dc-footer-sub {
  font-size: 12px;
  color: var(--mist);
}

.zb-hero .dc-export {
  margin-left: auto;
  background: var(--blue);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

@keyframes zb-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Header */
.zb-site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(240, 250, 249, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.zb-logo--header {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.zb-logo--footer img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 13px;
  border-radius: 8px;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}

.nav-cta-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  transition: 0.2s;
}

.lang-dropdown-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.lang-dropdown-btn svg {
  transition: 0.2s;
}

.lang-dropdown-btn.open svg:last-child {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(30, 50, 100, 0.12);
  overflow: hidden;
  display: none;
  z-index: 300;
}

.lang-dropdown-menu.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
}

.lang-option:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.lang-option.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
}

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(244, 164, 56, 0.4);
  transition: 0.2s;
  text-decoration: none;
}

.btn-nav:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Footer */
.zb-site-footer {
  background: #152430;
  color: white;
  padding: 64px 0 36px;
  margin-top: 0;
}

.zb-site-footer .footer-grid {
  margin-bottom: 52px;
}

.zb-site-footer .footer-grid.wp-block-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.zb-site-footer .footer-grid > .wp-block-column {
  flex-basis: auto !important;
  flex-grow: 0 !important;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 220px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.2s;
  cursor: pointer;
}

.soc-btn:hover {
  background: rgba(62, 123, 250, 0.3);
}

.zb-site-footer h5,
.zb-site-footer .wp-block-heading {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links,
.footer-bottom-links {
  margin: 0;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom.wp-block-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Quick Facts (zakibrain/quick-facts) */
.zb-quick-facts.quick-facts {
  padding: 80px 0;
  background: var(--mint-bg);
}

.zb-quick-facts .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-quick-facts .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-quick-facts .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.zb-quick-facts .sec-head .pill a {
  color: inherit;
  text-decoration: none;
}

.zb-quick-facts .sec-head .pill a:hover {
  text-decoration: underline;
}

.zb-quick-facts__link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.zb-quick-facts__link:hover {
  color: var(--blue-dark);
}

.zb-quick-facts .facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zb-quick-facts .fact-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.3s;
}

.zb-quick-facts .fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(62, 123, 250, 0.1);
}

.zb-quick-facts .fact-card__icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}

.zb-quick-facts .fact-card__value {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  margin-bottom: 6px;
}

.zb-quick-facts .fact-card__value--blue {
  font-size: 28px;
  color: var(--blue);
}

.zb-quick-facts .fact-card__value--teal {
  font-size: 28px;
  color: var(--teal);
}

.zb-quick-facts .fact-card__value--coral {
  font-size: 28px;
  color: var(--coral);
}

.zb-quick-facts .fact-card__value--green {
  font-size: 20px;
  color: var(--green);
}

.zb-quick-facts .fact-card__value--blue-md {
  font-size: 20px;
  color: var(--blue);
}

.zb-quick-facts .fact-card__value--teal-md {
  font-size: 20px;
  color: var(--teal);
}

.zb-quick-facts .fact-card__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* Problem & Solution (zakibrain/problem-solution) */
.zb-problem-solution.problem-solution {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.zb-problem-solution .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-problem-solution .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-problem-solution .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.zb-problem-solution .ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}

.zb-problem-solution .ps-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.zb-problem-solution .ps-card.problem {
  border-top: 4px solid var(--coral);
}

.zb-problem-solution .ps-card.solution {
  border-top: 4px solid var(--green);
}

.zb-problem-solution .ps-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.zb-problem-solution .ps-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.zb-problem-solution .problem .ps-icon {
  background: var(--coral-light);
}

.zb-problem-solution .solution .ps-icon {
  background: var(--green-light);
}

.zb-problem-solution .ps-card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 22px;
}

.zb-problem-solution .problem h3 {
  color: var(--coral);
}

.zb-problem-solution .solution h3 {
  color: var(--green);
}

.zb-problem-solution .ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.zb-problem-solution .ps-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.zb-problem-solution .problem .ps-dot {
  background: var(--coral-light);
  color: var(--coral);
}

.zb-problem-solution .solution .ps-dot {
  background: var(--green-light);
  color: var(--green);
}

/* Platform Features (zakibrain/features) */
.zb-features.features {
  padding: 90px 0;
  background: white;
  border-radius: 32px;
  margin: 0 16px;
}

.zb-features .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-features .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-features .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.zb-features .zb-features__pill {
  background: var(--purple-light);
  color: var(--purple);
  box-shadow: none;
}

.zb-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.zb-features .feature-card {
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.zb-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 50, 100, 0.1);
  border-color: var(--blue);
}

.zb-features .fc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.zb-features .feature-card:nth-child(1) .fc-icon {
  background: var(--blue-light);
}

.zb-features .feature-card:nth-child(2) .fc-icon {
  background: var(--teal-light);
}

.zb-features .feature-card:nth-child(3) .fc-icon {
  background: var(--purple-light);
}

.zb-features .feature-card:nth-child(4) .fc-icon {
  background: var(--yellow-light);
}

.zb-features .feature-card:nth-child(5) .fc-icon {
  background: var(--coral-light);
}

.zb-features .feature-card:nth-child(6) .fc-icon {
  background: var(--green-light);
}

.zb-features .feature-card h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
}

.zb-features .feature-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

/* Testimonials (zakibrain/testimonials) */
.zb-testimonials.testimonials {
  padding: 80px 0;
  background: linear-gradient(160deg, #e0f7f4, #f0faf9);
}

.zb-testimonials .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-testimonials .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-testimonials .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.zb-testimonials .zb-testimonials__pill {
  background: rgba(43, 191, 184, 0.15);
  color: var(--teal);
  box-shadow: none;
}

.zb-testimonials .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.zb-testimonials .video-card {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(43, 191, 184, 0.1);
  transition: 0.3s;
}

.zb-testimonials .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(43, 191, 184, 0.2);
}

.zb-testimonials .zb-testimonials__card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zb-testimonials .zb-testimonials__quote-mark {
  font-size: 48px;
  color: var(--teal);
  font-family: Georgia, serif;
  line-height: 1;
}

.zb-testimonials .zb-testimonials__quote {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: -20px 0 0;
}

.zb-testimonials .zb-testimonials__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.zb-testimonials .zb-testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 15px;
  flex-shrink: 0;
}

.zb-testimonials .zb-testimonials__card:nth-child(1) .zb-testimonials__avatar {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.zb-testimonials .zb-testimonials__card:nth-child(2) .zb-testimonials__avatar {
  background: linear-gradient(135deg, #1a4c9e, var(--teal));
}

.zb-testimonials .zb-testimonials__card:nth-child(3) .zb-testimonials__avatar {
  background: linear-gradient(135deg, #3db87a, var(--teal));
}

.zb-testimonials .zb-testimonials__name {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.zb-testimonials .zb-testimonials__role {
  font-size: 12px;
  color: var(--mist);
}

.zb-testimonials .zb-testimonials__rating {
  margin-left: auto;
}

/* Pricing (zakibrain/pricing) */
.zb-pricing.pricing {
  padding: 90px 0;
  background: white;
}

.zb-pricing .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-pricing .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-pricing .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.zb-pricing .zb-pricing__pill {
  background: var(--yellow-light);
  color: #c47c00;
  box-shadow: none;
}

.zb-pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  align-items: start;
}

.zb-pricing .price-card {
  border-radius: var(--r);
  padding: 40px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  background: white;
}

.zb-pricing .price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #ebf4ff 0%, white 60%);
  box-shadow: 0 16px 48px rgba(62, 123, 250, 0.15);
}

.zb-pricing .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
}

.zb-pricing .price-card:hover:not(.featured) {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(62, 123, 250, 0.1);
}

.zb-pricing .price-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.zb-pricing .price-type {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

.zb-pricing .price-amount {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  margin: 16px 0;
  line-height: 1;
  padding-top: 8px;
}

.zb-pricing .price-amount span,
.zb-pricing .zb-pricing__amount span {
  font-size: 18px;
  color: var(--mist);
  font-weight: 500;
}

.zb-pricing .zb-pricing__amount--large {
  font-size: 36px;
  padding-top: 8px;
}

.zb-pricing .zb-pricing__billing-note {
  font-size: 12px;
  color: var(--mist);
  margin-top: -12px;
  margin-bottom: 16px;
}

.zb-pricing .zb-pricing__amount--large + .zb-pricing__billing-note {
  margin-top: -4px;
}

.zb-pricing .zb-pricing__plan-footnote {
  font-size: 12px;
  color: var(--mist);
  margin-top: 10px;
  margin-bottom: 0;
}

.zb-pricing .zb-pricing__footer-note {
  text-align: center;
  font-size: 14px;
  color: var(--mist);
  margin-top: 32px;
  margin-bottom: 0;
}

.zb-pricing--page.pricing {
  padding: 80px 0;
  background: var(--mint-bg);
}

.zb-pricing--page .pricing-grid {
  margin-top: 0;
}

.zb-pricing .pf-x,
.zb-pricing .zb-pricing__feat-x {
  width: 22px;
  height: 22px;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--coral);
}

.zb-pricing .zb-pricing__feat--excluded .zb-pricing__feat-text {
  color: var(--mist);
}

.zb-pricing .price-desc {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 28px;
}

.zb-pricing .price-feats {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zb-pricing .pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
}

.zb-pricing .pf-dot {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--green);
}

.zb-pricing .zb-pricing__feat-text a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.zb-pricing .zb-pricing__feat-text a:hover {
  text-decoration: underline;
}

.zb-pricing .price-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  border: none;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
}

.zb-pricing .price-btn.main {
  background: linear-gradient(135deg, #2bbfb8, #f4a438);
  color: white;
  box-shadow: 0 6px 20px rgba(43, 191, 184, 0.35);
}

.zb-pricing .price-btn.main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(62, 123, 250, 0.4);
}

.zb-pricing .price-btn.outline {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.zb-pricing .price-btn.outline:hover {
  background: var(--blue-light);
}

/* Pricing Add-Ons (zakibrain/pricing-addons) */
.zb-pricing-addons.section {
  padding: 80px 0;
  background: white;
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-pricing-addons .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-pricing-addons .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-pricing-addons .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.zb-pricing-addons .zb-pricing-addons__pill {
  background: var(--yellow-light);
  color: #c47c00;
  box-shadow: none;
}

.zb-pricing-addons__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.zb-pricing-addons__card,
.zb-pricing-addons .addon-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.zb-pricing-addons__icon,
.zb-pricing-addons .addon-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.zb-pricing-addons__content {
  flex: 1;
  min-width: 0;
}

.zb-pricing-addons__content h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--ink);
}

.zb-pricing-addons__content p {
  font-size: 13px;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

.zb-pricing-addons__price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.zb-pricing-addons__price {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--blue);
}

.zb-pricing-addons__price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
}

.zb-pricing-addons__unit {
  font-size: 11px;
  color: var(--mist);
}

/* FAQ (zakibrain/faq) */
.zb-faq.section {
  padding: 80px 0;
  background: var(--cream);
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-faq .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-faq .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-faq .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.zb-faq .zb-faq__pill {
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: none;
}

.zb-faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.zb-faq__item,
.zb-faq .faq-item {
  background: white;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

.zb-faq__question,
.zb-faq .faq-q {
  padding: 20px 24px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.zb-faq__answer,
.zb-faq .faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* CTA Band (zakibrain/cta-band) */
.zb-cta-band.cta-band {
  padding: 90px 0;
  background: linear-gradient(135deg, #2bbfb8 0%, #1e9e97 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.zb-cta-band.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.zb-cta-band.cta-band::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.zb-cta-band h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.zb-cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.zb-cta-band .cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.zb-cta-band .btn-white {
  display: inline-block;
  background: white;
  color: var(--blue);
  border: none;
  padding: 15px 36px;
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
  text-decoration: none;
}

.zb-cta-band .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.zb-cta-band .btn-woutline {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 13px 30px;
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.zb-cta-band .btn-woutline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Page Hero (inner pages) */
.zb-page-hero.page-hero {
  background: linear-gradient(160deg, #e0f7f4 0%, #f0faf9 50%, #fff6e4 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-page-hero--compact-bottom.page-hero {
  padding-bottom: 0;
}

.zb-page-hero.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(43, 191, 184, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.zb-page-hero__blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.zb-page-hero__blob--teal {
  top: -40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 40% 40%, #2bbfb8, #1e9e97);
}

.zb-page-hero__blob--coral {
  top: 60px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 40%, #f4a438, #d4831a);
}

.zb-page-hero .container {
  position: relative;
  z-index: 1;
}

.zb-page-hero .page-hero-inner {
  text-align: center;
}

.zb-page-hero h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin: 18px 0 16px;
}

.zb-page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2bbfb8, #f4a438);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zb-page-hero .page-hero-inner > p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 32px;
}

.zb-page-hero__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.zb-page-hero .btn-primary,
.zb-page-hero .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
}

.zb-page-hero .btn-primary {
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  border: none;
  padding: 15px 34px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(244, 164, 56, 0.35);
}

.zb-page-hero .btn-primary:hover {
  transform: translateY(-2px);
}

.zb-page-hero .btn-ghost {
  background: white;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 13px 28px;
  border-radius: 100px;
}

.zb-page-hero .btn-ghost:hover {
  background: var(--blue-light);
}

.zb-page-hero__billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.zb-page-hero__billing-label {
  font-size: 14px;
  color: var(--slate);
  font-weight: 600;
}

.zb-page-hero__billing-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
}

.zb-page-hero__billing-muted {
  font-size: 14px;
  color: var(--mist);
}

/* Shared section utilities (about page) */
.zb-expert-team.section,
.zb-mission-vision.section,
.zb-value-cards.section {
  padding: 80px 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-expert-team.section-mint,
.zb-value-cards.section-mint {
  background: var(--mint-bg);
}

.zb-mission-vision.section-white,
.zb-value-cards.section-white {
  background: white;
}

.zb-value-cards.section-alt {
  background: var(--cream);
}

.zb-expert-team .sec-head,
.zb-mission-vision .sec-head,
.zb-value-cards .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-expert-team .sec-head h2,
.zb-mission-vision .sec-head h2,
.zb-value-cards .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-expert-team .sec-head p,
.zb-mission-vision .sec-head p,
.zb-value-cards .sec-head p {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.zb-value-cards .pill--purple {
  background: var(--purple-light);
  color: var(--purple);
  box-shadow: none;
}

.pill--blue,
.zb-value-cards .pill--blue,
.zb-stat-strip .pill--blue {
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: none;
}

/* Expert Team */
.zb-expert-team__grid {
  display: grid;
  gap: 28px;
}

.zb-expert-team__card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
}

.zb-expert-team__photo {
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(30, 50, 100, 0.12);
}

.zb-expert-team__name {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 4px;
}

.zb-expert-team__affiliation {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 12px;
}

.zb-expert-team__bio {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 8px;
}

.zb-expert-team__email {
  color: var(--blue);
  font-size: 13px;
  text-decoration: none;
}

.zb-expert-team__email:hover {
  text-decoration: underline;
}

/* Mission & Vision */
.zb-mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.zb-mission-vision__card {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid var(--border);
}

.zb-mission-vision__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.zb-mission-vision__card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 10px;
}

.zb-mission-vision__card p {
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

/* Value Cards */
.zb-value-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zb-value-cards__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.zb-value-cards__card--cream {
  background: var(--cream);
  padding: 26px;
}

.zb-value-cards--surface-cream .zb-value-cards__icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.zb-value-cards__title--compact {
  font-size: 17px;
  margin-bottom: 8px;
}

.zb-value-cards__card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: 0.3s;
}

.zb-value-cards--accent .zb-value-cards__card {
  padding: 36px 30px;
}

.zb-value-cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 50, 100, 0.1);
  border-color: var(--blue);
}

.zb-value-cards__icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.zb-value-cards--accent .zb-value-cards__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.zb-value-cards__title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
}

.zb-value-cards--simple .zb-value-cards__title {
  font-size: inherit;
  margin-bottom: 8px;
}

.zb-value-cards__card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

.zb-value-cards__link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.zb-value-cards__link:hover {
  text-decoration-style: solid;
}

.zb-value-cards__card--accent-blue {
  border-top: 4px solid var(--blue);
}

.zb-value-cards__card--accent-green {
  border-top: 4px solid var(--green);
}

.zb-value-cards__card--accent-coral {
  border-top: 4px solid var(--coral);
}

.zb-value-cards__card--accent-teal {
  border-top: 4px solid var(--teal);
}

.zb-value-cards__card--accent-yellow {
  border-top: 4px solid var(--yellow);
}

.zb-value-cards__card--accent-purple {
  border-top: 4px solid var(--purple);
}

/* Stat Strip (zakibrain/stat-strip) */
.zb-stat-strip.section {
  padding: 80px 0;
  background: var(--mint-bg);
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-stat-strip .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-stat-strip .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-stat-strip__grid,
.zb-stat-strip .stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zb-stat-strip__box,
.zb-stat-strip .stat-box {
  background: white;
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: 0.3s;
}

.zb-stat-strip__box:hover,
.zb-stat-strip .stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 50, 100, 0.09);
  border-color: var(--blue);
}

.zb-stat-strip__value,
.zb-stat-strip .stat-box .num {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--blue);
  line-height: 1;
}

.zb-stat-strip__label,
.zb-stat-strip .stat-box .lbl {
  font-size: 13px;
  color: var(--mist);
  font-weight: 600;
  margin-top: 6px;
}

/* Practitioner Quotes (zakibrain/practitioner-quotes) */
.zb-practitioner-quotes.section {
  padding: 80px 0;
  background: var(--cream);
  margin-block-start: 0;
  margin-block-end: 0;
}

.zb-practitioner-quotes .sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.zb-practitioner-quotes .sec-head h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 14px 0 12px;
  color: var(--ink);
}

.zb-practitioner-quotes__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.zb-practitioner-quotes__logo {
  height: 50px;
  width: auto;
}

.zb-practitioner-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zb-practitioner-quotes__card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  border: 1.5px solid var(--border);
}

.zb-practitioner-quotes__quote {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 14px;
}

.zb-practitioner-quotes__role {
  font-size: 12px;
  color: var(--mist);
  font-weight: 700;
}

.zb-practitioner-quotes__card--cta {
  background: var(--blue-light);
  border-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zb-practitioner-quotes__cta-heading {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 16px;
}

.zb-practitioner-quotes__cta-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #f4a438, #ffcb47);
  color: var(--ink);
  border: none;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
  box-sizing: border-box;
}

.zb-practitioner-quotes__cta-btn:hover {
  transform: translateY(-2px);
}

/* Wave presets (about page) — see end of file */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .zb-hero.hero {
    padding: 60px 0 0;
    min-height: auto;
  }

  .zb-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .zb-hero .hero-content > h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .zb-hero .hero-content > p:not(.pill) {
    font-size: 15px;
  }

  .zb-hero .hero-visual {
    padding: 0 0 40px;
  }

  .zb-hero .hero-stats {
    gap: 20px;
  }

  .zb-hero .stat-num {
    font-size: 22px;
  }

  .zb-hero .floating-chip {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(240, 250, 249, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 199;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  .nav-right .lang-dropdown {
    display: none;
  }

  .zb-quick-facts.quick-facts {
    padding: 56px 0;
  }

  .zb-quick-facts .facts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zb-problem-solution.problem-solution {
    padding: 56px 0;
  }

  .zb-problem-solution .ps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zb-problem-solution .sec-head {
    margin-bottom: 36px;
  }

  .zb-problem-solution .sec-head p {
    font-size: 15px;
  }

  .zb-features.features {
    margin: 0 8px;
    padding: 60px 0;
  }

  .zb-features .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zb-testimonials.testimonials {
    padding: 60px 0;
  }

  .zb-testimonials .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .zb-pricing.pricing {
    padding: 60px 0;
  }

  .zb-pricing .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zb-pricing .price-card.featured {
    order: -1;
  }

  .zb-cta-band.cta-band {
    padding: 60px 0;
  }

  .zb-cta-band .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .zb-site-footer .footer-grid.wp-block-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .zb-hero .hero-content > h1 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .zb-hero .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .zb-hero .btn-primary,
  .zb-hero .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .zb-hero .hero-stats {
    gap: 14px;
  }

  .zb-hero .stat-divider {
    display: none;
  }

  .zb-hero .dashboard-card {
    padding: 20px;
  }

  .zb-problem-solution .ps-card {
    padding: 28px 22px;
  }

  .zb-pricing .price-card {
    padding: 32px 24px;
  }

  .zb-site-footer .footer-grid.wp-block-columns {
    grid-template-columns: 1fr;
  }

  .zb-page-hero.page-hero {
    padding: 56px 0 44px;
  }

  .zb-page-hero h1 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .zb-page-hero .page-hero-inner > p {
    font-size: 15px;
  }

  .zb-expert-team__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zb-expert-team__photo {
    margin: 0 auto;
  }

  .zb-mission-vision__grid,
  .zb-value-cards__grid,
  .zb-value-cards__grid--cols-2 {
    grid-template-columns: 1fr;
  }

  .zb-stat-strip__grid,
  .zb-stat-strip .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .zb-practitioner-quotes__grid {
    grid-template-columns: 1fr;
  }

  .zb-expert-team .sec-head,
  .zb-mission-vision .sec-head,
  .zb-value-cards .sec-head {
    margin-bottom: 36px;
  }

  .zb-expert-team .sec-head p,
  .zb-mission-vision .sec-head p,
  .zb-value-cards .sec-head p {
    font-size: 15px;
  }

  .zb-expert-team.section,
  .zb-mission-vision.section,
  .zb-value-cards.section {
    padding: 56px 0;
  }

  .zb-pricing-addons.section,
  .zb-faq.section {
    padding: 56px 0;
  }

  .zb-stat-strip.section,
  .zb-practitioner-quotes.section {
    padding: 56px 0;
  }

  .zb-stat-strip .sec-head,
  .zb-practitioner-quotes .sec-head {
    margin-bottom: 36px;
  }

  .zb-pricing-addons__card,
  .zb-pricing-addons .addon-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .zb-pricing-addons__price-wrap {
    text-align: left;
  }

  .zb-pricing-addons .sec-head,
  .zb-faq .sec-head {
    margin-bottom: 36px;
  }

  .zb-stat-strip__grid,
  .zb-stat-strip .stat-strip {
    grid-template-columns: 1fr;
  }
}

/* Section wave divider (zakibrain/wave) */
.zb-wave.wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.zb-wave.wave svg {
  display: block;
  width: 100%;
}

.zb-wave--hero-to-white {
  background: linear-gradient(160deg, #ebf4ff 0%, #f0fcff 100%);
}

.zb-wave--hero-to-white path {
  fill: var(--white);
}

.zb-wave--mint-to-white {
  background: var(--mint-bg);
}

.zb-wave--mint-to-white path {
  fill: var(--white);
}

.zb-wave--cream-to-white {
  background: var(--cream);
}

.zb-wave--cream-to-white path {
  fill: var(--white);
}

.zb-wave--white-to-teal {
  background: var(--white);
}

.zb-wave--white-to-teal path {
  fill: var(--teal-light);
}

.zb-wave--teal-to-white {
  background: var(--teal-light);
}

.zb-wave--teal-to-white path {
  fill: var(--white);
}

/* Front-end layout: WP blockGap adds unwanted gaps between header, sections, footer */
.wp-site-blocks {
  gap: 0;
}

.wp-site-blocks > header,
.wp-site-blocks > main,
.wp-site-blocks > footer {
  margin-block-start: 0;
  margin-block-end: 0;
}

.entry-content.wp-block-post-content.is-layout-flow > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

