/* ═══════════════════════════════
   Booking Form V2
   ═══════════════════════════════ */

/* ─── Page shell ─── */

.bf-page {
    background-color: #fff;
  }

.bf-wrap {
  width: 100%;
  max-width: 1180px;
  padding: 3rem 0;
  margin: 0 auto;
}

.bf-layout {
  display: grid;
  grid-template-columns: 308px 1fr;
  gap: 22px;
  align-items: start;
}

/* ─── Sidebar ─── */
.bf-sidebar {
  position: sticky;
  top: 36px;
  background: var(--color-green);
  border-radius: 26px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 30px 60px -42px rgba(23,51,27,.75);
}

.bf-sb-head { display: flex; flex-direction: column; gap: 8px; }

.bf-sb-eyebrow {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  font-weight: 600;
}

.bf-sb-title {
  font-family: 'Heading-Regular';
  font-size: 25px;
  color: var(--color-green-light);
  line-height: 1.18;
}

/* Sidebar steps nav */
.bf-sb-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.bf-sb-step {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 10px;
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.bf-sb-step:hover { background: rgba(255,255,255,.05); }

.bf-sb-step-num {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, color .2s;
}

.bf-sb-step--done .bf-sb-step-num {
  background: var(--color-green-light);
  color: var(--color-green);
}

.bf-sb-step--current .bf-sb-step-num {
  background: #fff;
  color: var(--color-green);
}

.bf-sb-step--upcoming .bf-sb-step-num {
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.4);
  background: none;
}

.bf-sb-step--done .bf-sb-step-num svg { display: block; }

.bf-sb-step-label {
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s;
}

.bf-sb-step--done .bf-sb-step-label   { color: rgba(255,255,255,.72); }
.bf-sb-step--current .bf-sb-step-label { color: #fff; font-weight: 600; }
.bf-sb-step--upcoming .bf-sb-step-label { color: rgba(255,255,255,.42); }

/* Sidebar summary */
.bf-sb-summary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px 17px;
}

.bf-sb-summary-label {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin-bottom: 12px;
}

.bf-sb-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.bf-sb-summary-row[hidden] { display: none; }

.bf-sb-summary-row span:first-child { font-size: 13px; color: rgba(255,255,255,.55); }
.bf-sb-summary-row span:last-child  { font-size: 13px; color: #fff; font-weight: 500; text-align: right; }

.bf-sb-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  margin-top: 4px;
}

.bf-sb-summary-total > span:first-child { font-size: 13px; color: rgba(255,255,255,.6); }

.bf-sb-summary-price {
  font-family: 'Heading-Regular';
  font-size: 26px;
  color: var(--color-green-light);
}

/* Sidebar note */
.bf-sb-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bf-sb-note-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green-light);
  margin-top: 6px;
  flex: none;
}

.bf-sb-note span {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.5);
}

/* ─── Main panel ─── */
.bf-main {
  border-radius: 26px;
  box-shadow: 0 30px 60px -50px rgba(23,51,27,.55);
  padding: 48px 30px 40px;
  display: flex;
  flex-direction: column;
}

/* ─── Steps ─── */
.bf-step {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: bfFadeUp .4s ease both;
}

.bf-step--active { display: flex; }

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

.bf-step-hd { margin-bottom: 32px; }
.bf-step-hd--narrow { max-width: 560px; }

.bf-step-eyebrow {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8a9a5f;
  font-weight: 600;
  margin-bottom: 12px;
}

.bf-step-title {
  font-family: 'Heading-Regular';
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}

.bf-step-title em { font-style: italic; color: #5f7d1e; }

.bf-step-desc {
  font-size: 15px;
  color: #6b7461;
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
}

/* Pushes footer to bottom when content is shorter than panel */
.bf-step-spacer { flex: 1; }

/* Step footer — always at bottom of the flex column */
.bf-step-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
}

.bf-step-ft .button-3 {
  color: var(--color-green);
}

.bf-step-ft .button-3 svg {
    rotate: 180deg;
    margin-right: 7px;
    margin-left: 0;
}

.bf-btn-pay {
  margin-left: auto;
  background: var(--color-green-light);
  color: var(--color-green);
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px -16px rgba(120,150,40,1);
  font-family: inherit;
  transition: background .15s;
}

