/*Before and after WaBotHub*/
  .wbh-cost-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-green-bg: #e7f0e9;
    --wbh-green-border: #cfe2d5;
    --wbh-orange: #c8613f;
    --wbh-card-border: #e4e2da;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-cost-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
    max-width: 780px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
    max-width: 720px;
    margin: 0 0 56px;
  }
  .wbh-subhead strong {
    color: var(--wbh-ink);
    font-weight: 600;
  }

  .wbh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 720px) {
    .wbh-grid { grid-template-columns: 1fr; }
    .wbh-headline { font-size: 34px; }
  }

  .wbh-card {
    border-radius: 20px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--wbh-card-border);
  }
  .wbh-card--good {
    background: var(--wbh-green-bg);
    border: 1px solid var(--wbh-green-border);
  }

  .wbh-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wbh-muted);
    margin-bottom: 24px;
  }
  .wbh-card--good .wbh-card-label {
    color: var(--wbh-green);
  }

  .wbh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
  }
  .wbh-row:last-child { border-bottom: none; }

  .wbh-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--wbh-ink);
  }

  .wbh-mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }
  .wbh-mark--x {
    background: rgba(200, 97, 63, 0.12);
    color: var(--wbh-orange);
  }
  .wbh-mark--check {
    background: rgba(31, 92, 63, 0.12);
    color: var(--wbh-green);
  }

  .wbh-row-tag {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
  .wbh-card--bad .wbh-row-tag { color: var(--wbh-orange); }
  .wbh-card--good .wbh-row-tag { color: var(--wbh-green); }


/*One channel, six stages*/
  .wbh-pipeline-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-card-border: #e4e2da;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-pipeline-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
    max-width: 780px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
    max-width: 720px;
    margin: 0 0 56px;
  }

  .wbh-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  @media (max-width: 1000px) {
    .wbh-pipeline-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 600px) {
    .wbh-pipeline-grid { grid-template-columns: 1fr; }
    .wbh-headline { font-size: 32px; }
  }

  .wbh-pipeline-card {
    background: #fff;
    border: 1px solid var(--wbh-card-border);
    border-radius: 18px;
    padding: 24px 20px;
  }

  .wbh-pipeline-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--wbh-green);
    margin-bottom: 16px;
  }

  .wbh-pipeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wbh-ink);
    margin: 0 0 12px;
  }

  .wbh-pipeline-copy {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--wbh-muted);
  }
  

/*Everything under one roof*/
  .wbh-modules-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-card-border: #e4e2da;
    --wbh-dark-tile-bg: #16241d;
    --wbh-dark-tile-copy: #b9c4bd;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-modules-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
    max-width: 780px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
    max-width: 720px;
    margin: 0 0 56px;
  }

  /*.wbh-modules-grid {*/
  /*  display: grid;*/
  /*  grid-template-columns: repeat(4, 1fr);*/
  /*  grid-auto-rows: auto;*/
  /*  gap: 20px;*/
  /*}*/

  .wbh-mod-card {
    background: #fff;
    border: 1px solid var(--wbh-card-border);
    border-radius: 20px;
    padding: 28px;
    min-width: 0;
  }

  .wbh-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-flow: dense;
}

/* Row 1 */
.wbh-mod-card--hero {
    grid-column: 1 / span 2;
    grid-row: 1;
}

.wbh-mod-card--m2 {
    grid-column: 3;
    grid-row: 1;
}

.wbh-mod-card--m3 {
    grid-column: 4;
    grid-row: 1;
}

/* Row 2 */
.wbh-mod-card--hero1 {
    grid-column: 3 / span 2;
    grid-row: 2;
}

.wbh-mod-card--m4 {
    grid-column: 1;
    grid-row: 2;
}

.wbh-mod-card--m5 {
    grid-column: 2;
    grid-row: 2;
}

/* Row 3 */
.wbh-mod-card--hero2 {
    grid-column: 1 / span 2;
    grid-row: 3;
}

.wbh-mod-card--m8 {
    grid-column: 3;
    grid-row: 3;
}

.wbh-mod-card--m9 {
    grid-column: 4;
    grid-row: 3;
}

/* Hero Cards */
.wbh-mod-card--hero,
.wbh-mod-card--hero1,
.wbh-mod-card--hero2 {
    background: var(--wbh-dark-tile-bg);
    border: none;
    display: flex;
    flex-direction: column;
}

.wbh-mod-card--hero .wbh-mod-tag,
.wbh-mod-card--hero1 .wbh-mod-tag,
.wbh-mod-card--hero2 .wbh-mod-tag {
    color: #7fd6a3;
}

.wbh-mod-card--hero .wbh-mod-title,
.wbh-mod-card--hero1 .wbh-mod-title,
.wbh-mod-card--hero2 .wbh-mod-title {
    color: #fff;
    font-size: 26px;
}

.wbh-mod-card--hero .wbh-mod-copy,
.wbh-mod-card--hero1 .wbh-mod-copy,
.wbh-mod-card--hero2 .wbh-mod-copy {
    color: var(--wbh-dark-tile-copy);
    font-size: 16px;
}

