@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* EduNest — design tokens, home page, inner pages, dashboard */

:root {
  --bzn-primary: #feb91c;
  --bzn-primary-dark: #f0a80a;
  --bzn-primary-rgb: 254, 185, 28;
  --bzn-secondary: #0a5240;
  --bzn-secondary-dark: #063d30;
  --bzn-secondary-light: #108568;
  --bzn-secondary-hover: #0e6b52;
  --bzn-secondary-rgb: 10, 82, 64;
  --bzn-secondary-hero: linear-gradient(135deg, var(--bzn-secondary) 0%, var(--bzn-secondary-light) 100%);
  --bzn-primary-bg-soft: rgba(var(--bzn-primary-rgb), 0.07);
  --bzn-primary-bg-light: rgba(var(--bzn-primary-rgb), 0.12);
  --bzn-primary-surface: rgba(var(--bzn-primary-rgb), 0.2);
  --bzn-primary-alpha-50: rgba(var(--bzn-primary-rgb), 0.5);
  --bzn-primary-alpha-56: rgba(var(--bzn-primary-rgb), 0.56);
  --bzn-primary-tint-bg: rgba(var(--bzn-primary-rgb), 0.06);
  --bzn-primary-tint-surface: rgba(var(--bzn-primary-rgb), 0.04);
  --bzn-secondary-bg-soft: rgba(var(--bzn-secondary-rgb), 0.06);
  --bzn-secondary-bg-light: rgba(var(--bzn-secondary-rgb), 0.12);
  --bzn-secondary-bg-muted: rgba(var(--bzn-secondary-rgb), 0.17);
  --bzn-secondary-alpha-27: rgba(var(--bzn-secondary-rgb), 0.27);
  --bzn-secondary-alpha-56: rgba(var(--bzn-secondary-rgb), 0.56);
  --bzn-secondary-hover-bg: rgba(var(--bzn-secondary-rgb), 0.06);

  /* Legacy aliases used across the theme */
  --bzn-yellow: var(--bzn-primary);
  --bzn-yellow-dark: var(--bzn-primary-dark);
  --bzn-green: var(--bzn-secondary);
  --bzn-green-dark: var(--bzn-secondary-dark);
  --bzn-green-light: var(--bzn-secondary-light);
  --bzn-green-hover: var(--bzn-secondary-hover);
  --bzn-green-hero: var(--bzn-secondary-hero);
  --bzn-blue: #2f80ed;
  --bzn-blue-hover: #2563eb;
  --bzn-primary-blue: #0166ff;
  --bzn-black: #0a0a0a;
  --bzn-pure-black: #000000;
  --bzn-text: #0e0e0f;
  --bzn-heading: #0e2a46;
  --bzn-ink: #17254e;
  --bzn-muted: #7f8490;
  --bzn-slate: #4d5756;
  --bzn-charcoal: #333931;
  --bzn-gray: #646466;
  --bzn-white: #ffffff;
  --bzn-border: #e2e1e1;
  --bzn-border-soft: #e8eaed;
  --bzn-wrap: 1140px;
  --bzn-radius-card: 20px;
  --bzn-radius-btn: 100px;
  --bzn-shadow-card: 0 9px 40px rgba(0, 0, 0, 0.12);
  --bzn-purple: #5454d4;
  --bzn-pink: #ff3a6f;
  --bzn-sky: #19b7fd;
  --bzn-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bzn-dark-bg: #0a0a0a;
  --bzn-dark-card: #2e261c;
  --bzn-teal-heading: #c5ebe6;
  --bzn-teal-muted: #9fd4cc;
}

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

html {
  scroll-behavior: smooth;
}

body.bzn-lp-body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bzn-text);
  background: var(--bzn-white);
  overflow-x: hidden;
}

body.bzn-lp-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.bzn-lp-wrap {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  box-sizing: border-box;
}

.bzn-lp-wrap .row {
  margin-left: -12px;
  margin-right: -12px;
}

/* Home: promo bar */
.bzn-lp-topbar {
  background: var(--bzn-yellow);
  position: relative;
  z-index: 1100;
}

.bzn-lp-topbar .bzn-lp-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.bzn-lp-topbar__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-white);
  text-align: center;
}

.bzn-lp-topbar__link {
  font-weight: 600;
  color: var(--bzn-white) !important;
  white-space: nowrap;
}

.bzn-lp-topbar__link:hover {
  text-decoration: underline;
}

.bzn-lp-topbar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 4px;
  line-height: 1;
  cursor: pointer;
  color: var(--bzn-white);
  opacity: 0.85;
}

.bzn-lp-topbar__close:hover {
  opacity: 1;
}

/* Home: site header */
.bzn-lp-header {
  background: var(--bzn-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--bzn-ease);
}

.bzn-lp-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.bzn-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 90px;
}

.bzn-lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bzn-lp-logo img {
  max-width: 170px;
}

.bzn-lp-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bzn-yellow) 0 50%, var(--bzn-green) 50% 100%);
  flex-shrink: 0;
}

.bzn-lp-logo__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--bzn-text);
  letter-spacing: -0.02em;
}

.bzn-lp-nav__list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bzn-lp-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bzn-muted);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 6px;
  transition: color 0.2s var(--bzn-ease), background 0.2s var(--bzn-ease);
}

.bzn-lp-nav__list > li > a:hover,
.bzn-lp-nav__list > li > a.is-active {
  color: var(--bzn-text);
}

.bzn-lp-nav__drop-head {
  display: inline-flex;
  align-items: center;
}

.bzn-lp-nav__drop-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px 8px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bzn-muted);
  border-radius: 6px 0 0 6px;
  transition: color 0.2s var(--bzn-ease);
}

.bzn-lp-nav__drop-link:hover,
.bzn-lp-nav__drop-link.is-active {
  color: var(--bzn-text);
}

.bzn-lp-nav__drop-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 8px 2px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--bzn-muted);
  border-radius: 0 6px 6px 0;
  transition: color 0.2s var(--bzn-ease);
}

.bzn-lp-nav__chev {
  font-size: 14px;
  transition: transform 0.25s var(--bzn-ease);
}

.bzn-lp-nav__dropdown {
  position: relative;
}

.bzn-lp-nav__drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--bzn-white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--bzn-ease), transform 0.25s var(--bzn-ease), visibility 0.25s;
}

@media (min-width: 1200px) {
  /* Invisible bridge so hover is not lost when moving into the dropdown */
  .bzn-lp-nav__dropdown {
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .bzn-lp-nav__dropdown:hover .bzn-lp-nav__drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .bzn-lp-nav__dropdown:hover .bzn-lp-nav__chev {
    transform: rotate(180deg);
  }

  .bzn-lp-nav__dropdown:hover .bzn-lp-nav__drop-link,
  .bzn-lp-nav__dropdown:hover .bzn-lp-nav__drop-chev {
    color: var(--bzn-text);
  }

  .bzn-lp-nav__drop-chev {
    cursor: default;
    pointer-events: none;
  }
}

.bzn-lp-nav__drop-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-muted);
  transition: color 0.2s, background 0.2s;
}

.bzn-lp-nav__drop-menu a:hover {
  color: var(--bzn-green);
  background: rgba(var(--bzn-secondary-rgb), 0.06);
}

.bzn-lp-header__actions {
  align-items: center;
  gap: 20px;
}

.bzn-lp-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-text);
}

.bzn-lp-login:hover {
  color: var(--bzn-green);
}

.bzn-lp-btn-blue {
  background: var(--bzn-blue);
  color: var(--bzn-white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--bzn-radius-btn);
  border: none;
  white-space: nowrap;
  transition: background 0.2s var(--bzn-ease), transform 0.2s var(--bzn-ease);
}

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

.bzn-lp-btn-green {
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--bzn-radius-btn);
  border: none;
  white-space: nowrap;
  transition: background 0.2s var(--bzn-ease), transform 0.2s var(--bzn-ease);
}

.bzn-lp-btn-green:hover {
  background: var(--bzn-green-hover);
  color: var(--bzn-white);
  transform: translateY(-1px);
}

.bzn-lp-burger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.bzn-lp-burger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.bzn-lp-burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bzn-text);
  border-radius: 2px;
  transition: transform 0.35s var(--bzn-ease), opacity 0.25s, width 0.35s var(--bzn-ease);
  transform-origin: center;
}

.bzn-lp-burger.is-active .bzn-lp-burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bzn-lp-burger.is-active .bzn-lp-burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.bzn-lp-burger.is-active .bzn-lp-burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Home: mobile overlay nav (not Bootstrap collapse) */
.bzn-lp-mobile {
  position: fixed;
  inset: 0;
  z-index: 1120;
  pointer-events: none;
  visibility: hidden;
}

.bzn-lp-mobile.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bzn-lp-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--bzn-ease);
}

.bzn-lp-mobile.is-open .bzn-lp-mobile__backdrop {
  opacity: 1;
}

.bzn-lp-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--bzn-white);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s var(--bzn-ease);
}

.bzn-lp-mobile.is-open .bzn-lp-mobile__panel {
  transform: translateX(0);
}

.bzn-lp-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bzn-lp-mobile__close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.bzn-lp-mobile__nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 0;
}

.bzn-lp-mobile__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bzn-lp-mobile__nav > ul > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-text);
  transition: background 0.2s, color 0.2s;
}

.bzn-lp-mobile__nav > ul > li > a:hover {
  background: rgba(var(--bzn-secondary-rgb), 0.06);
  color: var(--bzn-green);
}

.bzn-lp-mobile__sub-head {
  display: flex;
  align-items: center;
  width: 100%;
}

.bzn-lp-mobile__sub-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 8px 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-text);
  transition: background 0.2s, color 0.2s;
}

.bzn-lp-mobile__sub-link:hover {
  background: rgba(var(--bzn-secondary-rgb), 0.06);
  color: var(--bzn-green);
}

.bzn-lp-mobile__sub-chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: var(--bzn-muted);
  transition: color 0.2s, background 0.2s;
}

.bzn-lp-mobile__sub-chev:hover {
  color: var(--bzn-green);
  background: rgba(var(--bzn-secondary-rgb), 0.06);
}

.bzn-lp-mobile__sub-chev i {
  transition: transform 0.3s var(--bzn-ease);
}

.bzn-lp-mobile__sub.is-open .bzn-lp-mobile__sub-chev i {
  transform: rotate(180deg);
}

.bzn-lp-mobile__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--bzn-ease);
  background: rgba(0, 0, 0, 0.02);
}

.bzn-lp-mobile__sub.is-open .bzn-lp-mobile__sub-list {
  max-height: 280px;
}

.bzn-lp-mobile__sub-list a {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 16px;
  color: var(--bzn-muted);
  font-weight: 600;
}

.bzn-lp-mobile__sub-list a:hover {
  color: var(--bzn-green);
}

.bzn-lp-mobile__foot {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.bzn-lp-mobile__foot .bzn-lp-login {
  justify-content: center;
  width: 100%;
}

.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li {
  animation: bznLpFadeSlide 0.45s var(--bzn-ease) backwards;
}

.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(1) { animation-delay: 0.05s; }
.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(2) { animation-delay: 0.1s; }
.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(3) { animation-delay: 0.15s; }
.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(4) { animation-delay: 0.2s; }
.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(5) { animation-delay: 0.25s; }
.bzn-lp-mobile.is-open .bzn-lp-mobile__nav > ul > li:nth-child(6) { animation-delay: 0.3s; }

@keyframes bznLpFadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Home: hero */
.bzn-lp-hero {
  position: relative;
  background: var(--bzn-green-hero);
  padding: 130px 0 190px;
  overflow: hidden;
}

.bzn-lp-hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bzn-lp-hero__lines img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.bzn-lp-hero .bzn-lp-wrap {
  position: relative;
  z-index: 2;
}

.bzn-lp-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.bzn-lp-hero__title {
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--bzn-white);
    margin: 0 0 20px;
    max-width: 800px;
}

.bzn-lp-hl-arc,
.bzn-lp-hero__hl,
.bzn-lp-ab-hl {
  position: relative;
  display: inline;
  font-style: normal;
}

.bzn-lp-hl-arc::after,
.bzn-lp-hero__hl::after,
.bzn-lp-ab-hl::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: calc(100% + 20px);
  height: 18px;
  min-height: 10px;
  max-height: 18px;
  background: url('../img/highlight-arc.png') no-repeat center bottom;
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
}

.bzn-lp-hero__desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.65;
  max-width: 580px;
  margin: 40px 0;
  font-weight: 600;
}

.bzn-lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.bzn-lp-btn-yellow {
  background: var(--bzn-yellow);
  color: var(--bzn-white) !important;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 12px;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bzn-lp-btn-yellow:hover {
  background: var(--bzn-yellow-dark);
  color: var(--bzn-text);
  transform: translateY(-2px);
}

.bzn-lp-hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bzn-lp-hero__avatars {
  display: flex;
}

.bzn-lp-hero__avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bzn-green);
  margin-left: -14px;
}

.bzn-lp-hero__avatars img:first-child {
  margin-left: 0;
}

.bzn-lp-hero__reviews {
  display: flex;
  flex-direction: column;
}

.bzn-lp-hero__stars {
  color: var(--bzn-white);
  font-size: 14px;
  letter-spacing: 1px;
}

.bzn-lp-hero__review-text {
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 500;
}

.bzn-lp-hero__media {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.bzn-lp-hero__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin-left: auto;
  margin-bottom: 0;
  object-fit: contain;
  object-position: bottom right;
}

/* Home: benefits */
.bzn-lp-benefits {
  background: var(--bzn-white);
  padding: 100px 0 100px;
}