.bf-btn-pay:hover { background: #98c02a; }

/* ─── Step 1: Client type ─── */
.bf-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bf-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  cursor: pointer;
  border: none;
  background: #fff;
  text-align: left;
  font-family: inherit;
  box-shadow: 0 14px 23px -25px rgba(120, 150, 40, 1);
  transition: border-color .2s, background .2s, box-shadow .2s, transform .25s ease;
}

.bf-type-card--dark {
  background: var(--color-green);
  border-color: var(--color-green);
}

.bf-type-card-check {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  opacity: 0;
  transition: opacity .2s;
}

.bf-type-card--selected .bf-type-card-check { opacity: 1; }

.bf-type-card--selected.bf-type-card--dark {
  background: var(--color-green);
  border-color: var(--color-green-light);
}

.bf-type-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-type-card-icon--lime { background: var(--color-green-light); }
.bf-type-card-icon--dark { background: rgba(166,206,60,.16); }

.bf-type-card-ey {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  color: #7c9635;
}

.bf-type-card--dark .bf-type-card-ey { color: var(--color-green-light); }

.bf-type-card-name {
  font-size: 27px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bf-type-card--dark .bf-type-card-name { color: #fff; }

.bf-type-card-txt {
  font-size: 14px;
  color: #5c6553;
  margin: 0;
  line-height: 1.55;
}

.bf-type-card--dark .bf-type-card-txt { color: rgba(255,255,255,.62); }

/* ─── Step 2: Area tiles ─── */
.bf-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bf-area-grid--hidden { display: none; }

.bf-area-loading {
  grid-column: 1 / -1;
  padding: 24px 0;
  font-size: 14px;
  color: #8b9280;
  text-align: center;
}

.bf-area-error {
  grid-column: 1 / -1;
  padding: 16px 0;
  font-size: 14px;
  color: #c0392b;
  text-align: center;
  margin: 0;
}

.bf-area-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 35px 20px 22px;
  background: #fff;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 14px 23px -25px rgba(120, 150, 40, 1);
  transition: border-color .2s, background .2s, box-shadow .2s, transform .25s ease;
}

.bf-area-tile:hover,
.bf-area-tile--selected {
  transform: translateY(-4px);
}

.bf-area-grid--business .bf-area-tile  {
  background: #1B3422;
}

.bf-area-grid--business .bf-area-tile:hover,
.bf-type-card.bf-type-card--dark:hover {
  background: #06220e;
}

.bf-area-grid--business .bf-area-tile span {
  color: #EDF1E4;
}

.bf-area-tile-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  opacity: 0;
  transition: opacity .2s;
}

.bf-area-tile--selected .bf-area-tile-check { opacity: 1; }

.bf-area-tile-icon { flex: none; }

.bf-area-tile-img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bf-area-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bf-area-tile span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1.3;
}

.bf-type-card--dark .bf-type-card-check {
  border-color: rgba(255,255,255,.28);
  background: none;
}

.bf-type-card--dark:hover { 
  background: #06220e;
}

/* ─── Step 3: Consult type ─── */
.bf-ctype-section-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a9a5f;
  font-weight: 600;
  margin-bottom: 14px;
}

.bf-ctype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.bf-ctype-card,
.bf-meet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 22px 20px;
  background: #fff;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .25s ease;
}

.bf-ctype-card .button,
.bf-meet-card .button {
  margin-top: auto;
  background: #fff;
  width: 100%;
}

.bf-ctype-card--selected .button,
.bf-meet-card--selected .button  {
  background-color: var(--color-green-light);
  position: relative;
}

.bf-ctype-card--selected .button:after,
.bf-meet-card--selected .button:after {
   position: absolute;
  content: "\2713";
    margin-left: 6px;
}

.bf-ctype-card {
  box-shadow: 0 14px 23px -25px rgba(120, 150, 40, 1);
}

.bf-ctype-card--dark {
  background: var(--color-green);
  border: none;
  box-shadow: 0 18px 40px -26px rgba(23,51,27,.9);
}

.bf-step .bf-ctype-card.bf-ctype-card--dark:hover { 
  background: #04180a;
}

.bf-step .bf-ctype-card--dark.bf-ctype-card--selected {
  background: var(--color-green);
  border-color: var(--color-green-light);
}

.bf-ctype-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf-ctype-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EEF3DD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bf-ctype-icon--dark { background: rgba(166,206,60,.16); }
.bf-ctype-icon--lime { background: var(--color-green-light); }

.bf-ctype-badge {
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-green);
  background: var(--color-green-light);
  padding: 5px 10px;
  border-radius: 999px;
}

.bf-ctype-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-green);
}