/* Mobile */
@media (max-width: 900px) {
    .wbh-modules-grid {
        grid-template-columns: 1fr;
    }

    .wbh-mod-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .wbh-headline {
        font-size: 32px;
    }
}


/*Where the others stop*/
  .wbh-compare-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-green-bg: #e7f0e9;
    --wbh-green-border: #cfe2d5;
    --wbh-yellow: #93700f;
    --wbh-yellow-bg: #fbf1d9;
    --wbh-red: #8a5240;
    --wbh-red-bg: #f3e7e2;
    --wbh-card-border: #e4e2da;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-compare-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
    max-width: 780px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
    max-width: 780px;
    margin: 0 0 28px;
  }

  .wbh-purpose-line {
    font-size: 16px;
    font-weight: 600;
    color: var(--wbh-ink);
    background: var(--wbh-green-bg);
    border: 1px solid var(--wbh-green-border);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 32px;
    max-width: 820px;
  }

  .wbh-compare-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--wbh-card-border);
    background: #fff;
  }

  table.wbh-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
  }

  .wbh-compare-table th,
  .wbh-compare-table td {
    padding: 20px 17px;
    text-align: left;
    border-bottom: 1px solid var(--wbh-card-border);
    vertical-align: middle;
  }

  .wbh-compare-table tr:last-child td {
    border-bottom: none;
  }

  .wbh-compare-table thead th {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wbh-muted);
  }

  .wbh-compare-table td.wbh-capability-cell {
    font-weight: 600;
    color: var(--wbh-ink);
    white-space: nowrap;
  }

  /* WaBotHub column — highlighted */
  .wbh-col-hero {
    background: var(--wbh-green-bg);
  }
  th.wbh-col-hero {
    background: #dcebe1;
  }

  .wbh-logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--wbh-green);
    text-transform: none;
  }
  .wbh-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--wbh-green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Pill badges */
  .wbh-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .wbh-pill--full {
    background: var(--wbh-green-bg);
    color: var(--wbh-green);
  }
  .wbh-pill--partial {
    background: var(--wbh-yellow-bg);
    color: var(--wbh-yellow);
  }
  .wbh-pill--none {
    background: var(--wbh-red-bg);
    color: var(--wbh-red);
  }
  .wbh-pill--hero {
    background: var(--wbh-green);
    color: #fff;
    font-size: 14px;
    padding: 7px 14px;
  }

  @media (max-width: 720px) {
    .wbh-headline { font-size: 32px; }
  }
  
  
/*Built to feel like Stripe, not a chatbot plugin -- Dashboard Intro*/
  .wbh-dashintro-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    font-family: Inter;
    /*background: var(--wbh-bg);*/
    /*padding: 96px 24px 48px;*/
  }

  .wbh-dashintro-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
  }
  .wbh-subhead strong {
    color: var(--wbh-ink);
    font-weight: 600;
  }

  @media (max-width: 600px) {
    .wbh-headline { font-size: 32px; }
  }


/*Why we built this --- Founder*/
  .wbh-founder-section {
    --wbh-bg: #f6f5f0;
    --wbh-dark: #16241d;
    --wbh-dark-copy: #d7ddd9;
    --wbh-dark-muted: #8fa198;
    --wbh-green-accent: #7fd6a3;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 48px 24px 96px;*/
  }

  .wbh-founder-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-founder-card {
    background: var(--wbh-dark);
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }

  .wbh-founder-mark {
    font-size: 32px;
    font-weight: 800;
    color: var(--wbh-green-accent);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 6px;
  }

  .wbh-founder-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  .wbh-founder-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wbh-green-accent);
  }

  .wbh-founder-quote {
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
  }

  .wbh-founder-person {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .wbh-founder-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #2a3a30; /* fallback tone while the real photo loads */
  }

  .wbh-founder-name-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .wbh-founder-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }

  .wbh-founder-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--wbh-dark-muted);
  }

  .wbh-founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--wbh-green-accent);
    text-decoration: none;
    font-weight: 600;
  }
  .wbh-founder-linkedin:hover { text-decoration: underline; }

  @media (max-width: 700px) {
    .wbh-founder-card { padding: 32px 28px; flex-direction: column; gap: 20px; }
    .wbh-founder-quote { font-size: 19px; }
  }


/*Built on rails your customers already trust --  Security Section*/
  .wbh-security-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-green-bg: #e7f0e9;
    --wbh-card-border: #e4e2da;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-security-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 24px;
    max-width: 780px;
  }

  .wbh-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wbh-muted);
    max-width: 720px;
    margin: 0 0 56px;
  }

  .wbh-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
  @media (max-width: 900px) {
    .wbh-security-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .wbh-security-grid { grid-template-columns: 1fr; }
    .wbh-headline { font-size: 32px; }
  }

  .wbh-security-card {
    background: #fff;
    border: 1px solid var(--wbh-card-border);
    border-radius: 18px;
    padding: 26px 22px;
  }

  .wbh-security-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--wbh-green);
    background: var(--wbh-green-bg);
    border-radius: 6px;
    padding: 3px 8px;
    margin-bottom: 16px;
  }

  .wbh-security-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--wbh-ink);
    margin: 0 0 10px;
    line-height: 1.35;
  }

  .wbh-security-copy {
    font-size: 14px;
    line-height: 1.55;
    color: var(--wbh-muted);
  }

  .wbh-security-footnote {
    font-size: 15px;
    color: var(--wbh-muted);
  }