.bzn-lp-benefits__eyebrow {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--bzn-yellow);
  margin: 0 0 20px;
}
.bzn-lp-benefits__text {
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    color: var(--bzn-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.bzn-lp-benefit-card {
  position: relative;
  background: var(--bzn-white);
  border-radius: var(--bzn-radius-card);
  padding: 32px 28px 32px;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--bzn-shadow-card);
}

.bzn-lp-benefit-card__glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -50px;
  right: -40px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.bzn-lp-benefit-card--purple .bzn-lp-benefit-card__glow {
  background: var(--bzn-purple);
}

.bzn-lp-benefit-card--pink .bzn-lp-benefit-card__glow {
  background: var(--bzn-pink);
}

.bzn-lp-benefit-card--blue .bzn-lp-benefit-card__glow {
  background: var(--bzn-sky);
}

.bzn-lp-benefit-card__icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 35px;
}

.bzn-lp-benefit-card--purple .bzn-lp-benefit-card__icon {
  background: rgba(84, 84, 212, 0.12);
  color: var(--bzn-purple);
}

.bzn-lp-benefit-card--pink .bzn-lp-benefit-card__icon {
  background: rgba(255, 58, 111, 0.12);
  color: var(--bzn-pink);
}

.bzn-lp-benefit-card--blue .bzn-lp-benefit-card__icon {
  background: rgba(25, 183, 253, 0.12);
  color: var(--bzn-sky);
}

.bzn-lp-benefit-card__title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--bzn-text);
}

.bzn-lp-benefit-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  color: var(--bzn-text);
  line-height: 1.6;
}

.bzn-lp-label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--bzn-yellow);
    margin-bottom: 20px;
}

.bzn-lp-partners {
  background: var(--bzn-white);
  padding: 0 0 100px;
}

.bzn-lp-partners__title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  color: var(--bzn-text);
  margin: 0 0 45px;
}

.bzn-lp-partners__title span {
  color: var(--bzn-yellow);
}
/* Home: partners logo slider (built in main.js) */
.bzn-lp-partners__logos.bzn-lp-partners__slider {
  overflow: hidden;
  width: 100%;
}

.bzn-lp-partners__viewport {
  overflow: hidden;
  width: 100%;
}

.bzn-lp-partners__track {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.bzn-lp-partners__item {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
  min-width: 0;
}

.bzn-lp-partners__item img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.bzn-lp-about {
  position: relative;
  background: var(--bzn-white);
  padding: 40px 0 200px;
}

.bzn-lp-about__bg--arrow {
  position: absolute;
  top: -30%;
  right: 0;
  width: auto;
  height: auto;
  object-fit: cover;
}
.bzn-lp-about__gallery {
  position: relative;
  max-width: 560px;
  min-height: 320px;
}

.bzn-lp-about__main {
    width: auto;
    max-width: 208px;
    height: auto;
    margin-left: 50px;
    margin-right: 0;
    display: block;
    position: relative;
    z-index: 2;
    transform: translateY(50px);
}

.bzn-lp-about__badge {
  position: absolute;
  top: 24px;
  right: 15%;
  width: 200px;
  height: 200px;
  text-align: center;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.bzn-lp-about__badge-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  z-index: -1;
}

.bzn-lp-about__badge-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--bzn-heading);
  line-height: 1;
}

.bzn-lp-about__badge-ring {
  stroke: var(--bzn-secondary);
}

.bzn-lp-about__badge-num svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
  transform: rotate(90deg);
}

.bzn-lp-about__badge-num > span {
  position: relative;
  z-index: 2;
}

.bzn-lp-about__badge-text {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-heading);
  line-height: 22px;
  margin-top: 6px;
  width: 100%;
}

.bzn-lp-about__small {
  position: absolute;
  right: 0;
  bottom: -150px;
  width: auto;
  max-width: 282px;
  height: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bzn-lp-about__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.bzn-lp-about__heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    color: var(--bzn-heading);
    margin: 0 0 20px;
}

.bzn-lp-about__lead {
    font-size: 17px;
    line-height: 26px;
    color: var(--bzn-slate);
    margin: 40px 0 32px;
    max-width: 541px;
}

.bzn-lp-about__mv-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--bzn-heading);
  margin: 0 0 15px;
}

.bzn-lp-about__mv p {
  font-size: 17px;
  line-height: 30px;
  color: var(--bzn-charcoal);
  margin: 0;
}

.bzn-lp-about__mv {
  margin-bottom: 32px;
}

.bzn-lp-btn-explore {
  display: inline-flex;
  align-items: center;
  background: var(--bzn-yellow);
  color: var(--bzn-white) !important;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  padding-left: 28px;
  border-radius: 100px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.bzn-lp-btn-explore:hover {
  background: var(--bzn-yellow-dark);
}

.bzn-lp-btn-explore__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-left: 20px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bzn-lp-categories {
  background: var(--bzn-white);
  padding: 0 0 80px;
}

.bzn-lp-categories__eyebrow {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--bzn-yellow);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.bzn-lp-categories__text {
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
  color: var(--bzn-text);
  text-align: center;
  margin: 0 0 60px;
}
.bzn-lp-cat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 24px;
  border-radius: 10px;
  min-height: 130px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bzn-lp-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bzn-lp-cat-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}
.bzn-lp-cat-card__icon img {
    max-width: 40px;
}

.bzn-lp-cat-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--bzn-pure-black);
  line-height: 30px;
}

.bzn-lp-cat-card--blue {
  background: #eaf6ff;
}

.bzn-lp-cat-card--blue .bzn-lp-cat-card__icon {
  color: var(--bzn-blue);
  border-color: var(--bzn-blue);
  background: rgba(27, 117, 232, 0.1);
}

.bzn-lp-cat-card--rose {
  background: #fef2f4;
}

.bzn-lp-cat-card--rose .bzn-lp-cat-card__icon {
  color: #ff6881;
  border-color: #ff6881;
  background: rgba(255, 104, 129, 0.12);
}

.bzn-lp-cat-card--green {
  background: #EEFBF5;
}

.bzn-lp-cat-card--green .bzn-lp-cat-card__icon {
  color: #0a5240;
  border-color: #00BC65;
  background: #D1F5E4;
}

.bzn-lp-cat-card--amber {
  background: #fff8e6;
}

.bzn-lp-cat-card--amber .bzn-lp-cat-card__icon {
  color: #d97706;
  border-color: #d97706;
  background: rgba(255, 194, 33, 0.2);
}

.bzn-lp-cat-card--violet {
  background: #f3eeff;
}

.bzn-lp-cat-card--violet .bzn-lp-cat-card__icon {
  color: #7c3aed;
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

.bzn-lp-cat-card--pink {
  background: #fff0f4;
}

.bzn-lp-cat-card--pink .bzn-lp-cat-card__icon {
  color: #ec4899;
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.1);
}

.bzn-lp-cat-card--mint {
  background: var(--bzn-secondary-bg-soft);
}

.bzn-lp-cat-card--mint .bzn-lp-cat-card__icon {
  color: var(--bzn-secondary-light);
  border-color: var(--bzn-secondary-light);
  background: var(--bzn-secondary-bg-light);
}

.bzn-lp-cat-card--orange {
  background: #fff5f0;
}

.bzn-lp-cat-card--orange .bzn-lp-cat-card__icon {
  color: #f97316;
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.12);
}

.bzn-lp-cat-card--sky {
  background: #e8f7ff;
}

.bzn-lp-cat-card--sky .bzn-lp-cat-card__icon {
  color: #0ea5e9;
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.12);
}

/* Home: community video + stats */
.bzn-lp-community {
  background: var(--bzn-white);
  padding: 0 0 100px;
}

.bzn-lp-community__video {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-bottom: -285px;
  z-index: 2;
}

.bzn-lp-community__video img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  min-height: 570px;
}

.bzn-lp-community__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 3;
  pointer-events: auto;
  text-decoration: none;
}

.bzn-lp-community__stats {
  position: relative;
  background: var(--bzn-green);
  border-radius: 0 0 20px 20px;
  padding: 340px 48px 56px;
  color: var(--bzn-white);
  z-index: 1;
}

.bzn-lp-community__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin: 0 0 16px;
  color: var(--bzn-white);
}

.bzn-lp-community__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--bzn-white);
  margin: 0 0 40px;
  max-width: 400px;
}

.bzn-lp-community__cta {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 20px;
  font-weight: 700;
}

.bzn-lp-community__stat-num {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--bzn-white);
    line-height: 1;
    margin-bottom: 20px;
}
.bzn-lp-community__stat-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bzn-white);
}

.bzn-lp-community__stat p {
    font-size: 15px;
    line-height: 22px;
    color: var(--bzn-white);
    margin: 0;
    max-width: 252px;
}

.bzn-lp-community__quote {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bzn-white);
  border-radius: 20px;
  padding: 12px 24px 12px 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bzn-lp-community__quote img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bzn-lp-community__quote p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  color: var(--bzn-text);
}

/* Shared: oval highlight, features, courses, instructors, testimonial, blog, footer */

.bzn-lp-hl-oval {
  position: relative;
  display: inline;
  font-style: normal;
  white-space: nowrap;
}

.bzn-lp-hl-oval::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: -2px;
  bottom: -4px;
  border: 2px solid var(--bzn-yellow);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.bzn-lp-features {
  background: var(--bzn-white);
  padding: 60px 0 96px;
}

.bzn-lp-features__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-heading);
  margin: 0 0 32px;
  max-width: 603px;
}
.bzn-lp-features__text {
  font-size: 20px;
  line-height: 30px;
  color: var(--bzn-text);
  margin: 0 0 40px;
  font-weight: 600;
}

.bzn-lp-feature-card {
  background: var(--bzn-primary-alpha-50);
  border-radius: 16px;
  padding: 30px 22px;
  height: 100%;
}

.bzn-lp-feature-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.bzn-lp-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bzn-secondary);
  font-size: 17px;
}

.bzn-lp-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bzn-heading);
  margin: 0;
}

.bzn-lp-feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--bzn-slate);
}

.bzn-lp-features__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 24px 24px 24px 0;
}

.bzn-lp-features__dots {
  position: absolute;
  top: -15px;
  right: -15px;
}

.bzn-lp-features__frame {
  background-image: url(../img/features-bg-shape.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 545px;
  height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bzn-lp-features__frame img {
  position: relative;
  z-index: 1;
  width: 99%;
  max-width: 100%;
  height: 95%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
}

.bzn-lp-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.bzn-lp-section-head__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-heading);
  margin: 0;
  max-width: 640px;
}

.bzn-lp-btn-view {
  display: inline-flex;
  align-items: center;
  background: var(--bzn-yellow);
  color: var(--bzn-white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0;
  padding-left: 24px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-btn-view:hover {
  background: var(--bzn-yellow-dark);
}

.bzn-lp-btn-view__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 16px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bzn-lp-courses {
  background: var(--bzn-primary-bg-soft);
  padding: 94px 0 96px;
}
.bzn-lp-section-head__title--courses {
  font-size: 45px;
  font-weight: 700;
  line-height: 58px;
  color: var(--bzn-text);
  margin: 0;
  max-width: 600px;
}

.bzn-lp-course-card {
    background: var(--bzn-primary-surface);
    border: 1px dashed var(--bzn-primary-dark);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 21px;
}

.bzn-lp-course-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 220px;
  min-height: 180px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 5px;
}

.bzn-lp-course-card__thumb > a {
  display: block;
  width: 100%;
  height: 100%;
}

.bzn-lp-course-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.bzn-lp-course-card__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  background: var(--bzn-ink);
  color: var(--bzn-white);
  font-size: 12px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
}
.bzn-lp-course-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}
.bzn-lp-course-card__head-left {
    display: flex;
    align-items: center;
    gap: 5px;
}
.bzn-lp-course-card__star-count span {
    font-family: "Epilogue", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bzn-slate);
    line-height: 1;
}
.bzn-lp-course-card__head-right {
    text-align: right;
}
.bzn-lp-course-card__head-right span {
    font-family: "Epilogue", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bzn-green);
    line-height: 1;
}

.bzn-lp-course-card__body {
  padding: 30px 0 23px 0;
  flex: 1;
}

.bzn-lp-course-card__stars {
    color: #FC6441;
    font-size: 14px;
    letter-spacing: 2px;
}

.bzn-lp-course-card__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--bzn-heading);
  margin: 0 0 25px;
}

.bzn-lp-course-card__meta {
  list-style: none;
  margin: 0;
  padding: 16px 16px;
  background: var(--bzn-white);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 8px 16px;
}

.bzn-lp-course-card__meta li {
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-course-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 0;
  margin-top: auto;
}

.bzn-lp-course-card__foot img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #704FE6;
}

.bzn-lp-course-card__instructor {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-pure-black);
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-course-card__enroll {
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    color: var(--bzn-white);
    background: var(--bzn-green);
    padding: 10px 30px;
    border-radius: 100px;
    transition: background 0.2s ease;
    align-items: center;
    gap: 5px;
}
.bzn-lp-course-card__enroll img {
    width: auto;
    height: auto;
    border-radius: none;
    object-fit: cover;
    flex-shrink: 0;
    border: 0;
}

.bzn-lp-course-card__enroll:hover {
  background: var(--bzn-green-hover);
  color: var(--bzn-white);
}

.bzn-lp-instructors {
  background: var(--bzn-white);
  padding: 0 0 96px;
}