.bf-ctype-card--dark .bf-ctype-name { color: #fff; }

.bf-ctype-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bf-ctype-price-num {
  font-family: 'Heading-Regular';
  font-size: 34px;
  color: var(--color-green);
  line-height: 1;
}

.bf-ctype-card--dark .bf-ctype-price-num { color: #fff; }

.bf-ctype-price-unit {
  font-size: 13px;
  color: #8b9280;
}

.bf-ctype-card--dark .bf-ctype-price-unit { color: rgba(255,255,255,.5); }

.bf-ctype-desc {
  font-size: 13px;
  color: #6b7461;
  line-height: 1.5;
  margin: 0;
}

.bf-ctype-card--dark .bf-ctype-desc { color: rgba(255,255,255,.62); }

.bf-ctype-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bf-ctype-feats li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 17px;
  color: #40492f;
}

.bf-ctype-feats li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%237c9635' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex: none;
}

.bf-ctype-card--dark .bf-ctype-feats li { color: rgba(255,255,255,.82); }
.bf-ctype-card--dark .bf-ctype-feats li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23A6CE3C' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Meeting cards */
.bf-meet-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 0;
  align-items: start;
}

.bf-meet-grid > .bf-ctype-card .bf-ctype-card-top {
  position: absolute;
}

.bf-meet-grid > .bf-ctype-card .bf-ctype-name {
  padding-left: 55px;
}

.bf-meet-grid > .bf-ctype-card .bf-ctype-feats {
  margin-top: auto;
}

.bf-meet-grid > .bf-meet-combined .bf-meet-combined-hd {
  height: 50px;
} 

.bf-meet-grid > .bf-meet-combined .bf-meet-combined-opts {
  margin-top: auto;
  height: 263px;
}

.bf-meet-grid > .bf-meet-combined .bf-meet-card .button {
  width: 96%;
}

.bf-meet-slot {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #fff;
}

.bf-meet-slot--active .bf-cal-wrap .bf-ctype-section-label {
  margin-bottom: 5px;
}

.bf-meet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf-meet-card-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: none;
  color: var(--color-green);
  transition: opacity .2s;
}

.bf-meet-card.bf-meet-card:hover,
.bf-meet-card.bf-meet-card--selected {
  transform: none;
  box-shadow: none;
  background: none;
}

.bf-meet-card--selected .bf-meet-card-check { opacity: 1; }
.bf-ctype-card--selected .bf-meet-card-check { opacity: 1; }

/* ─── Merged meet options card ─── */
.bf-meet-combined {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 23px -25px rgba(120, 150, 40, 1);
  padding: 0;
  overflow: hidden;
  transition: background .2s, box-shadow .2s, transform .25s ease;
}

/* .bf-meet-combined:hover {
  box-shadow: 0 14px 34px -22px rgba(120,150,40,1);
  transform: translateY(-5px);
} */

.bf-meet-combined-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 20px 15px;
  border-bottom: 1px solid #e3ebbb;
}

.bf-meet-combined-price {
  font-family: 'Heading-Regular';
  font-size: 34px;
  color: var(--color-green);
  line-height: 1;
  flex: none;
}

.bf-meet-combined-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bf-meet-combined-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1.2;
}

.bf-meet-combined-hd .bf-ctype-price-unit {
  font-size: 13px;
  color: #8b9280;
}

/* Options row — slots sit side by side */
.bf-meet-combined-opts {
  display: flex;
}

.bf-meet-combined .bf-meet-slot {
  flex: 1;
  background: transparent;
  transition: border-color .18s;
}

.bf-meet-combined .bf-meet-slot:first-child {
  border-right: 1px solid #e3ebbb;
}

.bf-meet-combined .bf-meet-slot:hover {
  background: #e3ebbb;
}

/* Suppress the global hover/active lift */
.bf-meet-combined .bf-meet-slot:hover,
.bf-meet-combined .bf-meet-slot--active {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.bf-meet-combined .bf-meet-slot--active {
  border-color: #b8cf66;
}

/* Option button: compact vertical layout */

.bf-meet-combined .bf-meet-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  box-shadow: none;
  border-radius: 0;
  padding: 22px 10px 22px 20px;
  height: 100%;
}

.bf-meet-combined .bf-meet-card.bf-meet-card--selected {
  background: #e3ebbb;
  box-shadow: none;
  transform: none;
}

.bf-meet-opt-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}