/*Pricing Section*/
  .wbh-pricing-section {
    --wbh-bg: #f6f5f0;
    --wbh-ink: #16241d;
    --wbh-muted: #6b7570;
    --wbh-green: #1f5c3f;
    --wbh-green-bg: #eef5f0;
    --wbh-green-border: #bfe0cc;
    --wbh-card-border: #e4e2da;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 96px 24px;*/
  }

  .wbh-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--wbh-green);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .wbh-eyebrow::before,
  .wbh-eyebrow::after {
    content: "";
    height: 1px;
    width: 32px;
    background: var(--wbh-green);
    opacity: 0.4;
  }

  .wbh-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 28px;
    max-width: 780px;
  }

  .wbh-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--wbh-green-bg);
    border: 1px solid var(--wbh-green-border);
    border-radius: 999px;
    padding: 12px 24px;
    margin-bottom: 56px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--wbh-ink);
  }
  .wbh-trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
  .wbh-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--wbh-muted); }

  .wbh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  @media (max-width: 900px) {
    .wbh-pricing-grid { grid-template-columns: 1fr; }
    .wbh-headline { font-size: 32px; }
  }

  .wbh-price-card {
    background: #fff;
    border: 1px solid var(--wbh-card-border);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .wbh-price-card--featured {
    background: var(--wbh-green-bg);
    border: 1.5px solid var(--wbh-green);
    box-shadow: 0 12px 32px -12px rgba(31, 92, 63, 0.25);
  }

  .wbh-popular-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--wbh-ink);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .wbh-plan-name {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wbh-muted);
    margin-bottom: 6px;
  }

  .wbh-plan-tagline {
    font-size: 14px;
    color: var(--wbh-muted);
    margin-bottom: 24px;
  }

  .wbh-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }
  .wbh-plan-price-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--wbh-ink);
  }
  .wbh-plan-price-period {
    font-size: 15px;
    color: var(--wbh-muted);
  }

  .wbh-plan-billing-note {
    font-size: 13px;
    color: var(--wbh-muted);
    margin-bottom: 24px;
  }

  .wbh-plan-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--wbh-muted);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--wbh-card-border);
  }
  .wbh-price-card--featured .wbh-plan-desc {
    border-bottom-color: var(--wbh-green-border);
  }

  .wbh-plan-includes-note {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wbh-green);
    margin-bottom: 12px;
  }

  .wbh-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
  }
  .wbh-plan-features li {
    font-size: 14.5px;
    color: var(--wbh-ink);
    display: flex;
    gap: 8px;
  }
  .wbh-plan-features li::before {
    content: "—";
    color: var(--wbh-muted);
    flex-shrink: 0;
  }

  .wbh-plan-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: 999px;
    border: 1.5px solid var(--wbh-ink);
    color: var(--wbh-ink);
    background: transparent;
  }
  .wbh-plan-cta--solid {
    background: var(--wbh-ink);
    color: #fff;
    border-color: var(--wbh-ink);
  }



/*What pilot access includes --- Pilot Section*/
  .wbh-pilot-section {
    --wbh-bg: #f6f5f0;
    --wbh-card-border: #e4e2da;
    --wbh-muted: #6b7570;
    --wbh-ink: #16241d;
    font-family: Inter;
    background: var(--wbh-bg);
    /*padding: 48px 24px 96px;*/
  }

  .wbh-pilot-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wbh-pilot-card {
    background: #fff;
    border: 1px solid var(--wbh-card-border);
    border-radius: 24px;
    padding: 48px;
  }

  .wbh-pilot-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--wbh-ink);
    margin: 0 0 28px;
  }

  .wbh-pilot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .wbh-pilot-list li {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: var(--wbh-ink);
  }
  .wbh-pilot-list li::before {
    content: "—";
    color: #1f5c3f;
    flex-shrink: 0;
  }

  /* Form is always visible now — no collapse/toggle behavior */
  .wbh-pilot-form {
    margin-top: 8px;
  }

  .wbh-pilot-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  @media (max-width: 600px) {
    .wbh-pilot-form-grid { grid-template-columns: 1fr; }
  }

  .wbh-pilot-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wbh-muted);
    margin-bottom: 8px;
  }
  .wbh-pilot-field input,
  .wbh-pilot-field select {
    width: 100%;
    box-sizing: border-box;
    background: #f6f5f0;
    border: 1px solid var(--wbh-card-border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--wbh-ink);
    font-size: 15px;
    font-family: Inter;
  }
  .wbh-pilot-field input::placeholder { color: var(--wbh-muted); }

  .wbh-pilot-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .wbh-pilot-submit-btn {
    background: var(--wbh-ink);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: Inter;
    cursor: pointer;
  }
  .wbh-pilot-submit-note {
    font-size: 13px;
    color: var(--wbh-muted);
  }