.bzn-lp-instructors__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-heading);
  margin: 0 0 32px;
  max-width: 400px;
}
.bzn-lp-instructors__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--bzn-pure-black);
  margin: 0 0 32px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-instructors__actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bzn-lp-btn-green-pill {
  display: inline-flex;
  align-items: center;
  background: var(--bzn-green);
  color: var(--bzn-white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0;
  padding-left: 24px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-btn-green-pill:hover {
  background: var(--bzn-secondary-alpha-56);
}

.bzn-lp-btn-green-pill__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 16px;
  background: #ffffff20;
  color: var(--bzn-white);
  font-size: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bzn-lp-btn-yellow-pill {
  display: inline-flex;
  align-items: center;
  background: var(--bzn-yellow);
  color: var(--bzn-white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0;
  padding-left: 24px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-btn-yellow-pill:hover {
  background: var(--bzn-primary-alpha-56);
}

.bzn-lp-btn-yellow-pill__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 16px;
  background: var(--bzn-primary-dark);
  color: var(--bzn-white) !important;
  font-size: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bzn-lp-instructor-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 3px dashed var(--bzn-green);
    padding: 3px;
}

.bzn-lp-instructor-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bzn-lp-instructor-card__share,
.bzn-lp-instructor-card__plus {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
}

.bzn-lp-instructor-card__share {
  top: 25px;
  right: 25px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-lp-instructor-card__share:hover {
  background: var(--bzn-white);
  color: var(--bzn-green);
}

.bzn-lp-instructor-card__social {
  position: absolute;
  top: 25px;
  right: 68px;
  height: 36px;
  background: var(--bzn-white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2;
}

.bzn-lp-instructor-card__share:hover + .bzn-lp-instructor-card__social,
.bzn-lp-instructor-card__share:focus + .bzn-lp-instructor-card__social,
.bzn-lp-instructor-card__share:focus-visible + .bzn-lp-instructor-card__social,
.bzn-lp-instructor-card.is-social-open .bzn-lp-instructor-card__social,
.bzn-lp-instructor-card__social:hover,
.bzn-lp-instructor-card__social:focus-within {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (hover: none) {
  .bzn-lp-instructor-card__social {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: static;
    margin: 10px 12px 0 auto;
    width: fit-content;
  }

  .bzn-lp-instructor-card__share {
    display: none;
  }
}

.bzn-lp-instructor-card__social a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bzn-green);
  font-size: 15px;
  transition: background 0.2s ease;
}

.bzn-lp-instructor-card__social a:hover {
  background: rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-instructor-card__plus {
  bottom: 35px;
  right: 12px;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: none;
}

.bzn-lp-instructor-card__info {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: var(--bzn-white);
  border-radius: 8px;
  padding: 10px 20px;
  text-align: left;
  min-width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bzn-lp-instructor-card__info strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-instructor-card__info span {
  display: block;
  font-size: 13px;
  color: var(--bzn-green);
  margin-top: 2px;
}

.bzn-lp-testimonial {
  background: linear-gradient(105deg, var(--bzn-green-dark) 0%, var(--bzn-green) 45%, var(--bzn-green-hover) 100%);
  padding: 64px 0 0;
  margin-bottom: 96px;
  position: relative;
}
.bzn-lp-testimonial__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.bzn-lp-testimonial__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 48px;
}

.bzn-lp-testimonial__photo {
  position: relative;
  flex: 0 0 auto;
  min-width: 280px;
  display: flex;
  align-items: flex-end;
}

.bzn-lp-testimonial__photo img {
  position: relative;
  z-index: 1;
  width: 360px;
  height: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
  vertical-align: bottom;
  transition: opacity 0.3s var(--bzn-ease);
}

.bzn-lp-testimonial__photo img.is-fading {
  opacity: 0;
}

.bzn-lp-testimonial__content {
  flex: 1;
  min-width: 280px;
  color: var(--bzn-white);
  padding-left: 120px;
  max-width: 1000px;
}

.bzn-lp-testimonial__quote-icon {
  max-width: 110px;
  margin-bottom: 60px;
}

.bzn-lp-testimonial__slides {
  position: relative;
  min-height: 160px;
}

.bzn-lp-testimonial__slide {
  margin: 0;
  display: none;
}

.bzn-lp-testimonial__slide.is-active {
  display: block;
  animation: bznLpTestimonialIn 0.35s var(--bzn-ease);
}

@keyframes bznLpTestimonialIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bzn-lp-testimonial__slide p {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  margin: 0 0 24px;
  max-width: 1000px;
  color: var(--bzn-white);
}

.bzn-lp-testimonial__slide footer {
  font-style: normal;
}

.bzn-lp-testimonial__slide cite {
  display: block;
  font-size: 27px;
  font-weight: 700;
  font-style: normal;
  color: var(--bzn-white);
}

.bzn-lp-testimonial__slide footer span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.bzn-lp-testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 32px;
}

.bzn-lp-testimonial__count {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bzn-lp-testimonial__arrows {
  display: flex;
  gap: 8px;
}

.bzn-lp-testimonial__arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--bzn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bzn-lp-testimonial__arrows button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bzn-white);
}

.bzn-lp-blog {
  background: var(--bzn-white);
  padding: 0 0 96px;
}
.bzn-lp-section-head__title--blog {
  font-size: 45px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-heading);
  max-width: 603px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-blog-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bzn-lp-blog-card__thumb {
  display: block;
  overflow: hidden;
}

.bzn-lp-blog-card__thumb img {
  width: 100%;
  height: 250px;
  max-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--bzn-ease);
  border-radius: 10px;
}

.bzn-lp-blog-card:hover .bzn-lp-blog-card__thumb img {
  transform: scale(1.03);
}

.bzn-lp-blog-card__body {
  padding: 25px 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bzn-lp-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--bzn-slate);
  margin: 0 0 20px;
}
.bzn-lp-blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bzn-lp-blog-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 5px;
  flex: 1;
  color: var(--bzn-heading);
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-blog-card__title a {
  color: var(--bzn-heading);
  transition: color 0.2s ease;
}

.bzn-lp-blog-card__title a:hover {
  color: var(--bzn-green);
}

.bzn-lp-blog-card__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--bzn-heading);
  margin: 0 0 20px;
  line-height: 24px;
  font-family: "Epilogue", sans-serif;
}

/* Page: Career listing */

.bzn-lp-job-card {
  border: 1px solid var(--bzn-border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bzn-white);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.bzn-lp-job-card:hover {
  border-color: rgba(var(--bzn-secondary-rgb), 0.25);
  box-shadow: 0 12px 32px rgba(var(--bzn-secondary-rgb), 0.08);
}

.bzn-lp-job-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, rgba(var(--bzn-secondary-rgb), 0.08) 0%, rgba(var(--bzn-secondary-rgb), 0.02) 100%);
}

.bzn-lp-job-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bzn-lp-job-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(var(--bzn-secondary-rgb), 0.1);
  color: var(--bzn-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.bzn-lp-job-card__body {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bzn-lp-job-card__meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--bzn-slate);
  margin: 0 0 16px;
}

.bzn-lp-job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bzn-lp-job-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 10px;
  flex: 1;
  color: var(--bzn-heading);
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-job-card__title a {
  color: var(--bzn-heading);
  transition: color 0.2s ease;
}

.bzn-lp-job-card__title a:hover {
  color: var(--bzn-green);
}

.bzn-lp-job-card__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--bzn-heading);
  margin: 0 0 20px;
  line-height: 24px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-btn-read {
  display: inline-flex;
  align-items: center;
  background: var(--bzn-green);
  color: var(--bzn-white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0;
  padding-left: 24px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.2s ease;
  width: max-content;
}

.bzn-lp-btn-read:hover {
  background: var(--bzn-secondary-alpha-56);
}

.bzn-lp-btn-read__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 16px;
  background: #ffffff20;
  color: var(--bzn-white);
  font-size: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bzn-lp-footer {
  background: var(--bzn-pure-black);
  padding: 140px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.bzn-lp-footer__top-inner {
  padding-bottom: 26px;
  border-bottom: 1px solid #66666693;
  margin-bottom: 60px;
}

.bzn-lp-footer__desc {
  font-size: 20px;
  line-height: 32px;
  max-width: 540px;
  margin: 0 0 60px;
  color: rgba(255, 255, 255, 0.82);
}

.bzn-lp-footer__social {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.bzn-lp-footer__social a {
  color: var(--bzn-white);
  font-size: 20px;
  transition: color 0.2s ease;
}

.bzn-lp-footer__social a:hover {
  border-color: var(--bzn-yellow);
  background: rgba(var(--bzn-primary-rgb), 0.12);
  color: var(--bzn-white);
}

.bzn-lp-footer__newsletter > label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.bzn-lp-footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.bzn-lp-footer__form-row {
  display: flex;
  background: #88888917;
  border-radius: 8px;
  padding: 6px 6px 6px 20px;
}

.bzn-lp-footer__form-row input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.bzn-lp-footer__form-row input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.bzn-lp-footer__form-row button {
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-footer__form-row button:hover {
  background: var(--bzn-green-hover);
}

.bzn-lp-footer__form-row button.is-loading {
  pointer-events: none;
  opacity: 0.88;
  cursor: wait;
}

/* Keep legacy selectors working if used elsewhere */
.bzn-lp-footer__form > input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.bzn-lp-footer__form > button {
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.ajax-form-message {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 4px;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.ajax-form-message:not([hidden]) {
  display: flex;
}

.ajax-form-message__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
}

.ajax-form-message__text {
  flex: 1;
}

.ajax-form-message.is-success {
  color: #1f6b3a;
  background: #eaf7ef;
  border-color: #b7e0c4;
}

.ajax-form-message.is-error {
  color: #9b1c1c;
  background: #fdecec;
  border-color: #f2b8b5;
}

.btn-loading-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.btn-loading-dots {
  display: inline-flex;
  width: 1.1em;
  overflow: hidden;
  margin-left: 0.05em;
}

.btn-loading-dots span {
  opacity: 0;
  animation: bzn-btn-dot 1.2s infinite;
}

.btn-loading-dots span:nth-child(1) { animation-delay: 0s; }
.btn-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.btn-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bzn-btn-dot {
  0%, 20% { opacity: 0; }
  40%, 100% { opacity: 1; }
}

.bzn-lp-co-form__right > .ajax-form-message {
  margin-bottom: 1.25rem;
}

.bzn-lp-co-submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
  cursor: wait;
}

.bzn-lp-footer__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  max-width: 420px;
  cursor: pointer;
}

.bzn-lp-footer__consent span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.bzn-lp-footer__consent input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 2px solid var(--bzn-gray);
  border-radius: 2px;
  cursor: pointer;
}

.bzn-lp-footer__consent input[type='checkbox']:checked {
  background: transparent;
  border-color: var(--bzn-gray);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.bzn-lp-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.bzn-lp-footer__nav a {
  font-size: clamp(22px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--bzn-white);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.bzn-lp-footer__nav a:hover {
  color: var(--bzn-yellow);
}

.bzn-lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bzn-lp-footer__bottom p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.bzn-lp-footer__bottom p span {
  color: var(--bzn-white);
  color: rgba(255, 255, 255, 0.9);
}

.bzn-lp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.bzn-lp-footer__legal.mobile {
  display: none;
}

.bzn-lp-footer__legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.bzn-lp-footer__legal a:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  padding-left: 15px;
}
.bzn-lp-footer__legal a:hover {
  color: var(--bzn-white);
}

/* Page: About */

.bzn-lp-ab-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  overflow: hidden;
}

.bzn-lp-ab-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bzn-lp-ab-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-lp-ab-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--bzn-green), rgba(var(--bzn-secondary-rgb), 0.12));
}

.bzn-lp-ab-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.bzn-lp-ab-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 58px;
  color: var(--bzn-white);
  margin: 0 0 24px;
  max-width: 780px;
}

.bzn-lp-ab-hero__text {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: var(--bzn-white);
  max-width: 576px;
}

.bzn-lp-ab-who {
  background: var(--bzn-white);
  padding: 110px 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.bzn-lp-ab-who__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: var(--bzn-heading);
  margin: 0 0 24px;
}

.bzn-lp-ab-who__text {
  font-size: 17px;
  line-height: 26px;
  color: var(--bzn-heading);
  margin: 0 0 16px;
}

.bzn-lp-ab-who__text:last-of-type {
  margin-bottom: 0;
}

.bzn-lp-ab-who__media {
  position: relative;
  text-align: center;
}

.bzn-lp-ab-who__deco {
  position: absolute;
  top: 8%;
  right: 0;
  width: 55%;
  height: 75%;
  border: 1px solid rgba(14, 42, 70, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.bzn-lp-ab-who__deco::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 8%;
  width: 84%;
  height: 76%;
  border: 1px solid rgba(14, 42, 70, 0.08);
  border-radius: 50%;
}

.bzn-lp-ab-who__media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.bzn-lp-ab-who__bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: auto;
  object-fit: cover;
  transform: translateY(-45%);
}

.bzn-lp-ab-mv {
  position: relative;
  background: linear-gradient(135deg, var(--bzn-green), var(--bzn-green-light));
  overflow: hidden;
}

.bzn-lp-ab-mv__col {
  padding: 40px 48px;
  color: var(--bzn-white);
}

.bzn-lp-ab-mv__col--border {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bzn-lp-ab-mv__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  color: var(--bzn-white);
}

.bzn-lp-ab-mv__col p {
  margin: 0;
  font-size: 17px;
  line-height: 24px;
  color: var(--bzn-white);
}

.bzn-lp-ab-stats {
  position: relative;
  z-index: 3;
  margin-top: 43px;
  padding: 0 0 80px;
}

.bzn-lp-ab-stats__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 40px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 32px;
  z-index: 2;
}

.bzn-lp-ab-stats__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--bzn-primary);
  z-index: -1;
}

.bzn-lp-ab-stats__list > li {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;
  min-width: 180px;
}

.bzn-lp-ab-stats__icon {
  max-width: 78px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--bzn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bzn-lp-ab-stats__icon img {
  max-width: 38px;
}

.bzn-lp-ab-stats__num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--bzn-heading);
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-ab-stats__label {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--bzn-heading);
  margin: 0;
  margin-top: 6px;
}

.bzn-lp-ab-values {
  background: var(--bzn-white);
  padding: 0 0 96px;
}

.bzn-lp-ab-values__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-heading);
  margin: 0 0 16px;
}

.bzn-lp-ab-values__lead {
  font-size: 20px;
  line-height: 32px;
  color: var(--bzn-black);
  margin: 0 0 32px;
  max-width: 608px;
}

.bzn-lp-ab-progress__item {
  margin-bottom: 24px;
}

.bzn-lp-ab-progress__item:last-child {
  margin-bottom: 0;
}

.bzn-lp-ab-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-ab-progress__badge {
  background: var(--bzn-green-light);
  color: var(--bzn-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
}

.bzn-lp-ab-progress__badge::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--bzn-green-light);
}