.bf-meet-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #EEF3DD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bf-meet-option-name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green);
  text-align: left;
  line-height: 1.3;
}

.bf-ctype-note {
  display: none;
  margin-top: 10px;
  padding: 7px 5px;
  border-radius: 8px;
  background: rgba(166,206,60,.15);
  font-size: 11px;
  text-align: center;
  font-weight: 500;
  color: #3d5a00;
  letter-spacing: .01em;
}
.bf-ctype-card--dark .bf-ctype-note {
  background: rgba(166,206,60,.2);
  color: #d4f05a;
}
.bf-ctype-note--visible { display: block; }

/* Calendar */
.bf-cal-wrap {
  padding: 10px 20px 20px;
  background: #e3ebbb;
}

.bf-cal-panel {
  display: grid;
  grid-template-columns: 1fr;
}

.bf-cal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bf-cal-month {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-green);
}

.bf-cal-nav { display: flex; gap: 6px; }

.bf-cal-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #5f7d1e;
  background: #EEF5D6;
  font-family: inherit;
  transition: background .15s;
}

.bf-cal-nav-btn:first-child { background: #F0F1E4; color: #9aa08d; }
.bf-cal-nav-btn:hover { background: #DCE9B8; }

.bf-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 6px;
}

.bf-cal-weekdays span {
  text-align: center;
  font-size: 11.5px;
  color: #9aa08d;
  font-weight: 600;
}

.bf-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.bf-cal-day {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13.5px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
}

.bf-cal-day--blank { cursor: default; }

.bf-cal-day--avail {
  border: 1px solid #C6D897;
  color: #3c4b26;
  font-weight: 500;
  background: #fff;
}

.bf-cal-day--avail:hover { background: #EEF5D6; }

.bf-cal-day--sel {
  background: var(--color-green-light);
  color: var(--color-green);
  font-weight: 700;
}

.bf-cal-day--muted { color: #c2c6b7; }
.bf-cal-day--past  { color: #9ca08d; }

.bf-cal-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  margin: 10px 0 0 0;
}

.bf-cal-slot {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #F5F6EC;
  color: #3c4b26;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background .15s;
  padding: 0 11px;
}

.bf-cal-slot:hover { background: #E8EDD0; }

.bf-cal-slot--sel,
.bf-cal-slot--sel:hover {
  background: var(--color-green-light);
  color: var(--color-green);
  font-weight: 700;
}

.bf-cal-chosen {
  display: flex;
  margin-top: 10px;
}

.bf-cal-chosen-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bf-cal-chosen span {
  font-size: 13px;
  color: var(--color-green);
  font-weight: 500;
}

/* Location selector */
.bf-location-wrap {
  margin-top: 20px;
}

.bf-location-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bf-location-btn {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #E4EAC9;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .18s, background .18s, transform .18s;
}

.bf-location-btn:hover {
  border-color: #b8cf66;
  background: #f9fbe8;
  transform: translateY(-2px);
}

.bf-location-btn--selected {
  border-color: var(--color-green-light);
  background: #f3f9d8;
}

.bf-location-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e3010;
}

.bf-location-addr {
  font-size: 12.5px;
  color: #7a8a5a;
}

/* .bf-step .bf-ctype-card:hover, */
.bf-ctype-card--selected, 
.bf-meet-card--selected,
/*.bf-meet-card:hover, */
.bf-area-tile--selected,
.bf-area-tile:hover,
.bf-area-tile--selected,
.bf-type-card:hover,
.bf-type-card--selected,
.bf-area-tile:hover,
.bf-meet-card--selected,
.bf-meet-slot:hover,
.bf-meet-slot--active {
  background: #e3ebbb;
  box-shadow: 0 14px 34px -22px rgba(120,150,40,1);
  transform: translateY(-5px);
}

/* ─── Info banner ─── */
.bf-info-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #F1F6DE;
  border: 1px solid #DCE6BE;
  border-radius: 14px;
  padding: 15px 18px;
  margin-bottom: 26px;
}

.bf-info-banner--between {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.bf-info-banner-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bf-info-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 14px;
}

.bf-info-banner span,
.bf-info-banner-inner span {
  font-size: 13.5px;
  color: #40492f;
  line-height: 1.5;
}

.bf-montonio {
  font-weight: 700;
  font-size: 15px;
  color: #3d2f6b;
  flex: none;
}

/* ─── Step 4: Form ─── */
.bf-form-group { margin-bottom: 22px; }

.bf-form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #26301f;
  margin-bottom: 9px;
}

.bf-req { color: var(--color-green-light); }

.bf-form-group--error .bf-form-input,
.bf-form-group--error .bf-form-textarea {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 3px rgba(224,82,82,.12) !important;
}

.bf-form-error-msg {
  display: none;
  font-size: 12px;
  color: #e05252;
  margin-top: 5px;
}

.bf-form-group--error .bf-form-error-msg {
  display: block;
}

.bf-form-textarea { resize: none; }

/* Upload */
.bf-upload-section { margin-top: 30px; }

.bf-upload-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .bf-upload-two-col { grid-template-columns: 1fr; }
}

