/*
 Theme Name:   Virginia Business Hub Child
 Theme URI:    https://virginiabusinesshub.com
 Description:  Custom child theme for Virginia Business Hub, based on Astra.
 Author:       Virginia Business Hub
 Author URI:   https://virginiabusinesshub.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  vbh-child
*/

/* ============================================================
   VIRGINIA BUSINESS HUB DESIGN SYSTEM
   Brand: Deep charcoal + Cardinal red + Virginia gray
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  /* Core brand colors */
  --vbh-charcoal:       #141414;
  --vbh-dark-gray:      #333333;
  --vbh-gray:           #bfbfbf;
  --vbh-light-gray:     #f5f5f5;
  --vbh-white:          #ffffff;
  --vbh-red:            #e01010;
  --vbh-red-dark:       #b80d0d;
  --vbh-border:         #e6e6e6;
  --vbh-muted-text:     #737373;

  /* Gradients */
  --vbh-gradient-hero:  linear-gradient(135deg, #141414 0%, #262626 100%);
  --vbh-gradient-red:   linear-gradient(135deg, #e01010 0%, #b80d0d 100%);
  --vbh-gradient-card:  linear-gradient(180deg, #ffffff 0%, #fafafa 100%);

  /* Shadows */
  --vbh-shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --vbh-shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --vbh-shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --vbh-shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --vbh-shadow-red: 0 10px 30px -10px rgb(224 16 16 / 0.3);

  /* Radius */
  --vbh-radius:     0.5rem;
  --vbh-radius-lg:  1rem;
  --vbh-radius-xl:  1.5rem;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vbh-charcoal);
  background-color: var(--vbh-white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--vbh-charcoal);
  margin-top: 0;
}

a { color: var(--vbh-red); text-decoration: none; }
a:hover { color: var(--vbh-red-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   ASTRA OVERRIDES — strip default padding/margins
   ============================================================ */
.ast-container { max-width: 1200px !important; }
#masthead { display: none !important; }
.site-footer { display: none !important; }
.ast-above-header-bar { display: none !important; }
.ast-below-header-bar { display: none !important; }
.entry-header, .ast-breadcrumbs-wrapper { display: none; }
.entry-content { padding: 0 !important; margin: 0 !important; }
.ast-article-single { padding: 0 !important; }
#content { padding: 0 !important; }
.site-content { padding: 0 !important; }
.ast-page-builder-template #content { padding: 0 !important; }

/* ============================================================
   VBH HEADER
   ============================================================ */
.vbh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vbh-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.vbh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.vbh-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.vbh-header__logo img {
  height: 40px;
  width: auto;
}
.vbh-header__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vbh-white);
  line-height: 1.1;
}
.vbh-header__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vbh-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vbh-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--vbh-radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.vbh-nav a:hover,
.vbh-nav a.current-menu-item {
  color: var(--vbh-white);
  background: rgba(255,255,255,0.08);
}
.vbh-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vbh-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vbh-white);
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .vbh-nav { display: none; }
  .vbh-header__mobile-toggle { display: block; }
  .vbh-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--vbh-charcoal);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0.25rem;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.vbh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--vbh-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.vbh-btn--primary {
  background: var(--vbh-red);
  color: var(--vbh-white);
  border-color: var(--vbh-red);
}
.vbh-btn--primary:hover {
  background: var(--vbh-red-dark);
  border-color: var(--vbh-red-dark);
  color: var(--vbh-white);
  transform: translateY(-1px);
  box-shadow: var(--vbh-shadow-red);
}
.vbh-btn--outline {
  background: transparent;
  color: var(--vbh-white);
  border-color: rgba(255,255,255,0.4);
}
.vbh-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--vbh-white);
  color: var(--vbh-white);
}
.vbh-btn--outline-dark {
  background: transparent;
  color: var(--vbh-charcoal);
  border-color: var(--vbh-border);
}
.vbh-btn--outline-dark:hover {
  background: var(--vbh-light-gray);
  color: var(--vbh-charcoal);
}
.vbh-btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}
.vbh-btn--xl {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.vbh-btn--sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.vbh-hero {
  position: relative;
  background: var(--vbh-gradient-hero);
  overflow: hidden;
  padding: 5rem 0 8rem;
}
.vbh-hero__bg-shape {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}
.vbh-hero__bg-shape svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  color: #fff;
}
.vbh-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.vbh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224,16,16,0.2);
  border: 1px solid rgba(224,16,16,0.3);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.vbh-hero__badge .heart {
  color: var(--vbh-red);
  animation: heartPulse 1.5s ease-in-out infinite;
  font-size: 1rem;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.vbh-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--vbh-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.vbh-hero__title .underline-accent {
  position: relative;
  display: inline-block;
}
.vbh-hero__title .underline-accent svg {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 12px;
  color: var(--vbh-red);
}
.vbh-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.vbh-hero__search {
  background: var(--vbh-white);
  border-radius: var(--vbh-radius-xl);
  padding: 0.5rem;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.vbh-hero__search-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.vbh-hero__search-field svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vbh-muted-text);
  width: 1.25rem;
  height: 1.25rem;
}
.vbh-hero__search-field input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: none;
  background: var(--vbh-light-gray);
  border-radius: var(--vbh-radius-lg);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--vbh-charcoal);
  outline: none;
}
.vbh-hero__search-field input::placeholder { color: var(--vbh-muted-text); }
.vbh-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2.5rem;
}
.vbh-hero__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--vbh-white);
  line-height: 1;
}
.vbh-hero__stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.vbh-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.vbh-hero__wave svg { width: 100%; display: block; }
.vbh-hero__wave .fill-bg { fill: var(--vbh-white); }

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.vbh-section { padding: 5rem 0; }
.vbh-section--dark { background: var(--vbh-charcoal); }
.vbh-section--muted { background: var(--vbh-light-gray); }
.vbh-section__header { text-align: center; margin-bottom: 3rem; }
.vbh-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vbh-red);
  margin-bottom: 0.75rem;
}
.vbh-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--vbh-charcoal);
  margin-bottom: 1rem;
}
.vbh-section--dark .vbh-section__title { color: var(--vbh-white); }
.vbh-section__subtitle {
  font-size: 1rem;
  color: var(--vbh-muted-text);
  max-width: 600px;
  margin: 0 auto;
}
.vbh-section--dark .vbh-section__subtitle { color: rgba(255,255,255,0.65); }
.vbh-section-divider {
  width: 60px;
  height: 4px;
  background: var(--vbh-red);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ============================================================
   REGIONS SECTION
   ============================================================ */
.vbh-regions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.vbh-region-card {
  position: relative;
  background: var(--vbh-white);
  border: 1px solid var(--vbh-border);
  border-radius: var(--vbh-radius-xl);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
}
.vbh-region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--vbh-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.vbh-region-card:hover { transform: translateY(-3px); box-shadow: var(--vbh-shadow-lg); }
.vbh-region-card:hover::before { transform: scaleY(1); }
.vbh-region-card__icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(224,16,16,0.1);
  border-radius: var(--vbh-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--vbh-red);
  font-size: 1.25rem;
}
.vbh-region-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--vbh-charcoal);
  margin-bottom: 0.25rem;
}
.vbh-region-card__count {
  font-size: 0.8rem;
  color: var(--vbh-muted-text);
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.vbh-industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.vbh-industry-card {
  background: var(--vbh-white);
  border: 1px solid var(--vbh-border);
  border-radius: var(--vbh-radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.vbh-industry-card:hover {
  border-color: var(--vbh-red);
  box-shadow: var(--vbh-shadow-md);
  transform: translateY(-2px);
}
.vbh-industry-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.vbh-industry-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--vbh-charcoal);
}
.vbh-industry-card__count {
  font-size: 0.75rem;
  color: var(--vbh-muted-text);
}

/* ============================================================
   BUSINESS CARD (Featured / Directory)
   ============================================================ */
.vbh-biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.vbh-biz-card {
  background: var(--vbh-white);
  border: 1px solid var(--vbh-border);
  border-radius: var(--vbh-radius-xl);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.vbh-biz-card:hover { transform: translateY(-4px); box-shadow: var(--vbh-shadow-xl); }
.vbh-biz-card__image {
  height: 180px;
  background: var(--vbh-light-gray);
  overflow: hidden;
  position: relative;
}
.vbh-biz-card__image img { width: 100%; height: 100%; object-fit: cover; }
.vbh-biz-card__badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--vbh-red);
  color: var(--vbh-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vbh-biz-card__body { padding: 1.25rem; flex: 1; }
.vbh-biz-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vbh-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.vbh-biz-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vbh-charcoal);
  margin-bottom: 0.5rem;
}
.vbh-biz-card__location {
  font-size: 0.85rem;
  color: var(--vbh-muted-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.vbh-biz-card__stars { color: var(--vbh-red); font-size: 0.9rem; }

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */
.vbh-community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) { .vbh-community__grid { grid-template-columns: 1fr; } }
.vbh-community__left {}
.vbh-community__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.vbh-community__stat {
  background: var(--vbh-light-gray);
  border-radius: var(--vbh-radius-lg);
  padding: 1.25rem;
}
.vbh-community__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--vbh-red);
}
.vbh-community__stat-label {
  font-size: 0.85rem;
  color: var(--vbh-muted-text);
  margin-top: 0.25rem;
}
.vbh-community__right {
  background: var(--vbh-white);
  border: 1px solid var(--vbh-border);
  border-radius: var(--vbh-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--vbh-shadow-lg);
}
.vbh-forum-post {
  display: flex;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: var(--vbh-radius-lg);
  background: var(--vbh-light-gray);
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
}
.vbh-forum-post:hover { background: #ebebeb; }
.vbh-forum-post__icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(224,16,16,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--vbh-red);
  flex-shrink: 0;
}
.vbh-forum-post__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vbh-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.vbh-forum-post__meta {
  font-size: 0.75rem;
  color: var(--vbh-muted-text);
}