.bzn-lp-ab-progress__track {
  height: 10px;
  background: var(--bzn-secondary-alpha-27);
  border-radius: 100px;
  overflow: hidden;
}

.bzn-lp-ab-progress__bar {
  height: 100%;
  background: var(--bzn-green-light);
  border-radius: 100px;
}

.bzn-lp-ab-portrait {
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
}

.bzn-lp-ab-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.bzn-lp-ab-portrait--rose {
  background: #ffe8ef;
}

.bzn-lp-ab-portrait--blue {
  background: #e8f4ff;
}

.bzn-lp-ab-portrait--grey {
  background: #f0f2f1;
}

.bzn-lp-ab-portrait--amber {
  background: var(--bzn-primary-tint-bg);
}

.bzn-lp-ab-skills {
  background-image: url(../img/about-page-benefit-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.bzn-lp-ab-skills__head {
  margin-bottom: 48px;
}

.bzn-lp-ab-skills__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-black);
  margin: 12px auto 0;
}

.bzn-lp-ab-skill-card {
  background: var(--bzn-white);
  border: 3px dashed var(--bzn-green);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bzn-lp-ab-skill-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bzn-green);
  color: var(--bzn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.bzn-lp-ab-skill-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--bzn-green);
  margin: 0 0 20px;
}

.bzn-lp-ab-skill-card p {
  margin: 0;
  font-size: 17px;
  line-height: 24px;
  color: var(--bzn-green);
}

.bzn-lp-ab-skill-card--featured {
  background: var(--bzn-green);
  border: none;
  padding-top: 52px;
  padding-bottom: 52px;
  box-shadow: 0 12px 40px rgba(var(--bzn-secondary-rgb), 0.25);
}

.bzn-lp-ab-skill-card--featured .bzn-lp-ab-skill-card__icon {
  background: var(--bzn-white);
}
.bzn-lp-ab-skill-card--featured .bzn-lp-ab-skill-card__icon img {
  max-width: 50px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(33%) saturate(1714%) hue-rotate(133deg) brightness(95%) contrast(93%);
}

.bzn-lp-ab-skill-card--featured .bzn-lp-ab-skill-card__title,
.bzn-lp-ab-skill-card--featured p {
  color: var(--bzn-white);
}

.bzn-lp-label--light {
  color: var(--bzn-yellow);
}

.bzn-lp-ab-cta {
  position: relative;
  padding: 72px 0;
  margin-bottom: 0;
  overflow: hidden;
}

.bzn-lp-ab-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bzn-lp-ab-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-lp-ab-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bzn-heading);
  opacity: 0.85;
}

.bzn-lp-ab-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bzn-lp-ab-cta__icon {
  margin-bottom: 20px;
}

.bzn-lp-label--light-cta {
  color: var(--bzn-yellow);
  font-size: 23px;
  font-weight: 700;
}

.bzn-lp-ab-cta__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--bzn-white);
  margin: 30px 0 0;
  max-width: 835px;
}

.bzn-lp-ab-cta__btn {
  flex-shrink: 0;
  background: var(--bzn-green);
  color: var(--bzn-white) !important;
}
.bzn-lp-ab-cta__btn .bzn-lp-btn-explore__arrow {
  background: var(--bzn-yellow);
}
.bzn-lp-ab-cta__btn:hover .bzn-lp-btn-explore__arrow {
  background: var(--bzn-green);
}
.bzn-lp-ab-cta__btn-wrap {
  position: relative;
  height: 100%;
}
.bzn-lp-ab-cta__icon-bottom {
  max-width: 48px;
  position: absolute;
  bottom: -120px;
  right: 0;
}

/* Inner pages: shared hero breadcrumb */

.bzn-lp-breadcrumb {
  background: var(--bzn-white);
  padding: 20px 0 0;
}

.bzn-lp-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
}

.bzn-lp-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bzn-slate);
}

.bzn-lp-breadcrumb__list li:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: #9aa3a0;
}

.bzn-lp-breadcrumb__list a {
  color: var(--bzn-green);
  font-weight: 500;
  transition: color 0.2s ease;
}

.bzn-lp-breadcrumb__list a:hover {
  color: var(--bzn-green-dark);
}

.bzn-lp-breadcrumb__list span[aria-current='page'] {
  color: var(--bzn-heading);
  font-weight: 600;
}

/* Page: Courses listing */

.bzn-lp-cr-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
  overflow: hidden;
}

.bzn-lp-cr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bzn-lp-cr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-lp-cr-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--bzn-green), rgba(var(--bzn-secondary-rgb), 0.12));
}

.bzn-lp-cr-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.bzn-lp-cr-hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: var(--bzn-white);
  margin: 0 0 16px;
  max-width: 612px;
}

.bzn-lp-cr-hero__text {
  max-width: 612px;
  font-size: 20px;
  line-height: 26px;
  color: var(--bzn-white);
  font-weight: 600;
  margin: 0;
}

.bzn-lp-page-about .bzn-lp-breadcrumb {
  padding-bottom: 8px;
}

.bzn-lp-cr-catalog {
  background: var(--bzn-white);
  padding: 80px 0;
}

.bzn-lp-cr-toolbar {
  display: flex;
  align-items: flex-start;
  gap: 16px 30px;
  margin-bottom: 80px;
}

.bzn-lp-cr-search {
  position: relative;
  flex: 0 1 300px;
  min-width: 300px;
}

.bzn-lp-cr-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bzn-black);
  font-size: 16px;
  pointer-events: none;
}