.bf-upload-col { display: flex; flex-direction: column; }

.bf-upload-col-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bf-upload-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #26301f;
}

.bf-upload-col-meta {
  font-size: 12px;
  color: #a3a894;
}

.bf-upload-zone-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.bf-upload-page-range {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #DCE6BE;
}

.bf-upload-page-label {
  font-size: 12px;
  color: #6b7461;
  white-space: nowrap;
  flex-shrink: 0;
}

.bf-upload-page-input {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-family: inherit;
  padding: 3px 8px;
  border: 1px solid #C6D897;
  border-radius: 6px;
  background: #fff;
  color: #26301f;
  outline: none;
}

.bf-upload-page-input:focus { border-color: var(--color-green-light); }

.bf-upload-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 12px;
}

.bf-upload-zone {
  border: 1.5px dashed #C6D897;
  background: #FBFCF3;
  border-radius: 16px;
  padding: 34px;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  margin-bottom: 12px;
}

.bf-upload-zone:hover,
.bf-upload-zone--dragover {
  background: #F5F8E6;
  border-color: var(--color-green-light);
}

.bf-upload-zone-text { font-size: 16px; font-weight: 600; color: #26301f; margin-bottom: 4px; }
.bf-upload-zone-sub  { font-size: 13.5px; color: #8b9280; }
.bf-upload-zone-hint { font-size: 12px; color: #a3a894; margin-top: 8px; }

.bf-upload-browse {
  background: none;
  border: none;
  color: #5f7d1e;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13.5px;
  font-family: inherit;
}

.bf-upload-list { display: flex; flex-direction: column; gap: 8px; }

.bf-upload-file {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 10px 14px;
  background: #F1F6DE;
  border: 1px solid #DCE6BE;
  border-radius: 10px;
  font-size: 13.5px;
  color: #40492f;
}

.bf-upload-file-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.bf-upload-file-remove {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: #8b9280;
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
  font-family: inherit;
}

.bf-upload-file-status {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.bf-upload-file-status--loading { color: #a3a894; }
.bf-upload-file-status--ok      { color: #5f7d1e; }
.bf-upload-file-status--err     { color: #c0392b; }

.bf-upload-word-count {
  font-size: 11.5px;
  color: #8b9280;
  flex-shrink: 0;
  white-space: nowrap;
}

.bf-upload-summary {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 10px 14px;
  background: #F5F8E6;
  border: 1px solid #DCE6BE;
  border-radius: 12px;
}

.bf-upload-summary-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

.bf-upload-summary-label { color: #6b7461; }

.bf-upload-summary-count {
  font-weight: 700;
  color: #26301f;
}

.bf-upload-word-warn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
}
.bf-upload-word-warn[hidden] { display: none; }
.bf-upload-summary[hidden]   { display: none; }

.bf-upload-word-warn svg { flex-shrink: 0; margin-top: 1px; }

/* ─── Step 5: Contacts ─── */
.bf-ctab-row {
  display: inline-flex;
  background: #EDEFDF;
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 30px;
}

.bf-ctab {
  padding: 11px 34px;
  border-radius: 999px;
  color: #6b7461;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: background .2s, color .2s;
}

.bf-ctab--active {
  background: var(--color-green-light);
  color: var(--color-green);
}

.bf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

/* ── intl-tel-input phone field ── */
/* ── intl-tel-input phone field ── */
.bf-iti-wrap {
  display: block;
  width: 100%;
}

.bf-iti-wrap .iti {
  display: block;
  width: 100%;
  border-radius: 13px;
}

.bf-iti-wrap .iti__flag-container {
  border-right: 1px solid #E2E4D6;
  border-radius: 13px 0 0 13px;
}

.bf-iti-wrap .iti__selected-flag {
  padding: 0 10px 0 14px;
  background: transparent;
  border-radius: 13px 0 0 13px;
}

.bf-iti-wrap .iti__selected-flag[aria-expanded="true"] {
  background: #f5f8ec;
  border-radius: 13px 0 0 13px;
}


.bf-iti-wrap .iti__country-list {
  border-radius: 13px;
  border: 1px solid #E2E4D6;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  font-size: 14px;
  z-index: 1000;
}

.bf-iti-wrap .iti__country.iti__highlight,
.bf-iti-wrap .iti__country:hover {
  background: #f5f8ec;
}


/* ─── Step 6: OTP ─── */
.bf-otp-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

input[type="text"].bf-otp-input {
  width: 62px;
  height: 72px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-green);
  background: #fff;
  border: 1.5px solid #E2E4D6;
  border-radius: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.bf-otp-input:focus {
  border-color: var(--color-green-light);
  box-shadow: 0 0 0 3px rgba(166,206,60,.15);
}

.bf-otp-input.bf-otp-filled {
  border-color: var(--color-green-light);
  box-shadow: 0 0 0 3px rgba(166,206,60,.15);
}

.bf-otp-input--error {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 3px rgba(224,82,82,.12) !important;
}

.bf-otp-hint {
  font-size: 13.5px;
  color: #8b9280;
}

.bf-otp-resend { color: #b0b4a2; }
.bf-otp-resend.bf-otp-resend--active {
  color: #5f7d1e;
  cursor: pointer;
  text-decoration: underline;
}

/* ─── Step 7: Payment ─── */
.bf-pay-bank-section {
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 12px;
  border: 1px solid #E7E8DD;
  background: #fff;
}

.bf-pay-bank-section--active {
  background: #F8FBE9;
  border: 1.5px solid var(--color-green-light);
  box-shadow: 0 10px 30px -20px rgba(120,150,40,.95);
}

.bf-pay-bank-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-green);
}

.bf-pay-bank-hd-check {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bf-pay-banks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.bf-pay-bank {
  background: #fff;
  border: 1px solid #E7E8DD;
  border-radius: 12px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #2a3527;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}

.bf-pay-bank:hover { border-color: #C6D897; background: #FBFCF3; }
.bf-pay-bank--selected { border-color: var(--color-green-light); background: #EFF5D6; }

.bf-pay-alt {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #E7E8DD;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 22px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: border-color .2s;
}

.bf-pay-alt:hover { border-color: #C6D897; }
.bf-pay-alt--selected { border-color: var(--color-green-light); background: #F8FBE9; }

.bf-pay-alt-radio {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 2px solid #D5D8CA;
  flex: none;
  transition: border-color .2s, background .2s;
}

.bf-pay-alt--selected .bf-pay-alt-radio {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
}

.bf-pay-alt-label { flex: 1; font-size: 15px; font-weight: 500; color: #2a3527; }

.bf-pay-alt-tags { display: flex; gap: 6px; }

.bf-pay-alt-tags span {
  font-size: 11px;
  font-weight: 600;
  color: #6b7461;
  border: 1px solid #E2E4D6;
  border-radius: 5px;
  padding: 3px 7px;
}

.bf-pay-alt-tag--visa {
  color: #1a1f71 !important;
  font-weight: 700 !important;
}

.bf-pay-terms { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }

.bf-pay-term {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #40492f;
}

.bf-pay-term-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid #C7CBB9;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}

.bf-pay-term-check--checked {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
}

.bf-pay-term-check--checked::after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23173318' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.bf-pay-term a { color: #41601f; }
.bf-pay-term a:hover { text-decoration: underline; }

/* ─── Toast notifications ─── */
.bf-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a2318;
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 20px 48px -8px rgba(0,0,0,.4);
  z-index: 9999;
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.4,.64,1), opacity .25s ease;
  pointer-events: none;
  max-width: min(460px, calc(100vw - 32px));
  white-space: normal;
}

.bf-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bf-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-weight: 700;
  font-size: 13px;
  background: #e74c3c;
  color: #fff;
}

.bf-toast--info    .bf-toast-icon { background: var(--color-green-light); color: var(--color-green); }
.bf-toast--success .bf-toast-icon { background: var(--color-green-light); color: var(--color-green); }

.bf-toast-msg { flex: 1; }

.bf-toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
  font-family: inherit;
  flex: none;
  transition: color .15s;
}

.bf-toast-close:hover { color: #fff; }

/* ─── Responsive ─── */
@media (min-width: 1200px) {
  .bf-meet-combined {
    height: 350px;
  }
  .bf-meet-grid .bf-ctype-card {
    height: 306px;
  }
}
@media (max-width: 960px) {
  .bf-layout {
    grid-template-columns: 1fr;
  }

  .bf-sidebar {
    position: static;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 15px;
    border-radius: 20px;
  }

  .bf-sb-head { flex: none; }
  .bf-sb-steps { flex-direction: row; flex: 1 1 100%; gap: 4px; }

  .bf-sb-step { margin: 5px; }
  .bf-sb-step-label { display: none; }
  .bf-sb-step-num { width: 26px; height: 26px; font-size: 12px; }
}

@media (max-width: 768px) {
  .bf-page {
    background-color: #F3F5EC;
  }
  .bf-main.bg-3 {
      background: none;
  }
  .bf-sb-title {
    display: none;
  }
  .bf-sb-summary,
  .bf-sb-summary-label {
    padding: 0;
    background: none;
    border: none;
    width: 100%;
  }
  .bf-meet-grid > .bf-meet-combined .bf-meet-combined-opts {
    height: auto;
  }
  .bf-ctype-feats {
    margin-top: auto;
  }
  .bf-ctype-badge {
    align-self: baseline;
    align-self: flex-start;
    margin: -6px 7px 0 0;
    font-size: 9px;
  }
  .bf-meet-card-top,
  .bf-ctype-card-top {
    position: absolute;
    
    justify-content: center;
    align-items: flex-start;
  }
  .bf-ctype-card-top {
    width: 93%;
  } 
  .bf-meet-card-top {
    width: 100%;
  }
  .bf-meet-card-check {
    margin-top: -5px;
  }
  .bf-meet-slot .bf-meet-card-check {
    position: absolute; 
    right: -8px;
    top: -11px;
  }
  .bf-main {
    box-shadow: none;
  }
  .bf-ctype-icon {
    margin-right: auto;
  }
  .bf-ctype-name,
  .bf-ctype-price {
    padding: 0 0 0 60px;
  }

  .bf-ctype-card {
    padding: 18px 15px;
  }

  .bf-meet-combined-hd {
    padding: 18px 15px 10px;
  }

  .bf-meet-card {
    padding: 0;
  }

  .bf-type-card {
    padding: 15px;
  }

  .bf-area-tile {
    padding: 25px 15px 25px;
  }

  .bf-type-card--dark {
    border: none;
  }

  .bf-cal-wrap {
    padding: 10px 15px 18px;
  }

  .bf-sb-note span {
    font-size: 10px;
  }
  .bf-main { padding: 28px 0; min-height: 0; }

  .bf-step-title { font-size: 28px; }

  .bf-type-grid { grid-template-columns: 1fr; }

  .bf-area-grid { grid-template-columns: repeat(2, 1fr); }

  .bf-ctype-grid, .bf-meet-grid { grid-template-columns: 1fr; gap: 25px; }

  .bf-toast {
    max-width: 400px;
    width: 80vw;
  }

  .bf-meet-combined-title {
    font-size: 18px;
  }

  .bf-meet-option-name {
    font-size: 14px;
  }

  .bf-ctype-card .bf-ctype-note {
    margin-bottom: 10px;
  }

  .bf-meet-combined .bf-meet-card {
      padding: 18px 10px 18px 15px;
  }

  .bf-cal-panel {
    grid-template-columns: 1fr;
  }

  .bf-contact-grid { grid-template-columns: 1fr; gap: 10px; }

  .bf-otp-input { width: 42px; height: 56px; font-size: 22px; }

  .bf-pay-banks { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Step 4: Dynamic custom fields ─── */
.bf-cf-question {
  margin-bottom: 28px;
}

.bf-cf-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.bf-cf-qnum {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-green-light, #BAD142);
  color: #0C2814;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.bf-cf-title {
  font-size: 15px;
  font-weight: 600;
  color: #26301f;
  line-height: 1.4;
  cursor: pointer;
}

.bf-cf-info-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  margin-top: 2px;
  opacity: 0.8;
  transition: opacity .15s;
}
.bf-cf-info-btn:hover { opacity: 1; }

.bf-cf-desc {
  margin: 0 0 8px 32px;
  font-size: 13px;
  color: #6b7461;
  line-height: 1.5;
}

.bf-cf-tooltip {
  position: relative;
  margin: 0 0 10px 32px;
  padding: 12px 36px 12px 14px;
  background: #f0f5d6;
  border: 1px solid #C6D897;
  border-radius: 10px;
  font-size: 13px;
  color: #3a4a2a;
  line-height: 1.55;
}

.bf-cf-tooltip-text { margin: 0; }

.bf-cf-tooltip-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #8b9280;
  line-height: 1;
  padding: 2px 4px;
  font-family: inherit;
}
.bf-cf-tooltip-close:hover { color: #26301f; }

.bf-cf-question .bf-form-textarea {
  margin-left: 0;
}

/* ─── Step 4: heading info panel ─── */
.bf-step-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.bf-step-title-row .bf-step-title {
  margin-bottom: 0;
}

.bf-step-hd-info-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  margin-top: 10px;
  opacity: 0.75;
  transition: opacity .15s;
}
.bf-step-hd-info-btn:hover { opacity: 1; }

.bf-step4-info-panel {
  position: relative;
  margin-top: 14px;
  padding: 18px 42px 18px 20px;
  background: #f0f5d6;
  border: 1px solid #C6D897;
  border-radius: 14px;
  animation: bfFadeUp .2s ease both;
}

.bf-step4-info-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bf-step4-info-list li {
  font-size: 13.5px;
  color: #3a4a2a;
  line-height: 1.55;
}

.bf-step4-info-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #8b9280;
  line-height: 1;
  padding: 2px 4px;
  font-family: inherit;
}
.bf-step4-info-close:hover { color: #26301f; }

.bf-upload-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.bf-upload-label-row .bf-upload-label { margin-bottom: 0; }

.bf-upload-info-panel {
  position: relative;
  margin-bottom: 14px;
  padding: 14px 40px 14px 16px;
  background: #f0f5d6;
  border: 1px solid #C6D897;
  border-radius: 12px;
  animation: bfFadeUp .2s ease both;
}

/* ── AI quality-check widget ── */
.bf-ai-check {
  margin-top: 28px;
  border-top: 1px solid #e8e5d8;
  padding-top: 24px;
}
.bf-ai-check-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bf-ai-check-info { flex: 1; min-width: 200px; }
.bf-ai-check-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #16280f;
  margin-bottom: 3px;
}
.bf-ai-check-sub {
  font-size: 13px;
  color: #6b7260;
  margin: 0;
  line-height: 1.5;
}
.bf-ai-check-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  border: 1.5px solid #16280f;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #16280f;
  cursor: pointer;
  transition: background .14s, color .14s;
  white-space: nowrap;
}
.bf-ai-check-btn:hover:not(:disabled) { background: #16280f; color: #bcda6d; }
.bf-ai-check-btn:disabled { opacity: .6; cursor: default; }

/* Result panel */
.bf-ai-result {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0ddd0;
  animation: bfFadeUp .2s ease both;
}
.bf-ai-result-header {
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bf-ai-overall--good { background: #f0fdf4; border-bottom: 1px solid #bbf7d0; }
.bf-ai-overall--fair { background: #fffbeb; border-bottom: 1px solid #fde68a; }
.bf-ai-overall--poor { background: #fef2f2; border-bottom: 1px solid #fecaca; }
.bf-ai-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  width: fit-content;
}
.bf-ai-overall--good .bf-ai-badge { background: #dcfce7; color: #166534; }
.bf-ai-overall--fair .bf-ai-badge { background: #fef9c3; color: #854d0e; }
.bf-ai-overall--poor .bf-ai-badge { background: #fee2e2; color: #991b1b; }
.bf-ai-summary {
  font-size: 14px;
  color: #374151;
  margin: 0;
  line-height: 1.55;
}
.bf-ai-section {
  padding: 14px 20px;
  border-bottom: 1px solid #f0ede4;
  font-size: 13.5px;
  color: #1f2937;
}
.bf-ai-section:last-of-type { border-bottom: none; }
.bf-ai-list {
  margin: 8px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bf-ai-list li { line-height: 1.5; }
.bf-ai-disclaimer {
  padding: 10px 20px;
  font-size: 11.5px;
  color: #9ca3af;
  margin: 0;
  background: #fafaf8;
  border-top: 1px solid #f0ede4;
}
.bf-ai-result-warn,
.bf-ai-result-error {
  padding: 12px 16px;
  font-size: 13.5px;
  border-radius: 10px;
}
.bf-ai-result-warn  { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.bf-ai-result-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.bf-ai-result-raw   { padding: 16px 20px; font-size: 13.5px; color: #374151; line-height: 1.6; }
