:root {
  --green: #b1d13e;
  --blue: #57b6de;
  --dark: #222222;
  --mid: #444444;
  --muted: #666666;
  --light: #f2f2f2;
  --border: #e1e1e1;
  --white: #ffffff;
  --max: 1200px;
/*  --pad: 48px; */
}

/* ══ LAYOUT
   Prefixed .ba- to avoid colliding with Avada's own .wrap / .section
════════════════════════════════════════════════════════════════ */
.ba-wrap {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.ba-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.ba-section--light {
  background: var(--light);
}

.ba-section--dark {
  background: var(--dark);
}

/* ══ TYPOGRAPHY HELPERS ═════════════════════════════════════ */
.ba-eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.ba-eyebrow--light {
  color: var(--green);
}

/* ══ HERO ════════════════════════════════════════════════════ */
.ba-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-image: url('https://twinkle.kinsta.cloud/wp-content/uploads/2025/06/hero-image-large-02.jpg');
  background-size: cover;
  background-position: center center;
}

.ba-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 31, 61, .92) 0%, rgba(15, 31, 61, .55) 55%, transparent 100%);
}

.ba-hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.ba-hero__content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.ba-hero__content p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 28px;
}

/* ══ TWO-COLUMN GRID ════════════════════════════════════════ */
.ba-grid-2 {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.ba-grid-2 h2 {
  margin-bottom: 16px;
}

/* ══ SIDEBAR CTA ════════════════════════════════════════════ */
.ba-sidebar-cta {
  background: var(--light);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.ba-sidebar-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--green);
  opacity: .15;
  pointer-events: none;
}

.ba-sidebar-cta h3 {
  position: relative;
  margin-bottom: 12px;
}

.ba-sidebar-cta p {
  position: relative;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ══ ICON GRID ══════════════════════════════════════════════ */
.ba-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.ba-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .15s;
}

.ba-icon-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.ba-icon-card--dashed {
  border-style: dashed;
  background: transparent;
}

.ba-icon-wrap {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-icon-wrap--green {
  background: var(--green);
}

.ba-icon-body {
  padding-top: 8px;
}

.ba-icon-body h4 {
  margin-bottom: 4px;
}

.ba-icon-body p {
  color: var(--muted);
}

/* ══ MEMBERSHIP TIERS ═══════════════════════════════════════ */
.ba-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}

.ba-tier {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
}

.ba-tier:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.ba-tier--featured {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(177, 209, 62, .2);
}

.ba-tier__badge {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ba-tier__badge--free {
  background: var(--light);
  color: var(--muted);
}

.ba-tier__badge--popular {
  background: var(--green);
  color: var(--dark);
}

.ba-tier__badge--premium {
  background: var(--blue);
  color: var(--white);
}

.ba-tier h3 {
  margin-bottom: 8px;
}

.ba-tier>p {
  color: var(--muted);
}

.ba-tier__price {
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ba-tier__price strong {
  color: var(--dark);
}

.ba-tier__price span {
  color: var(--muted);
}

.ba-tier__features {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ba-tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mid);
}

.ba-tier__features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.ba-tier__features li.locked {
  color: var(--muted);
}

.ba-tier__features li.locked::before {
  content: '\00D7';
}

.ba-tier .fusion-button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ══ MOBILE ═════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --pad: 20px;
  }

  .ba-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .ba-hero {
    min-height: 380px;
  }

  .ba-hero::before {
    background: rgba(15, 31, 61, .85);
  }

  .ba-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ba-icon-grid {
    grid-template-columns: 1fr;
  }

  .ba-tiers {
    grid-template-columns: 1fr;
  }
}


.ba-icon-body h4 {
  margin-top: 0px;
}