.bzn-lp-cr-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--bzn-black);
  border-radius: 10px;
  font-size: 14px;
  color: var(--bzn-heading);
  background: var(--bzn-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-lp-cr-search input:focus {
  border-color: var(--bzn-green);
  box-shadow: 0 0 0 3px rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-cr-search input::placeholder {
  color: #3C3C43;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.bzn-lp-cr-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
}

.bzn-lp-cr-filters__pill {
  border: 1px solid #c5ccc9;
  background: var(--bzn-white);
  color: var(--bzn-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bzn-lp-cr-filters__pill:hover {
  border-color: var(--bzn-green);
  color: var(--bzn-green);
}

.bzn-lp-cr-filters__pill.is-active {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-cr-toolbar__actions {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.bzn-lp-cr-more-filter-wrap {
  position: relative;
  display: inline-flex;
}

.bzn-lp-cr-more-filter-wrap:not(.bzn-lp-cr-toolbar__actions .bzn-lp-cr-more-filter-wrap) {
  margin-left: auto;
}

.bzn-lp-cr-more-filter,
.bzn-lp-cr-advanced-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bzn-heading);
  color: var(--bzn-white);
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-cr-more-filter:hover,
.bzn-lp-cr-advanced-filter:hover {
  background: var(--bzn-green);
}

.bzn-lp-cr-more-filter.is-disabled,
.bzn-lp-cr-more-filter:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.bzn-lp-cr-more-filter.is-open {
  background: var(--bzn-green);
}

.bzn-lp-cr-cat-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 220px;
  max-width: 320px;
  padding: 8px 0;
  border-radius: 12px;
  background: var(--bzn-white);
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(14, 42, 70, 0.12);
}

.bzn-lp-cr-cat-dropdown.is-open {
  display: block;
}

.bzn-lp-cr-cat-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.bzn-lp-cr-cat-dropdown__link {
  display: block;
  padding: 10px 18px;
  color: var(--bzn-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-lp-cr-cat-dropdown__link:hover {
  background: var(--bzn-secondary-hover-bg);
  color: var(--bzn-green);
}

.bzn-lp-cr-cat-dropdown__link.is-active {
  background: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-cr-more-panel {
  display: none;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 12px;
  background: var(--bzn-primary-surface);
  border: 1px dashed var(--bzn-primary-dark);
  margin-top: -50px;
}

.bzn-lp-cr-more-panel .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-black);
  margin-bottom: 4px;
}

.bzn-lp-cr-more-panel.is-open {
  display: block;
}

.bzn-lp-cr-more-panel__form {
  margin-bottom: 0;
}

.bzn-lp-cr-filters__pill {
  text-decoration: none;
}

.bzn-lp-cr-grid__item.is-hidden {
  display: none;
}

.bzn-lp-cr-card {
  background: var(--bzn-primary-tint-surface);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bzn-lp-cr-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.bzn-lp-cr-card__thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.bzn-lp-cr-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.bzn-lp-cr-card__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--bzn-blue);
  color: var(--bzn-white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

.bzn-lp-cr-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bzn-lp-cr-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

.bzn-lp-cr-card__stars {
  color: var(--bzn-yellow);
  font-size: 12px;
  letter-spacing: 1px;
}

.bzn-lp-cr-card__score {
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-cr-card__reviews {
  color: var(--bzn-muted);
  font-weight: 500;
}

.bzn-lp-cr-card__price {
  margin-left: auto;
  font-size: 16px;
  font-weight: 800;
  color: var(--bzn-heading);
}

.bzn-lp-cr-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  margin: 0 0 14px;
}

.bzn-lp-cr-card__title a {
  color: var(--bzn-heading);
  transition: color 0.2s ease;
}

.bzn-lp-cr-card__title a:hover {
  color: var(--bzn-green);
}

.bzn-lp-cr-card__stats {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.bzn-lp-cr-card__stats li {
  font-size: 12px;
  font-weight: 500;
  color: var(--bzn-slate);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bzn-lp-cr-card__stats i {
  color: var(--bzn-green);
  font-size: 13px;
}

.bzn-lp-cr-card__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.bzn-lp-cr-card__foot img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bzn-lp-cr-card__foot > span {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--bzn-heading);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bzn-lp-cr-card__enroll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-cr-card__enroll:hover {
  background: var(--bzn-green-hover);
  color: var(--bzn-white);
}

.bzn-lp-cr-empty {
  text-align: center;
  font-size: 16px;
  color: var(--bzn-slate);
  padding: 48px 0;
  margin: 0;
}

.bzn-lp-cr-cta {
  margin-bottom: 0;
}

/* Page: Blog listing */

.bzn-lp-bl-card {
  background: var(--bzn-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebecea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bzn-lp-bl-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.bzn-lp-bl-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.bzn-lp-bl-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.bzn-lp-bl-card:hover .bzn-lp-bl-card__thumb img {
  transform: scale(1.04);
}

.bzn-lp-bl-card__body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bzn-lp-bl-card__meta {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--bzn-muted);
}

.bzn-lp-bl-card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bzn-lp-bl-card__meta i {
  color: var(--bzn-green);
  font-size: 14px;
}

.bzn-lp-bl-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 12px;
}

.bzn-lp-bl-card__title a {
  color: var(--bzn-heading);
  transition: color 0.2s ease;
}

.bzn-lp-bl-card__title a:hover {
  color: var(--bzn-green);
}

.bzn-lp-bl-card__excerpt {
  font-size: 14px;
  line-height: 24px;
  color: var(--bzn-slate);
  margin: 0 0 20px;
  flex: 1;
}

.bzn-lp-bl-card__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.bzn-lp-bl-card__read:hover {
  background: var(--bzn-green-hover);
  color: var(--bzn-white);
}

/* Page: Categories */

.bzn-lp-ct-main {
  background: var(--bzn-white);
  padding: 80px 0 80px;
}

.bzn-lp-ct-intro {
  max-width: 820px;
  margin: 0 auto 48px;
}

.bzn-lp-ct-intro__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--bzn-black);
  margin: 12px 0 0;
}

.bzn-lp-ct-card {
  border-radius: 16px;
  padding: 28px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bzn-lp-ct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.bzn-lp-ct-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.bzn-lp-ct-card__icon {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.55);
}

.bzn-lp-ct-card__icon img {
  max-width: 38px;
}

.bzn-lp-ct-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--bzn-heading);
  margin: 0;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-ct-card__desc {
  font-size: 20px;
  line-height: 30px;
  color: var(--bzn-black);
  margin: 0 0 20px;
  flex: 1;
}

.bzn-lp-ct-card__btn {
  display: inline-flex;
  align-items: center;
  color: var(--bzn-white) !important;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  padding-left: 20px;
  border-radius: 100px;
  overflow: hidden;
  transition: background 0.2s ease;
  margin-left: auto;
}
.bzn-lp-ct-card__btn:hover {
  opacity: 0.9;
}
.bzn-lp-ct-card__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 8px;
  color: var(--bzn-white);
  font-size: 17px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bzn-lp-ct-card--blue {
  background: #EAF6FF;
}

.bzn-lp-ct-card--blue .bzn-lp-ct-card__icon {
  color: var(--bzn-blue);
  border-color: var(--bzn-blue);
  background: #1B75E818;
}

.bzn-lp-ct-card--blue .bzn-lp-ct-card__btn {
  background: var(--bzn-blue);
}
.bzn-lp-ct-card--blue .bzn-lp-ct-card__btn-arrow {
  background: #5297F0;
}

.bzn-lp-ct-card--rose {
  background: #FEF2F4;
}

.bzn-lp-ct-card--rose .bzn-lp-ct-card__icon {
  color: #FF6881;
  border-color: #FF6881;
  background: #FF688123;
}

.bzn-lp-ct-card--rose .bzn-lp-ct-card__btn {
  background: #FF6881;
}
.bzn-lp-ct-card--rose .bzn-lp-ct-card__btn-arrow {
  background: #FC526E;
}

.bzn-lp-ct-card--green {
  background: #EEFBF5;
}

.bzn-lp-ct-card--green .bzn-lp-ct-card__icon {
  color: #00BC65;
  border-color: #00BC65;
  background: #D1F5E4;
}

.bzn-lp-ct-card--green .bzn-lp-ct-card__btn {
  background: #00BC65;
}
.bzn-lp-ct-card--green .bzn-lp-ct-card__btn-arrow {
  background: #0a5240;
}

.bzn-lp-ct-card--amber {
  background: #FFFAEF;
}

.bzn-lp-ct-card--amber .bzn-lp-ct-card__icon {
  color: #F2A700;
  border-color: #F2A700;
  background: #FFF3D9;
}

.bzn-lp-ct-card--amber .bzn-lp-ct-card__btn {
  background: #F2A700;
}
.bzn-lp-ct-card--amber .bzn-lp-ct-card__btn-arrow {
  background: #D97706;
}

.bzn-lp-ct-card--violet {
  background: #F7F3FF;
}

.bzn-lp-ct-card--violet .bzn-lp-ct-card__icon {
  color: #4500D0;
  border-color: #4500D0;
  background: #DFD4F4;
}

.bzn-lp-ct-card--violet .bzn-lp-ct-card__btn {
  background: #4500D0;
}
.bzn-lp-ct-card--violet .bzn-lp-ct-card__btn-arrow {
  background: #895BE5;
}

.bzn-lp-ct-card--pink {
  background: #FFF0F8;
}

.bzn-lp-ct-card--pink .bzn-lp-ct-card__icon {
  color: #BB0064;
  border-color: #BB0064;
  background: #FFDAF0;
}

.bzn-lp-ct-card--pink .bzn-lp-ct-card__btn {
  background: #BB0064;
}
.bzn-lp-ct-card--pink .bzn-lp-ct-card__btn-arrow {
  background: #D6569B;
}

.bzn-lp-ct-card--mint {
  background: #F3F4FE;
}

.bzn-lp-ct-card--mint .bzn-lp-ct-card__icon {
  color: #0011BB;
  border-color: #0011BB;
  background: #DCDFFD;
}

.bzn-lp-ct-card--mint .bzn-lp-ct-card__btn {
  background: #4500D0;
}
.bzn-lp-ct-card--mint .bzn-lp-ct-card__btn-arrow {
  background: #895BE5;
}

.bzn-lp-ct-card--orange {
  background: #FFF7EF;
}

.bzn-lp-ct-card--orange .bzn-lp-ct-card__icon {
  color: #D16900;
  border-color: #D16900;
  background: #FFECD9;
}

.bzn-lp-ct-card--orange .bzn-lp-ct-card__btn {
  background: #D16900;
}
.bzn-lp-ct-card--orange .bzn-lp-ct-card__btn-arrow {
  background: #E5A96D;
}

.bzn-lp-ct-card--sky {
  background: #F1FBFF;
}

.bzn-lp-ct-card--sky .bzn-lp-ct-card__icon {
  color: #00A9ED;
  border-color: #00A9ED;
  background: #DCF5FF;
}

.bzn-lp-ct-card--sky .bzn-lp-ct-card__btn {
  background: var(--bzn-blue);
}
.bzn-lp-ct-card--sky .bzn-lp-ct-card__btn-arrow {
  background: #5297F0;
}

.bzn-lp-ct-cta {
  margin-bottom: 0;
}

/* Page: Contact */

.bzn-lp-co-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bzn-lp-co-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bzn-lp-co-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bzn-lp-co-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(var(--bzn-secondary-rgb), 0.86) 0%, rgba(var(--bzn-secondary-rgb), 0.78) 38%, rgba(var(--bzn-secondary-rgb), 0.2) 100%);
}

.bzn-lp-co-hero__content {
  position: relative;
  z-index: 2;
}

.bzn-lp-co-hero__title {
  margin: 0 0 18px;
  color: var(--bzn-white);
  font-size: 56px;
  font-weight: 700;
  line-height: 66px;
  max-width: 520px;
}

.bzn-lp-co-hero__text {
  margin: 0;
  color: var(--bzn-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 620px;
}

.bzn-lp-co-main {
  background: #f7f7f7;
  padding: 72px 0 0;
}

.bzn-lp-co-cards {
  padding-bottom: 60px;
}


.bzn-lp-co-card {
  position: relative;
  border-radius: 16px;
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  box-shadow: var(--bzn-shadow-card);
  overflow: hidden;
  height: 100%;
}

.bzn-lp-co-card__glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -50px;
  right: -40px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.bzn-lp-co-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.bzn-lp-co-card__title {
  margin: 0 0 6px;
  color: var(--bzn-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.bzn-lp-co-card__text {
  margin: 0;
  color: var(--bzn-black);
  font-size: 16px;
  line-height: 24px;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-co-card--violet .bzn-lp-co-card__glow {
  background: var(--bzn-purple);
}

.bzn-lp-co-card--violet .bzn-lp-co-card__icon {
  background: #5454D433;
  color: #5454D4;
}

.bzn-lp-co-card--pink .bzn-lp-co-card__glow {
  background: var(--bzn-pink);
}

.bzn-lp-co-card--pink .bzn-lp-co-card__icon {
  background: #FF3A6F33;
  color: #FF3A6F;
}

.bzn-lp-co-card--sky .bzn-lp-co-card__glow {
  background: var(--bzn-sky);
}

.bzn-lp-co-card--sky .bzn-lp-co-card__icon {
  background: #1ABCFE33;
  color: #1ABCFE;
}

.bzn-lp-co-form {
  padding-bottom: 80px;
}

.bzn-lp-co-form__panel {
  background: var(--bzn-white);
  border-radius: 10px;
  border: 1px solid #ecefeb;
  padding: 10px;
}

.bzn-lp-co-form__left-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.bzn-lp-co-form__left {
  height: 100%;
  border-radius: 10px;
  color: var(--bzn-white);
  padding: 40px;
}
.bzn-lp-co-form__side-bg {
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 10px;
  z-index: -1;
}

.bzn-lp-co-form__title {
  margin: 0 0 12px;
  color: var(--bzn-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.bzn-lp-co-form__left p {
  margin: 0 0 30px;
  color: var(--bzn-white);
  font-size: 18px;
  line-height: 28px;
}

.bzn-lp-co-form__hours h3 {
  margin: 0 0 8px;
  color: var(--bzn-white);
  font-size: 20px;
  font-weight: 700;
}

.bzn-lp-co-form__hours span {
  display: block;
  color: var(--bzn-white);
  font-size: 15px;
  line-height: 22px;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-co-form__social {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.bzn-lp-co-form__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.bzn-lp-co-form__social a:nth-child(odd) {
  background: var(--bzn-yellow);
  color: var(--bzn-white);
}
.bzn-lp-co-form__social a:nth-child(even) {
  background: var(--bzn-white);
  color: var(--bzn-black);
}

.bzn-lp-co-form__woman {
  width: 100%;
  max-width: 280px;
  margin-top: -120px;
  margin-left: auto;
  margin-right: 0;
  display: block;
  min-height: 280px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}
.bzn-lp-co-form__right {
  height: 100%;
  padding: 60px 60px 0;
}

.bzn-lp-co-field {
  display: block;
}

.bzn-lp-co-field > span {
  display: block;
  margin-bottom: 8px;
  color: #8D8D8D;
  font-size: 13px;
  font-weight: 600;
}

.bzn-lp-co-field input,
.bzn-lp-co-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8D8D8D;
  padding: 6px 2px 8px;
  background: transparent;
  color: #8D8D8D;
  font-size: 14px;
  line-height: 22px;
  outline: none;
  border-radius: 0;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-co-field textarea {
  resize: vertical;
  min-height: auto;
}

.bzn-lp-co-field input:focus,
.bzn-lp-co-field textarea:focus {
  border-bottom-color: var(--bzn-green);
}

.bzn-lp-co-subject {
  border: 0;
  padding: 0;
  margin: 0;
}

.bzn-lp-co-subject legend {
  margin: 0 0 10px;
  color: #011C2A;
  font-size: 14px;
  font-weight: 600;
}

.bzn-lp-co-subject label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 18px 8px 0;
  color: #011C2A;
  font-size: 13px;
  line-height: 20px;
}

.bzn-lp-co-subject input[type="radio"] {
  accent-color: #011C2A;
}

.bzn-lp-co-form__actions {
  margin-top: 45px;
  text-align: right;
}

.bzn-lp-co-submit {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bzn-green) 0%, var(--bzn-green-light) 100%);
  color: var(--bzn-white);
  padding: 15px 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--bzn-shadow-button);
  transition: all 0.3s ease;
}

.bzn-lp-co-submit:hover {
  background: var(--bzn-green-hover);
}
.bzn-lp-wrap-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.bzn-lp-co-map__frame {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
}

/* Page: Blog detail */

.bzn-lp-bd-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bzn-lp-bd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bzn-lp-bd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bzn-lp-bd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(var(--bzn-secondary-rgb), 0.88) 0%, rgba(var(--bzn-secondary-rgb), 0.75) 42%, rgba(var(--bzn-secondary-rgb), 0.12) 100%);
}

.bzn-lp-bd-hero__content {
  position: relative;
  z-index: 2;
}

.bzn-lp-bd-hero__title {
  margin: 0 0 16px;
  max-width: 600px;
  color: var(--bzn-white);
  font-size: 58px;
  font-weight: 700;
  line-height: 68px;
}

.bzn-lp-bd-hero__text {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
}

.bzn-lp-bd-main {
  background: var(--bzn-white);
}

.bzn-lp-bd-content {
  padding: 80px 0 76px;
}

.bzn-lp-bd-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

.bzn-lp-bd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.bzn-lp-bd-meta span img {
  width: 14px;
  height: 14px;
}

.bzn-lp-bd-article p {
  margin: 0 0 24px;
  color: var(--bzn-charcoal);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

.bzn-lp-blog-share__label {
  font-size: 18px;
  font-weight: 700;
  color: #151517;
}

.bzn-lp-blog-share__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-lp-blog-share__link,
.bzn-lp-blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  color: #151517;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.bzn-lp-blog-share__link:hover,
.bzn-lp-blog-share__btn:hover,
.bzn-lp-blog-share__btn.is-copied {
  background: #D90A2C;
  color: #fff;
}

.bzn-lp-blog-share__link:hover {
  transform: translateY(-2px);
}

.bzn-lp-bd-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bzn-lp-bd-side__item {
  border: 1px solid var(--bzn-border);
  background: var(--bzn-white);
  border-radius: 5px;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--bzn-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-lp-bd-side__item i {
  color: #8a9592;
  font-size: 12px;
}

.bzn-lp-bd-side__item:hover {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-bd-side__item:hover i {
  color: var(--bzn-white);
}

.bzn-lp-bd-side__item.is-active {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-bd-side__item.is-active i {
  color: var(--bzn-white);
}

.bzn-lp-jd-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.bzn-lp-jd-summary__item {
  border: 1px solid var(--bzn-border);
  border-radius: 8px;
  padding: 18px 20px;
  background: #f8faf9;
}

.bzn-lp-jd-summary__label {
  display: block;
  margin-bottom: 8px;
  color: var(--bzn-slate);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.bzn-lp-jd-summary__item strong {
  color: var(--bzn-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.bzn-lp-jd-block {
  margin-bottom: 28px;
}

.bzn-lp-jd-block__title {
  margin: 0 0 14px;
  color: var(--bzn-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-jd-apply {
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--bzn-secondary-rgb), 0.08) 0%, rgba(var(--bzn-secondary-rgb), 0.03) 100%);
}

.bzn-lp-jd-apply p {
  margin: 0 0 8px;
  color: var(--bzn-heading);
  font-size: 16px;
  font-weight: 600;
}

.bzn-lp-jd-apply__email {
  color: var(--bzn-green);
  font-size: 18px;
  font-weight: 700;
  word-break: break-word;
}

.bzn-lp-jd-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bzn-border);
}

.bzn-lp-jd-share span {
  color: var(--bzn-heading);
  font-size: 15px;
  font-weight: 700;
}

.bzn-lp-jd-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bzn-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bzn-green);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-lp-jd-share a:hover {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

/* Page: Course detail */

.bzn-lp-cd-hero {
  background: linear-gradient(90deg, var(--bzn-green) 0%, var(--bzn-green-light) 100%);
  padding: 52px 0 56px;
}

.bzn-lp-cd-hero__title {
  margin: 0 0 25px;
  color: var(--bzn-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  max-width: 860px;
}

.bzn-lp-cd-hero__text {
  margin: 0 0 30px;
  color: var(--bzn-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  max-width: 780px;
}

.bzn-lp-cd-hero__meta-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.bzn-lp-cd-hero__meta {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
  border-radius: 4px;
  background: #f5f6f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}

.bzn-lp-cd-hero__meta li {
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-cd-hero__meta li img {
  width: 14px;
  height: 14px;
}

.bzn-lp-cd-hero__stars-wrap {
  font-size: 14px;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  line-height: 20px;
  color: var(--bzn-white);
}
.bzn-lp-cd-hero__stars-wrap.mobile {
  display: none;
}
.bzn-lp-cd-hero__stars {
  color: var(--bzn-white);
  letter-spacing: 1px;
  font-size: 14px;
}

.bzn-lp-cd-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bzn-lp-cd-hero__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #704FE6;
}

.bzn-lp-cd-hero__author span {
  color: var(--bzn-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
.bzn-lp-cd-hero__author h4 {
  color: var(--bzn-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 2px 0 0;
}

.bzn-lp-cd-price-card {
  width: min(400px, 100%);
  margin-left: auto;
  background: var(--bzn-white);
  border-radius: 8px;
  padding: 21px;
  border: 1px dashed var(--bzn-green);
}

.bzn-lp-cd-price-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 283px;
  min-height: 200px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 4px;
}

.bzn-lp-cd-price-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.bzn-lp-cd-price-card__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  background: var(--bzn-ink);
  color: var(--bzn-white);
  font-size: 12px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
}

.bzn-lp-cd-price-card__body {
  padding: 30px 4px 4px;
}

.bzn-lp-cd-price-card__price {
  margin: 0;
  color: var(--bzn-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  font-family: "Epilogue", sans-serif;
  display: flex;
  align-items: center;
}

.bzn-lp-cd-price-card__price small {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #757d7b;
  text-decoration: line-through;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-cd-price-card__price span {
  display: inline-block;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: #FF9500;
  background: #fff5cc;
  padding: 7px 10px;
  border-radius: 5px;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-cd-price-card__btn {
  margin-top: 15px;
  width: 100%;
  border: 0;
  border-radius: 100px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 16px;
  font-weight: 700;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bzn-lp-cd-price-card__small {
  margin: 20px 0 8px;
  color: var(--bzn-gray);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.bzn-lp-cd-price-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}

.bzn-lp-cd-price-card__list li {
  color: var(--bzn-text);
  font-weight: 500;
  font-size: 12px;
}

.bzn-lp-cd-main {
  background: var(--bzn-white);
}

.bzn-lp-cd-left {
  padding: 80px 40px 56px;
  height: 100%;
}

.bzn-lp-cd-right {
  background: var(--bzn-green);
  color: var(--bzn-white);
  padding: 46px;
  height: 100%;
}

.bzn-lp-cd-title {
  margin: 0 0 24px;
  color: var(--bzn-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-cd-title--desc {
  margin-top: 34px;
}

.bzn-lp-cd-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 25px;
}

.bzn-lp-cd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--bzn-white);
  font-size: 20px;
  line-height: 28px;
}

.bzn-lp-cd-checklist li i {
  color: var(--bzn-white);
  margin-top: 2px;
  font-size: 16px;
}

.bzn-lp-cd-checklist--grid {
  background: rgba(var(--bzn-secondary-rgb), 0.07);
  border: 1px solid var(--bzn-green-light);
  border-radius: 12px;
  padding: 33px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 12px;
}

.bzn-lp-cd-checklist--grid li {
  color: var(--bzn-green);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.bzn-lp-cd-checklist--grid li i {
  color: var(--bzn-green);
}

.bzn-lp-cd-desc p {
  margin: 0 0 25px;
  color: var(--bzn-text);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}

.bzn-lp-cd-right__title {
  margin: 0 0 20px;
  color: var(--bzn-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-cd-right__title--spaced {
  margin-top: 50px;
}

.bzn-lp-cd-other {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 25px;
}

.bzn-lp-cd-other li a {
  color: var(--bzn-white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bzn-lp-cd-other li a i {
  margin-top: 2px;
  font-size: 12px;
}

.bzn-lp-cd-extra {
  padding: 0 0 80px;
  background: var(--bzn-white);
}

.bzn-lp-cd-extra__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.bzn-lp-cd-extra__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.bzn-lp-cd-extra__tabs .bzn-lp-cr-filters__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-size: 16px;
  padding: 12px 22px;
}

.bzn-lp-cd-extra__tabs .bzn-lp-cr-filters__pill i {
  font-size: 14px;
}

.bzn-lp-cd-extra__panel {
  padding: 28px;
  border-radius: 16px;
  background: var(--bzn-primary-tint-surface);
  border: 1px solid #ebe6dc;
  box-shadow: 0 8px 28px rgba(14, 42, 70, 0.05);
}

.bzn-lp-cd-extra__pane {
  display: none;
}

.bzn-lp-cd-extra__pane.is-active {
  display: block;
}

.bzn-lp-cd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bzn-lp-cd-modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bzn-lp-cd-module {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--bzn-white);
  overflow: hidden;
}

.bzn-lp-cd-module__trigger {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
}

.bzn-lp-cd-module__title {
  color: var(--bzn-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-cd-module__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bzn-lp-cd-module__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(var(--bzn-secondary-rgb), 0.1);
  color: var(--bzn-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.bzn-lp-cd-module__duration {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: #fff4d6;
  color: #8a6b00;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.bzn-lp-cd-module__meta i {
  color: var(--bzn-green);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.bzn-lp-cd-module.is-active .bzn-lp-cd-module__meta i {
  transform: rotate(180deg);
}

.bzn-lp-cd-module__content {
  display: none;
  padding: 0 22px 18px;
}

.bzn-lp-cd-module.is-active .bzn-lp-cd-module__content {
  display: block;
}

.bzn-lp-cd-lesson-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bzn-lp-cd-lesson-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f7faf9;
  border: 1px solid #e8efec;
}

.bzn-lp-cd-lesson-list__play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bzn-green);
  color: var(--bzn-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

.bzn-lp-cd-lesson-list__title {
  flex: 1;
  color: var(--bzn-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.bzn-lp-cd-lesson-list__time {
  color: var(--bzn-slate);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.bzn-lp-cd-empty {
  margin: 0;
  text-align: center;
  color: var(--bzn-slate);
  font-size: 16px;
  font-weight: 500;
  padding: 24px 12px;
}

.bzn-lp-cd-instructor {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bzn-lp-cd-instructor__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: var(--bzn-white);
  border: 1px solid #e2e8f0;
}

.bzn-lp-cd-instructor__head img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.bzn-lp-cd-instructor__name {
  margin: 0 0 8px;
  color: var(--bzn-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Epilogue", sans-serif;
}

.bzn-lp-cd-instructor__role {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(var(--bzn-secondary-rgb), 0.1);
  color: var(--bzn-green);
  font-size: 13px;
  font-weight: 700;
}

.bzn-lp-cd-instructor__bio {
  color: var(--bzn-charcoal);
  font-size: 16px;
  line-height: 24px;
}

.bzn-lp-cd-instructor__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-lp-cd-instructor__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c5ccc9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bzn-green);
  background: var(--bzn-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-lp-cd-instructor__social a:hover {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-cd-review-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bzn-lp-cd-review-form {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 12px;
  background: var(--bzn-primary-tint-bg);
  border: 1px dashed var(--bzn-primary-dark);
}

.bzn-lp-cd-review-form__title {
  margin: 0 0 14px;
  color: var(--bzn-heading);
  font-size: 18px;
  font-weight: 700;
}

.bzn-lp-cd-review-form__label {
  display: block;
  margin-bottom: 8px;
  color: var(--bzn-black);
  font-size: 14px;
  font-weight: 600;
}

.bzn-lp-cd-review-form__textarea {
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid #c5ccc9;
  margin-bottom: 16px;
  resize: vertical;
}

.bzn-lp-cd-review-form__textarea:focus {
  border-color: var(--bzn-green);
  box-shadow: 0 0 0 3px rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-cd-review-form .form_rating {
  margin-bottom: 16px;
}

.bzn-lp-cd-review-form .rating {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bzn-lp-cd-review-form .review-value {
  cursor: pointer;
}

.bzn-lp-cd-review-form .review-value span {
  color: #f0b429;
  font-size: 18px;
}

/* Course enrolment modal */
.bzn-lp-cd-enrol-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bzn-lp-cd-enrol-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.bzn-lp-cd-enrol-alert a {
  color: inherit;
  text-decoration: underline;
}

.bzn-lp-cd-enrol-alert--success {
  background: var(--bzn-secondary-bg-soft);
  color: var(--bzn-secondary);
  border: 1px solid rgba(var(--bzn-secondary-rgb), 0.2);
}

.bzn-lp-cd-enrol-alert--warning {
  background: var(--bzn-primary-tint-bg);
  color: var(--bzn-primary-dark);
  border: 1px solid rgba(var(--bzn-primary-rgb), 0.25);
}

.bzn-lp-cd-enrol-alert--danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.bzn-lp-cd-pay-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bzn-lp-cd-pay-wrap__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-cd-pay-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bzn-lp-cd-pay-type {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 2px solid var(--bzn-border-soft);
  border-radius: 14px;
  background: var(--bzn-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bzn-lp-cd-pay-type:hover {
  border-color: rgba(var(--bzn-secondary-rgb), 0.35);
}

.bzn-lp-cd-pay-type.is-active {
  border-color: var(--bzn-secondary);
  background: var(--bzn-secondary-bg-soft);
  box-shadow: 0 8px 24px rgba(var(--bzn-secondary-rgb), 0.1);
}

.bzn-lp-cd-pay-type__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bzn-primary-surface);
  color: var(--bzn-primary-dark);
  font-size: 18px;
}

.bzn-lp-cd-pay-type.is-active .bzn-lp-cd-pay-type__icon {
  background: var(--bzn-secondary);
  color: var(--bzn-white);
}

.bzn-lp-cd-pay-type__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bzn-lp-cd-pay-type__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bzn-heading);
  line-height: 1.3;
}

.bzn-lp-cd-pay-type__hint {
  font-size: 13px;
  font-weight: 500;
  color: var(--bzn-muted);
  line-height: 1.4;
}

.bzn-lp-cd-pay-gateway__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-cd-pay-gateway__select,
.bzn-lp-cd-enrol-input,
.bzn-lp-cd-enrol-file {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--bzn-border-soft);
  border-radius: 10px;
  background: var(--bzn-white);
  color: var(--bzn-text);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-lp-cd-pay-gateway__select:focus,
.bzn-lp-cd-enrol-input:focus,
.bzn-lp-cd-enrol-file:focus {
  outline: none;
  border-color: var(--bzn-secondary);
  box-shadow: 0 0 0 3px rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-cd-enrol-field {
  margin-bottom: 12px;
}

.bzn-lp-cd-enrol-field:last-child {
  margin-bottom: 0;
}

.bzn-lp-cd-enrol-error {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}

.bzn-lp-cd-stripe-element {
  padding: 12px 14px;
  border: 1px solid var(--bzn-border-soft);
  border-radius: 10px;
  background: #f8faf9;
}

.bzn-lp-cd-offline-info {
  padding: 14px;
  border-radius: 12px;
  background: var(--bzn-secondary-bg-soft);
  border: 1px solid rgba(var(--bzn-secondary-rgb), 0.15);
}

.bzn-lp-cd-offline-info__block + .bzn-lp-cd-offline-info__block {
  margin-top: 12px;
}

.bzn-lp-cd-offline-info__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-cd-offline-info__block p,
.bzn-lp-cd-offline-info__html {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bzn-slate);
}

.bzn-lp-cd-coupon {
  display: flex;
  gap: 10px;
}

.bzn-lp-cd-coupon .bzn-lp-cd-enrol-input {
  flex: 1;
}

.bzn-lp-cd-coupon__btn {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: var(--bzn-secondary);
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bzn-lp-cd-coupon__btn:hover {
  background: var(--bzn-secondary-hover);
}

.bzn-lp-cd-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bzn-primary-tint-bg);
  font-size: 14px;
  color: var(--bzn-heading);
}

.bzn-lp-cd-discount strong {
  color: var(--bzn-secondary);
  font-size: 16px;
}

.bzn-lp-cd-enrol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 100px;
  background: var(--bzn-primary);
  color: var(--bzn-white);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bzn-lp-cd-enrol-btn:hover {
  background: var(--bzn-primary-dark);
}

.bzn-lp-cd-pay {
  margin: 16px 0 8px;
}

.bzn-lp-cd-pay .cdx-pay-summary {
  margin-bottom: 12px;
}

/* Enrol modal: above topbar (1100) / mobile nav (1120); compact width */
.bzn-lp-cd-enrol-modal.modal {
  z-index: 1300 !important;
}

body.modal-open:has(.bzn-lp-cd-enrol-modal.show) .modal-backdrop,
body.modal-open .modal-backdrop.show {
  z-index: 1290 !important;
}

.bzn-lp-cd-enrol-modal .modal-dialog {
  max-width: 460px;
  width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
}

.bzn-lp-cd-enrol-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.bzn-lp-cd-enrol-modal .modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eef2f7;
}

.bzn-lp-cd-enrol-modal .modal-title {
  font-size: 18px;
  font-weight: 700;
}

.bzn-lp-cd-enrol-modal .modal-body {
  padding: 20px;
}

.bzn-lp-cd-enrol-modal .bzn-lp-cd-pay .cdx-pay-types {
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .bzn-lp-cd-enrol-modal .bzn-lp-cd-pay .cdx-pay-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .bzn-lp-cd-pay-types {
    grid-template-columns: 1fr;
  }

  .bzn-lp-cd-coupon {
    flex-direction: column;
  }
}

.bzn-lp-cd-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bzn-lp-cd-review-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--bzn-white);
  border: 1px solid #e2e8f0;
}

.bzn-lp-cd-review-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bzn-lp-cd-review-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.bzn-lp-cd-review-item h5 {
  margin: 0;
  color: var(--bzn-heading);
  font-size: 16px;
  font-weight: 700;
}

.bzn-lp-cd-review-item__head > span {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

.bzn-lp-cd-review-item__stars {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  gap: 4px;
}

.bzn-lp-cd-review-item__stars li {
  color: #f0b429;
  font-size: 13px;
}

.bzn-lp-cd-review-item p {
  margin: 0;
  color: var(--bzn-charcoal);
  font-size: 15px;
  line-height: 24px;
}

/* Page: Login & forgot password */

.bzn-lp-login-page {
  min-height: 100vh;
  background: #f0f0f0;
}

.bzn-lp-login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
}

.bzn-lp-login__visual {
  position: relative;
  overflow: hidden;
}

.bzn-lp-login__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.bzn-lp-login__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 2;
  transform: translateY(150px);
}

.bzn-lp-login__panel {
  display: flex;
  align-items: center;
  padding: 32px 32px 32px 0;
}

.bzn-lp-login__box {
  width: min(100%, 640px);
}

.bzn-lp-login__logo {
  display: block;
  text-align: center;
}

.bzn-lp-login__logo img {
  max-width: 210px;
  width: 100%;
  object-fit: cover;
  margin: 0 auto 20px;
}

.bzn-lp-login__title {
  margin: 0 0 45px;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.bzn-lp-login__form {
  display: grid;
  gap: 30px;
}

.bzn-lp-login__field > span {
  display: block;
  margin-bottom: 10px;
  color: #1d1f23;
  font-size: 16px;
  font-weight: 700;
}

.bzn-lp-login__field > span em {
  color: #FF0606;
  font-style: normal;
  font-size: 18px !important;
}

.bzn-lp-login__field input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #D9EBFF;
  background: transparent;
  padding: 0 16px;
  color: #919eab;
  font-size: 16px;
  outline: none;
  font-weight: 500;
}

.bzn-lp-login__field input::placeholder {
  color: #adb3b8;
}

.bzn-lp-login__field input:focus {
  border-color: var(--bzn-green);
  background: var(--bzn-white);
}

.bzn-lp-login__submit {
  margin-top: 30px;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  border: 0;
  background: var(--bzn-yellow);
  color: var(--bzn-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bzn-lp-login__forgot {
  display: block;
  margin-top: 30px;
  color: #6B7280;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.bzn-lp-login__forgot:hover {
  color: var(--bzn-green);
}

/* Page: Our team */
.bzn-lp-tm-intro {
  padding: 96px 0 72px;
}

.bzn-lp-cr-hero__title--our-team {
  max-width: 720px;
}

.bzn-lp-tm-intro__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bzn-heading);
  margin: 20px 0 25px;
}

.bzn-lp-tm-intro__text {
  font-size: 17px;
  line-height: 26px;
  color: var(--bzn-heading);
  margin: 0;
  max-width: 560px;
}

.bzn-lp-tm-intro__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
  padding: 0 12px;
}

.bzn-lp-tm-intro__shape {
  position: absolute;
  z-index: 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  right: 0;
  bottom: 0;
  left: auto;
  pointer-events: none;
  user-select: none;
}

.bzn-lp-tm-intro__girl {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 78%;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  display: block;
  object-fit: contain;
  transform: translateY(-45px);
}

.bzn-lp-tm-grid {
  padding: 0 0 96px;
}

.bzn-lp-tm-grid .bzn-lp-instructor-card__info {
  min-width: 0;
  width: calc(100% - 64px);
  max-width: 100%;
  padding: 10px 16px;
}

.bzn-lp-tm-grid .bzn-lp-instructor-card__info strong {
  font-size: 18px;
}

/* Page: FAQ */
.bzn-lp-faq {
  padding: 96px 0 56px;
}

.bzn-lp-faq__head {
  margin-bottom: 50px;
}

.bzn-lp-faq__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  color: var(--bzn-heading);
  font-weight: 700;
}

.bzn-lp-faq__text {
  margin: 14px 0 0;
  max-width: 780px;
  font-size: 17px;
  line-height: 26px;
  color: var(--bzn-slate);
}

.bzn-lp-faq-item {
  border: 1px solid #E5E7EB90;
  border-radius: 20px;
  background: var(--bzn-white);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(14, 42, 70, 0.05);
  margin-bottom: 40px;
}

.bzn-lp-faq-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--bzn-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.bzn-lp-faq-item__trigger i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bzn-green);
  font-size: 25px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bzn-lp-faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #6B7280;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

.bzn-lp-faq-item__content > * {
  margin: 0;
  padding: 0 20px 18px;
}

.bzn-lp-faq-item__content p {
  margin: 0;
}

.bzn-lp-faq-item__content p:not(:last-child) {
  margin-bottom: 18px;
}

.bzn-lp-faq-item.is-active .bzn-lp-faq-item__content {
  max-height: 220px;
}

.bzn-lp-faq-item.is-active .bzn-lp-faq-item__trigger i {
  transform: rotate(45deg);
  color: var(--bzn-green);
}

/* Page: Category detail */
.bzn-lp-cr-hero__title--ctd {
  max-width: 760px;
}

.bzn-lp-ctd-main {
  background: var(--bzn-white);
}

.bzn-lp-ctd-content {
  padding: 80px 0 76px;
}

.bzn-lp-ctd-article__lead {
    margin: 0 0 30px;
    color: var(--bzn-charcoal);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Epilogue', sans-serif;
}

.bzn-lp-ctd-article__gallery {
  margin-bottom: 32px;
}

.bzn-lp-ctd-article__gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.bzn-lp-ctd-block {
  margin-bottom: 28px;
}

.bzn-lp-ctd-block:last-child {
  margin-bottom: 0;
}

.bzn-lp-ctd-block__title {
  margin: 0 0 25px;
  color: var(--bzn-charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-ctd-block p {
  margin: 0;
  color: var(--bzn-charcoal);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-ctd-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bzn-lp-ctd-search {
  position: relative;
}

.bzn-lp-ctd-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #3C3C43;
  font-size: 16px;
  pointer-events: none;
}

.bzn-lp-ctd-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--bzn-black);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3C3C4372;
  background: var(--bzn-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-lp-ctd-search input:focus {
  border-color: var(--bzn-green);
  box-shadow: 0 0 0 3px rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-ctd-search input::placeholder {
  color: #3C3C43;
}

.bzn-lp-ctd-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bzn-lp-ctd-cats__item {
  border: 1px solid var(--bzn-border);
  background: var(--bzn-white);
  border-radius: 5px;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--bzn-pure-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-lp-ctd-cats__item i {
  color: var(--bzn-black);
  font-size: 16px;
  transition: color 0.2s ease;
}

.bzn-lp-ctd-cats__item:hover {
  background: var(--bzn-green);
  border-color: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-ctd-cats__item:hover i {
  color: var(--bzn-white);
}

.bzn-lp-ctd-tags__title {
  margin: 0 0 22px;
  color: var(--bzn-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.bzn-lp-ctd-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-lp-ctd-tags__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 100px;
  background: var(--bzn-green);
  color: var(--bzn-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease;
}

.bzn-lp-ctd-tags__pill:hover {
  background: #084434;
  color: var(--bzn-white);
}

/* Dashboard: layout shell */
.bzn-lp-db-userbar {
  background: var(--bzn-heading);
  padding: 28px 0;
}

.bzn-lp-db-userbar__inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

.bzn-lp-db-userbar__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bzn-green-light);
  color: var(--bzn-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.bzn-lp-db-userbar__avatar.has-photo {
  background: var(--bzn-white);
}

.bzn-lp-db-userbar__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.bzn-lp-db-userbar__title {
  margin: 0 0 6px;
  color: var(--bzn-white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-db-userbar__welcome {
  margin: 0;
  color: var(--bzn-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.bzn-lp-db-main {
  padding: 80px 0 80px;
  background: #f5f6f7;
}

.bzn-lp-db-side {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bzn-green) 0%, var(--bzn-green-light) 100%);
  padding: 25px 0 30px;
}

.bzn-lp-db-nav {
  display: flex;
  flex-direction: column;
}

.bzn-lp-db-nav__link, .bzn-lp-db-nav__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF92;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}
.bzn-lp-db-nav__link:not(:last-child),
.bzn-lp-db-nav__toggle:not(:last-child) {
  border-bottom: 1px solid #FFFFFF50;
}

.bzn-lp-db-nav__toggle {
  justify-content: space-between;
}

.bzn-lp-db-nav__link img,
.bzn-lp-db-nav__toggle .bzn-lp-db-nav__toggle-left img {
  max-width: 26px;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.57;
  transition: opacity 0.2s ease;
}

.bzn-lp-db-nav__link:hover img,
.bzn-lp-db-nav__link.is-active img,
.bzn-lp-db-nav__toggle:hover .bzn-lp-db-nav__toggle-left img,
.bzn-lp-db-nav__toggle.is-active .bzn-lp-db-nav__toggle-left img {
  opacity: 1;
}

.bzn-lp-db-nav__toggle-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bzn-lp-db-nav__link i,
.bzn-lp-db-nav__toggle-left i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.bzn-lp-db-nav__chev {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, color 0.2s ease;
}

.bzn-lp-db-nav__link:hover,
.bzn-lp-db-nav__toggle:hover,
.bzn-lp-db-nav__link.is-active,
.bzn-lp-db-nav__toggle.is-active {
  color: var(--bzn-white);
}

.bzn-lp-db-nav__toggle:hover .bzn-lp-db-nav__chev,
.bzn-lp-db-nav__toggle.is-active .bzn-lp-db-nav__chev,
.bzn-lp-db-nav__group.is-open .bzn-lp-db-nav__chev {
  color: var(--bzn-white);
}

.bzn-lp-db-nav__group.is-open .bzn-lp-db-nav__chev {
  transform: rotate(180deg);
}

.bzn-lp-db-nav__sub {
  display: none;
  padding: 4px 0 8px;
}

.bzn-lp-db-nav__sub-link {
  display: inline-flex;
  padding: 10px 20px 10px 52px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.2s ease, color 0.2s ease;
  align-items: center;
  gap: 10px;
}

.bzn-lp-db-nav__sub-link img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.bzn-lp-db-nav__sub-link:hover,
.bzn-lp-db-nav__sub-link.is-active {
  color: var(--bzn-white);
}

.bzn-lp-db-nav__sub-link:hover img,
.bzn-lp-db-nav__sub-link.is-active img {
  opacity: 1;
}

.bzn-lp-db-nav__link--signout {
  padding-bottom: 0;
}

.bzn-lp-db-stats {
  margin-bottom: 28px;
}

.bzn-lp-db-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 110px;
  padding: 20px 22px;
  border-radius: 24px;
  color: var(--bzn-white);
  box-shadow: 0 8px 24px rgba(14, 42, 70, 0.12);
}

.bzn-lp-db-stat__icon {
  width: 71px;
  height: 71px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.bzn-lp-db-stat__num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-stat__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-stat--orange {
  background: #FF7E21
}

.bzn-lp-db-stat--teal {
  background: #007867;
}

.bzn-lp-db-stat--blue {
  background: #2D8CFE;
}

.bzn-lp-db-info {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: var(--bzn-white);
  padding: 24px 28px 8px;
  box-shadow: 0 4px 18px rgba(14, 42, 70, 0.06);
}

.bzn-lp-db-info__title {
  margin: 0 0 15px;
  color: var(--bzn-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid #00000027;
  padding-bottom: 20px;
}

.bzn-lp-db-table {
  --bs-table-bg: transparent;
}

.bzn-lp-db-table > :not(caption) > * > * {
  padding: 18px 0;
  border-bottom-color: #E5E7EB;
  vertical-align: middle;
}

.bzn-lp-db-table > tbody > tr:last-child > * {
  border-bottom: 0;
}

.bzn-lp-db-table th {
  width: 34%;
  color: #00000082;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.bzn-lp-db-table td {
  color: var(--bzn-black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
}

/* Dashboard: My profile */
.bzn-lp-db-prof {
  border: 1px solid var(--bzn-border-soft);
  border-radius: 12px;
  background: var(--bzn-white);
  padding: 28px 40px 32px;
  box-shadow: 0 8px 28px rgba(14, 42, 70, 0.08);
}

.bzn-lp-db-prof__title {
  margin: 0 0 40px;
  color: var(--bzn-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-db-prof__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.bzn-lp-db-prof__avatar {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px dashed var(--bzn-green-light);
  background: #eaf6f2;
  color: rgba(var(--bzn-secondary-rgb), 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}

.bzn-lp-db-prof__avatar-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--bzn-green-light);
}

.bzn-lp-db-prof__avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.bzn-lp-db-prof__avatar.has-photo .bzn-lp-db-prof__avatar-text {
  display: none;
}

.bzn-lp-db-prof__avatar.has-photo .bzn-lp-db-prof__avatar-img {
  display: block;
}

.bzn-lp-db-prof__file {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.bzn-lp-db-prof__choose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--bzn-green-light);
  border-radius: 10px;
  background: rgba(var(--bzn-secondary-rgb), 0.09);
  color: var(--bzn-green-light);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-lp-db-prof__choose:hover {
  background: var(--bzn-green);
  color: var(--bzn-white);
}

.bzn-lp-db-prof__hint {
  margin: 12px 0 0;
  color: var(--bzn-black);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.bzn-lp-db-prof__label {
  display: block;
  margin-bottom: 10px;
  color: var(--bzn-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.bzn-lp-db-prof__input {
  width: 100%;
  height: 52px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #88888915;
  color: var(--bzn-gray);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  outline: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.bzn-lp-db-prof__input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.bzn-lp-db-prof__input:focus {
  background: var(--bzn-white);
  box-shadow: 0 0 0 2px rgba(var(--bzn-secondary-rgb), 0.2);
}

.bzn-lp-db-prof__textarea {
  height: auto;
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.bzn-lp-db-prof__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bzn-lp-db-prof__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.bzn-lp-db-prof__btn:hover {
  opacity: 0.9;
}

.bzn-lp-db-prof__btn--close {
  background: var(--bzn-black);
  color: var(--bzn-white);
}

.bzn-lp-db-prof__btn--update {
  background: var(--bzn-green-light);
  color: var(--bzn-white);
}

/* Dashboard: Change password */
.bzn-lp-db-pwd__desc {
  margin: -12px 0 28px;
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bzn-lp-db-pwd__field {
  position: relative;
}

.bzn-lp-db-pwd__input {
  padding-right: 52px;
}

.bzn-lp-db-pwd__toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--bzn-gray);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bzn-lp-db-pwd__toggle:hover {
  color: var(--bzn-green-light);
}

/* Dashboard: Customer courses + DataTables */
.bzn-lp-db-courses {
  border: 1px solid var(--bzn-border-soft);
  border-radius: 12px;
  background: var(--bzn-white);
  padding: 24px 28px 20px;
  box-shadow: 0 8px 28px rgba(14, 42, 70, 0.08);
}

.bzn-lp-db-courses__title {
  margin: 0 0 20px;
  color: var(--bzn-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-lp-db-courses__dt-top {
  margin-bottom: 16px;
}

.bzn-lp-db-courses__dt-bottom {
  margin-top: 16px;
}

.bzn-lp-db-courses .dataTables_length label,
.bzn-lp-db-courses .dataTables_filter label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 600 !important;
}

.bzn-lp-db-courses .dataTables_length select, .bzn-lp-db-courses .dataTables_filter input {
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid var(--bzn-border);
  border-radius: 8px;
  color: var(--bzn-black);
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 4px 0 #00000033;
  font-weight: 600;
}

.bzn-lp-db-courses .dataTables_filter input {
  min-width: 220px;
  min-height: 44px;
  background: #D9D9D912;
}

.bzn-lp-db-courses .dataTables_filter input:focus,
.bzn-lp-db-courses .dataTables_length select:focus {
  border-color: var(--bzn-green);
  box-shadow: 0 0 0 2px rgba(var(--bzn-secondary-rgb), 0.12);
}

.bzn-lp-db-courses .dataTables_info {
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 600;
  padding-top: 4px;
}

.bzn-lp-db-courses .dataTables_paginate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 40px;
}

.bzn-lp-db-courses .dataTables_paginate .pagination,
.bzn-lp-db-courses div.dataTables_paginate ul.pagination,
#bznLpCustomerCoursesTable_wrapper .dataTables_paginate .pagination {
  display: flex;
  align-items: center !important;
  margin: 0;
  gap: 8px;
}

.bzn-lp-db-courses .dataTables_paginate .page-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.bzn-lp-db-courses .dataTables_paginate .page-link {
  min-width: auto;
  min-height: auto;
  padding: 0 8px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--bzn-black) !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: none !important;
}

.bzn-lp-db-courses .dataTables_paginate .page-item.previous .page-link,
.bzn-lp-db-courses .dataTables_paginate .page-item.next .page-link,
.bzn-lp-db-courses .dataTables_paginate .paginate_button.previous,
.bzn-lp-db-courses .dataTables_paginate .paginate_button.next {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--bzn-black) !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: none !important;
}

.bzn-lp-db-courses .dataTables_paginate .page-item.previous .page-link:hover,
.bzn-lp-db-courses .dataTables_paginate .page-item.next .page-link:hover,
.bzn-lp-db-courses .dataTables_paginate .page-item.previous .page-link:focus,
.bzn-lp-db-courses .dataTables_paginate .page-item.next .page-link:focus,
.bzn-lp-db-courses .dataTables_paginate .page-item:not(.active) .page-link:hover,
.bzn-lp-db-courses .dataTables_paginate .page-item:not(.active) .page-link:focus {
  background: transparent !important;
  border: 0 !important;
  color: var(--bzn-black) !important;
  box-shadow: none !important;
}

.bzn-lp-db-courses .dataTables_paginate .page-item.active .page-link, .bzn-lp-db-courses .dataTables_paginate .paginate_button.active .page-link, .bzn-lp-db-courses .dataTables_paginate .paginate_button.current {
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px !important;
  border: 1px solid #1d7bf5 !important;
  border-radius: 8px !important;
  background: #1d7bf5 !important;
  color: var(--bzn-white) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
}

.bzn-lp-db-courses .dataTables_paginate .page-item.active .page-link:hover,
.bzn-lp-db-courses .dataTables_paginate .page-item.active .page-link:focus {
  background: #1d7bf5 !important;
  border-color: #1d7bf5 !important;
  color: var(--bzn-white) !important;
}

.bzn-lp-db-courses .dataTables_paginate .page-item.disabled .page-link,
.bzn-lp-db-courses .dataTables_paginate .paginate_button.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.bzn-lp-db-courses .dataTables_paginate {
  margin-top: 20px !important;
  padding-bottom: 20px;
}

.bzn-lp-db-courses-table.table.dataTable {
  margin-bottom: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 40px !important;
}

.bzn-lp-db-courses-table thead th {
  background: #2D8CFE12;
  border-bottom: 0;
  color: var(--bzn-black);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  white-space: nowrap;
}

.bzn-lp-db-courses-table tbody td {
  border-bottom: 1px solid #eef0f2;
  color: var(--bzn-charcoal);
  font-size: 15px;
  font-weight: 400;
  padding: 16px;
  vertical-align: middle;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-courses-table tbody tr:last-child td {
  border-bottom: 0;
}

.bzn-lp-db-courses-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #fafbfc;
}

.bzn-lp-db-courses-table.table-striped > tbody > tr:nth-of-type(even) > * {
  background-color: var(--bzn-white);
}

.bzn-lp-db-courses__details {
  min-width: 88px;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--bzn-blue-hover);
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.bzn-lp-db-courses__details:hover {
  background: #1d4ed8;
  color: var(--bzn-white);
}

.bzn-lp-db-courses__status {
  color: #3EB2B2;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.bzn-lp-db-courses__invoice {
  width: 60px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--bzn-primary-blue);
  color: var(--bzn-white);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.bzn-lp-db-courses__invoice:hover {
  background: #1d4ed8;
  color: var(--bzn-white);
}

/* Dashboard: Purchase history invoice */
.bzn-lp-db-invoice__card {
  border: 1px solid var(--bzn-border-soft);
  border-radius: 12px;
  background: var(--bzn-white);
  box-shadow: 0 8px 28px rgba(14, 42, 70, 0.08);
}
.bzn-lp-db-invoice-wrap {
  padding: 28px 32px 32px;
}

.bzn-lp-db-invoice__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--bzn-heading);
  padding: 34px 28px 20px;
  border-radius: 12px 12px 0 0;
}

.bzn-lp-db-invoice__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bzn-lp-db-invoice__logo {
  pointer-events: auto;
}

.bzn-lp-db-invoice__tagline {
  margin: 0;
  color: var(--bzn-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.bzn-lp-db-invoice__meta {
  text-align: right;
}

.bzn-lp-db-invoice__meta-item {
  margin: 0 0 4px;
  color: var(--bzn-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-invoice__meta-item:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: #FFFFFF82;
}

.bzn-lp-db-invoice__meta-item span {
  display: block;
  font-weight: 500;
  color: #FFFFFF82;
  margin-bottom: 2px;
}

.bzn-lp-db-invoice__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 50px;
  padding: 14px 20px;
  background: #2DC07133;
}

.bzn-lp-db-invoice__status-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bzn-green);
  display: inline-block;
  margin-right: 10px;
}

.bzn-lp-db-invoice__status-text {
  color: var(--bzn-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.bzn-lp-db-invoice__status-dl-text {
  display: inline-block;
  margin-right: 10px;
  color: var(--bzn-black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.bzn-lp-db-invoice__status-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--bzn-primary-blue);
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bzn-lp-db-invoice__status-dl:hover {
  background: #1d4ed8;
}

.bzn-lp-db-invoice__details {
  margin-bottom: 50px;
}

.bzn-lp-db-invoice__block-title {
  margin: 0 0 14px;
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 1px solid #00000027;
  margin-bottom: 30px;
}

.bzn-lp-db-invoice__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-lp-db-invoice__list li {
  margin-bottom: 30px;
  color: var(--bzn-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.bzn-lp-db-invoice__list li:last-child {
  margin-bottom: 0;
}

.bzn-lp-db-invoice__list-label {
  display: block;
  min-width: 130px;
  color: var(--bzn-gray);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 2px;
}

.bzn-lp-db-invoice__list a {
  color: var(--bzn-primary-blue);
  text-decoration: none;
}

.bzn-lp-db-invoice__list a:hover {
  text-decoration: underline;
}

.bzn-lp-db-invoice__paid {
  color: #2DC071;
  font-weight: 700;
}

.bzn-lp-db-invoice__table-title {
  margin: 0 0 20px;
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  border-bottom: 1px solid #00000027;
  padding-bottom: 12px;
}

.bzn-lp-db-invoice__table-wrap {
  margin-bottom: 35px;
}

.bzn-lp-db-invoice__table thead th {
  background: #2d8cfe12;
  border-bottom: 0;
  color: var(--bzn-black);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  white-space: nowrap;
}

.bzn-lp-db-invoice__table tbody td {
  border-bottom: 1px solid #eef0f2;
  color: var(--bzn-black);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  vertical-align: middle;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-invoice__course-link {
  color: var(--bzn-primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.bzn-lp-db-invoice__course-link:hover {
  text-decoration: underline;
}

.bzn-lp-db-invoice__summary {
  margin-left: auto;
  max-width: 320px;
}

.bzn-lp-db-invoice__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
  color: var(--bzn-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px dashed var(--bzn-pure-black);
  padding-bottom: 10px;
}

.bzn-lp-db-invoice__summary-row span:last-child {
  font-weight: 700;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-invoice__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--bzn-green) 0%, var(--bzn-green-light) 100%);
  color: var(--bzn-white);
}

.bzn-lp-db-invoice__total-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bzn-lp-db-invoice__total-amount {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Epilogue', sans-serif;
}

.bzn-lp-db-invoice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 60px;
}

.bzn-lp-db-invoice__btn {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bzn-lp-db-invoice__btn:hover {
  opacity: 0.9;
}

/* Brand-aware icons — recolor static SVG assets via CSS mask */
.bzn-lp-icon--secondary {
  display: inline-block;
  flex-shrink: 0;
  background-color: var(--bzn-secondary);
  -webkit-mask: var(--bzn-icon-mask) center / contain no-repeat;
  mask: var(--bzn-icon-mask) center / contain no-repeat;
}

.bzn-lp-icon--tick {
  --bzn-icon-mask: url(../img/features-tick.svg);
  width: 17px;
  height: 17px;
}

.bzn-lp-icon--comment {
  --bzn-icon-mask: url(../img/comment.svg);
  width: 17px;
  height: 16px;
}

.bzn-lp-icon--calendar {
  --bzn-icon-mask: url(../img/calender.svg);
  width: 14px;
  height: 15px;
}

.bzn-lp-icon-instructor-arrow {
  display: block;
}

.bzn-lp-db-invoice__btn--back {
  background: var(--bzn-black);
  color: var(--bzn-white) !important;
}

.bzn-lp-db-invoice__btn--download {
  background: var(--bzn-green-light);
  color: var(--bzn-white) !important;
}
.bzn-lp-logo.bzn-lp-logo--light img {
  max-width: 280px;
}

/* Course enrolment success */
.bzn-lp-page-enrol-success .bzn-lp-cr-hero--enrol-success .bzn-lp-cr-hero__title {
  max-width: 720px;
}

.bzn-lp-enrol-success {
  padding: 56px 0 96px;
  background: var(--bzn-bg-soft, #f8fafc);
}

.bzn-lp-enrol-success__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--bzn-white);
  border: 1px solid var(--bzn-border-soft, #e2e8f0);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.bzn-lp-enrol-success__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.bzn-lp-enrol-success__icon--success {
  background: var(--bzn-secondary-bg-soft);
  color: var(--bzn-secondary);
  border: 1px solid rgba(var(--bzn-secondary-rgb), 0.2);
}

.bzn-lp-enrol-success__icon--pending {
  background: var(--bzn-primary-tint-bg);
  color: var(--bzn-primary-dark);
  border: 1px solid rgba(var(--bzn-primary-rgb), 0.25);
}

.bzn-lp-enrol-success__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  color: var(--bzn-heading);
  font-weight: 800;
}

.bzn-lp-enrol-success__messages {
  margin-bottom: 24px;
}

.bzn-lp-enrol-success__messages p {
  margin: 0 0 10px;
  color: var(--bzn-text-muted, #64748b);
  font-size: 16px;
  line-height: 1.7;
}

.bzn-lp-enrol-success__messages p:last-child {
  margin-bottom: 0;
}

.bzn-lp-enrol-success__content {
  margin: 28px 0;
  padding: 24px;
  border-radius: 16px;
  background: var(--bzn-bg-soft, #f8fafc);
  border: 1px solid var(--bzn-border-soft, #e2e8f0);
  text-align: left;
  color: var(--bzn-body);
}

.bzn-lp-enrol-success__content p:last-child {
  margin-bottom: 0;
}

.bzn-lp-enrol-success__thanks {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bzn-heading);
}

.bzn-lp-enrol-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 767px) {
  .bzn-lp-enrol-success {
    padding: 40px 0 72px;
  }

  .bzn-lp-enrol-success__card {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .bzn-lp-enrol-success__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bzn-lp-enrol-success__actions .bzn-lp-btn-green-pill,
  .bzn-lp-enrol-success__actions .bzn-lp-btn-view {
    justify-content: center;
    width: 100%;
  }
}

/* 404 page */
.bzn-lp-page-404 .bzn-lp-cr-hero--404 .bzn-lp-cr-hero__title {
  letter-spacing: 0.08em;
}

.bzn-lp-404 {
  padding: 56px 0 96px;
  background: var(--bzn-bg-soft, #f8fafc);
}

.bzn-lp-404__card {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 40px 48px;
  background: var(--bzn-white);
  border: 1px solid var(--bzn-border-soft, #e2e8f0);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.bzn-lp-404__visual {
  margin-bottom: 12px;
}

.bzn-lp-404__illustration {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
}

.bzn-lp-404__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  color: var(--bzn-heading);
  font-weight: 800;
}

.bzn-lp-404__messages {
  max-width: 560px;
  margin: 0 auto 28px;
}

.bzn-lp-404__messages p {
  margin: 0;
  color: var(--bzn-text-muted, #64748b);
  font-size: 16px;
  line-height: 1.7;
}

.bzn-lp-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.bzn-lp-cr-toolbar__ajax {
  display: contents;
}

.bzn-lp-ajax-listing.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}


/* Portfolio details slider — fixed height + full-bleed object-fit cover */
.portfolio-details-slider,
.portfolio-details-slider.slick-slider {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.portfolio-details-slider .slick-list {
    overflow: hidden;
    margin: 0 !important;
}
.portfolio-details-slider .slick-track {
    display: flex !important;
    align-items: stretch;
    margin-left: 0 !important;
}
.portfolio-details-slider .slick-slide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}
.portfolio-details-slider .slick-slide > div,
.portfolio-details-slider .slick-slide > a,
.portfolio-details-slider a.img-popup {
    display: block !important;
    width: 100% !important;
    height: 480px;
    overflow: hidden;
    background: #ececec;
    margin: 0 !important;
    padding: 0 !important;
}
.portfolio-details-slider .slick-slide img,
.portfolio-details-slider a.img-popup img,
.portfolio-details-slider img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.portfolio-details-slider .slick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    border: none;
    background: var(--clr-primary, #1a1a1a);
    cursor: pointer;
}
.portfolio-details-slider .slick-arrow.prev-arrow { left: 12px; }
.portfolio-details-slider .slick-arrow.next-arrow { right: 12px; }
@media (max-width: 991px) {
    .portfolio-details-slider .slick-slide > div,
    .portfolio-details-slider .slick-slide > a,
    .portfolio-details-slider a.img-popup { height: 360px; }
}
@media (max-width: 575px) {
    .portfolio-details-slider .slick-slide > div,
    .portfolio-details-slider .slick-slide > a,
    .portfolio-details-slider a.img-popup { height: 260px; }
}