/* ============================================================
   WEBINARS SECTION
   ============================================================ */
.vbh-webinars { background: var(--vbh-charcoal); }
.vbh-webinars__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.vbh-webinars__header-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.vbh-webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.vbh-webinar-card {
  background: var(--vbh-white);
  border-radius: var(--vbh-radius-xl);
  overflow: hidden;
  box-shadow: var(--vbh-shadow-xl);
  transition: transform 0.3s;
}
.vbh-webinar-card:hover { transform: translateY(-4px); }
.vbh-webinar-card__image {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.vbh-webinar-card__image img { width: 100%; height: 100%; object-fit: cover; }
.vbh-webinar-card__badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.vbh-webinar-card__badge--free { background: #10b981; color: #fff; }
.vbh-webinar-card__badge--premium { background: var(--vbh-red); color: #fff; }
.vbh-webinar-card__body { padding: 1.25rem; }
.vbh-webinar-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vbh-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.vbh-webinar-card__speaker {
  font-size: 0.8rem;
  color: var(--vbh-muted-text);
  margin-bottom: 0.875rem;
}
.vbh-webinar-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  font-size: 0.8rem;
  color: var(--vbh-muted-text);
  margin-bottom: 1rem;
}
.vbh-webinar-card__meta span { display: flex; align-items: center; gap: 0.3rem; }
.vbh-webinar-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.875rem;
  border-top: 1px solid var(--vbh-border);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.vbh-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.vbh-pricing-card {
  background: var(--vbh-white);
  border: 2px solid var(--vbh-border);
  border-radius: var(--vbh-radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.vbh-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--vbh-shadow-xl); }
.vbh-pricing-card--popular {
  border-color: var(--vbh-red);
  box-shadow: 0 0 0 4px rgba(224,16,16,0.1);
}
.vbh-pricing-card__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vbh-red);
  color: var(--vbh-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.vbh-pricing-card__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--vbh-radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.vbh-pricing-card__icon--default { background: var(--vbh-light-gray); }
.vbh-pricing-card__icon--popular { background: var(--vbh-red); }
.vbh-pricing-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.vbh-pricing-card__price {
  text-align: center;
  margin-bottom: 0.5rem;
}
.vbh-pricing-card__price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--vbh-charcoal);
}
.vbh-pricing-card__price-period {
  font-size: 1rem;
  color: var(--vbh-muted-text);
}
.vbh-pricing-card__desc {
  text-align: center;
  font-size: 0.875rem;
  color: var(--vbh-muted-text);
  margin-bottom: 1.5rem;
}
.vbh-pricing-card__features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.vbh-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--vbh-charcoal);
}
.vbh-pricing-card__features li::before {
  content: '✓';
  color: var(--vbh-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.vbh-cta {
  background: var(--vbh-gradient-red);
  padding: 5rem 0;
  text-align: center;
}
.vbh-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--vbh-white);
  margin-bottom: 1rem;
}
.vbh-cta__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.vbh-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.vbh-btn--cta-white {
  background: var(--vbh-white);
  color: var(--vbh-red);
  border-color: var(--vbh-white);
  font-weight: 700;
}
.vbh-btn--cta-white:hover {
  background: var(--vbh-light-gray);
  color: var(--vbh-red-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.vbh-footer {
  background: var(--vbh-charcoal);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.vbh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .vbh-footer__grid { grid-template-columns: 1fr 1fr; }
  .vbh-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .vbh-footer__grid { grid-template-columns: 1fr; }
}
.vbh-footer__brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vbh-white);
  margin-bottom: 0.25rem;
}
.vbh-footer__brand-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.vbh-footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.vbh-footer__social {
  display: flex;
  gap: 0.75rem;
}
.vbh-footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  font-size: 1.1rem;
}
.vbh-footer__social a:hover { color: var(--vbh-red); }
.vbh-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vbh-white);
  margin-bottom: 1rem;
}
.vbh-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vbh-footer__links li { margin-bottom: 0.5rem; }
.vbh-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.vbh-footer__links a:hover { color: var(--vbh-white); }
.vbh-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
}
.vbh-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vbh-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}
.vbh-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.vbh-footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.vbh-footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }
.vbh-footer__heart { color: var(--vbh-red); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.vbh-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.vbh-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.vbh-badge--red { background: rgba(224,16,16,0.1); color: var(--vbh-red); }
.vbh-badge--green { background: rgba(16,185,129,0.1); color: #059669; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .vbh-hero { padding: 3rem 0 6rem; }
  .vbh-hero__search { flex-direction: column; }
  .vbh-hero__stats { gap: 1.5rem; }
  .vbh-section { padding: 3rem 0; }
  .vbh-webinars__header { flex-direction: column; align-items: flex-start; }
  .vbh-pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
}


/* ============================================================
   BBPRESS FORUM STYLES — VBH Theme Integration
   ============================================================ */
#bbpress-forums { font-family: inherit; margin-top: 1.5rem; }
#bbpress-forums .bbp-forum-title a, #bbpress-forums .bbp-topic-title a { color: #c0392b; font-weight: 600; text-decoration: none; font-size: 1rem; }
#bbpress-forums .bbp-forum-title a:hover, #bbpress-forums .bbp-topic-title a:hover { color: #e74c3c; text-decoration: underline; }
#bbpress-forums li.bbp-header { background: #1a1a2e; color: #ffffff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 6px 6px 0 0; padding: 0.75rem 1rem; }
#bbpress-forums li.bbp-body { border: 1px solid #e5e7eb; border-top: none; border-radius: 0 0 6px 6px; }
#bbpress-forums ul.bbp-forums li, #bbpress-forums ul.bbp-topics li { border-bottom: 1px solid #e5e7eb; padding: 1rem; background: #ffffff; transition: background 0.15s ease; }
#bbpress-forums ul.bbp-forums li:last-child, #bbpress-forums ul.bbp-topics li:last-child { border-bottom: none; }
#bbpress-forums ul.bbp-forums li:hover, #bbpress-forums ul.bbp-topics li:hover { background: #f9fafb; }
#bbpress-forums .bbp-forum-info, #bbpress-forums .bbp-topic-content { font-size: 0.9rem; color: #6b7280; margin-top: 0.25rem; }
#bbpress-forums .bbp-forum-topic-count, #bbpress-forums .bbp-forum-reply-count { font-weight: 600; color: #374151; font-size: 0.9rem; }
#bbpress-forums .bbp-forum-freshness, #bbpress-forums .bbp-topic-freshness { font-size: 0.8rem; color: #9ca3af; }
#bbp-search-form { margin-bottom: 1.5rem; }
#bbp-search-form #bbp_search { border: 2px solid #e5e7eb; border-radius: 6px 0 0 6px; padding: 0.6rem 1rem; font-size: 0.95rem; width: calc(100% - 100px); outline: none; }
#bbp-search-form #bbp_search_submit { background: #c0392b; color: #ffffff; border: none; border-radius: 0 6px 6px 0; padding: 0.6rem 1.2rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; }
#bbpress-forums .bbp-breadcrumb { font-size: 0.85rem; color: #6b7280; margin-bottom: 1rem; }
#bbpress-forums .bbp-breadcrumb a { color: #c0392b; text-decoration: none; }
.page-id-65 #primary, .bbpress #primary { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }

/* BBPRESS FORUM STYLES */
#bbpress-forums { font-family: inherit; margin-top: 1.5rem; }
#bbpress-forums .bbp-forum-title a, #bbpress-forums .bbp-topic-title a { color: #c0392b; font-weight: 600; text-decoration: none; }
#bbpress-forums .bbp-forum-title a:hover { color: #e74c3c; text-decoration: underline; }
#bbpress-forums li.bbp-header { background: #1a1a2e; color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; border-radius: 6px 6px 0 0; padding: 0.75rem 1rem; }
#bbpress-forums li.bbp-body { border: 1px solid #e5e7eb; border-top: none; border-radius: 0 0 6px 6px; }
#bbpress-forums ul.bbp-forums li { border-bottom: 1px solid #e5e7eb; padding: 1rem; background: #fff; }
#bbpress-forums ul.bbp-forums li:hover { background: #f9fafb; }
#bbpress-forums .bbp-forum-info { font-size: 0.9rem; color: #6b7280; margin-top: 0.25rem; }
#bbpress-forums .bbp-forum-freshness { font-size: 0.8rem; color: #9ca3af; }
#bbp-search-form #bbp_search { border: 2px solid #e5e7eb; border-radius: 6px 0 0 6px; padding: 0.6rem 1rem; width: calc(100% - 100px); }
#bbp-search-form #bbp_search_submit { background: #c0392b; color: #fff; border: none; border-radius: 0 6px 6px 0; padding: 0.6rem 1.2rem; font-weight: 600; cursor: pointer; }
.page-id-65 #primary, .bbpress #primary { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
