/* ================================
   Booknatic Pages - Custom Styles
   ================================ */

/* --- CSS Variables --- */
:root {
  --bn-primary: #3490F8;
  --bn-primary-dark: #1d79e8;
  --bn-navy: #0F2D5E;
  --bn-bg: #f8fafc;
  --bn-card: #ffffff;
  --bn-muted: #f0f4f8;
  --bn-muted-fg: #64748b;
  --bn-border: #e2e8f0;
  --bn-text: #1a2537;
  --bn-success: #16a34a;
  --bn-error: #dc2626;
  --bn-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --bn-shadow-lg: 0 10px 25px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --bn-shadow-xl: 0 20px 40px -5px rgba(0,0,0,.12), 0 8px 16px -4px rgba(0,0,0,.06);
}

/* --- Page Base --- */
.bn-page {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--bn-text);
  background: linear-gradient(180deg, var(--bn-bg) 0%, #dce8f5 50%, var(--bn-bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
.bn-page *, .bn-page *::before, .bn-page *::after {
  box-sizing: border-box;
}
.bn-page a { text-decoration: none; }
.bn-page :where(h1, h2, h3, h4, h5, h6) {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--bn-navy);
  line-height: 1.25;
  margin: 0;
}
.bn-page :where(p) { margin: 0; }
.bn-page ul, .bn-page ol { margin: 0; padding: 0; }
.bn-page button { cursor: pointer; font-family: inherit; }
.bn-page img { max-width: 100%; display: block; }
.bn-page input, .bn-page textarea { font-family: inherit; }

/* --- Container --- */
.bn-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Sections --- */
.bn-section { padding: 5rem 0; }
.bn-section--white { background-color: var(--bn-card); }
.bn-section--card { background-color: rgba(255,255,255,0.85); }
.bn-section--sm { padding: 4rem 0; }

/* --- Typography helpers --- */
.bn-text-primary { color: var(--bn-primary) !important; }
.bn-text-navy { color: var(--bn-navy) !important; }
.bn-text-muted { color: var(--bn-muted-fg) !important; }
.bn-text-center { text-align: center; }

/* --- Buttons --- */
.bn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}
.bn-btn--primary {
  background-color: var(--bn-primary);
  color: #fff;
}
.bn-btn--primary:hover { opacity: 0.88; color: #fff; }
.bn-btn--outline {
  background: transparent;
  border: 1.5px solid var(--bn-border);
  color: var(--bn-navy);
}
.bn-btn--outline:hover { background-color: var(--bn-muted); color: var(--bn-navy); }
.bn-btn--navy {
  background-color: var(--bn-navy);
  color: #fff;
}
.bn-btn--navy:hover { opacity: 0.88; color: #fff; }
.bn-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* --- Badge --- */
.bn-badge {
  display: inline-block;
  border-radius: 9999px;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-muted);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-muted-fg);
}
.bn-badge--card { background-color: var(--bn-card); }

/* ================================================
   HEADER
   ================================================ */
.bn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--bn-border);
  background-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bn-header__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.bn-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.bn-header__logo img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: block;
}
.bn-header__logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bn-navy);
}

/* Desktop nav */
.bn-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .bn-header__nav { display: flex; }
}
.bn-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bn-text);
  text-decoration: none;
  transition: color 0.15s;
}
.bn-nav-link:hover { color: var(--bn-primary); }
.bn-nav-link.active {
  color: var(--bn-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Resources dropdown */
.bn-resources-wrap {
  position: relative;
}
.bn-resources-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bn-text);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.bn-resources-btn:hover { color: var(--bn-primary); }
.bn-resources-btn.active {
  color: var(--bn-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.bn-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.5rem;
  display: none;
}
.bn-resources-wrap:hover .bn-dropdown,
.bn-dropdown:hover { display: block; }
.bn-dropdown__inner {
  width: 13rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 0.5rem;
  box-shadow: var(--bn-shadow-lg);
}
.bn-dropdown__link {
  display: block;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--bn-text);
  text-decoration: none;
  transition: background-color 0.15s;
}
.bn-dropdown__link:hover { background-color: var(--bn-muted); color: var(--bn-text); }

/* Header CTA */
.bn-header__cta {
  display: none;
}
@media (min-width: 768px) {
  .bn-header__cta { display: inline-flex; }
}

/* Mobile burger */
.bn-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bn-text);
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .bn-header__burger { display: none; }
}

/* Mobile menu */
.bn-mobile-menu {
  border-top: 1px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 1rem 1.5rem 1.25rem;
}
.bn-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bn-mobile-menu__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bn-text);
  text-decoration: none;
}
.bn-mobile-menu__link:hover { color: var(--bn-primary); }
.bn-mobile-cta {
  display: block;
  margin-top: 0.75rem;
  border-radius: 9999px;
  background-color: var(--bn-primary);
  color: #fff !important;
  padding: 0.625rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

/* ================================================
   FOOTER
   ================================================ */
.bn-footer {
  border-top: 1px solid var(--bn-border);
  background-color: var(--bn-card);
}
.bn-footer__inner {
  padding: 3rem 0;
}
.bn-footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .bn-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.bn-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.bn-footer__brand-logo img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}
.bn-footer__brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bn-navy);
}
.bn-footer__tagline {
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
  line-height: 1.6;
}
.bn-footer__col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bn-navy);
  margin-bottom: 0.75rem;
}
.bn-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bn-footer__link {
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
  text-decoration: none;
  transition: color 0.15s;
}
.bn-footer__link:hover { color: var(--bn-text); }
.bn-footer__copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bn-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
}

/* ================================================
   POLICY GENERATOR PAGE
   ================================================ */

/* Hero */
.bn-pg-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, hsl(213,85%,41%), hsl(213,94%,59%));
  text-align: center;
}
.bn-pg-hero__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bn-pg-hero__logo { width: 3rem; height: 3rem; border-radius: 0.5rem; }
.bn-pg-hero__brand { font-size: 1.25rem; font-weight: 700; color: #fff; }
.bn-pg-hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 42rem;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) { .bn-pg-hero__title { font-size: 3rem; } }
.bn-pg-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.bn-pg-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--bn-primary);
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.bn-pg-hero__cta:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); transform: translateY(-2px); color: var(--bn-primary); }
.bn-pg-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

/* Tool card */
.bn-pg-card {
  background: var(--bn-card);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border: 1.5px solid var(--bn-border);
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .bn-pg-card { padding: 2.5rem; } }

/* Step indicator */
.bn-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bn-step-dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  background: var(--bn-muted);
  color: var(--bn-muted-fg);
}
.bn-step-dot.done, .bn-step-dot.current {
  background: var(--bn-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(52,144,248,.35);
}
.bn-step-line {
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: var(--bn-border);
  transition: background 0.2s;
}
.bn-step-line.done { background: var(--bn-primary); }

/* Form fields */
.bn-pg-fields { display: flex; flex-direction: column; gap: 1.25rem; }
.bn-pg-step { display: none; }
.bn-pg-step.active { display: block; }
.bn-pg-step-title { font-size: 1.125rem; font-weight: 600; color: var(--bn-navy); margin-bottom: 1.25rem; }

.bn-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bn-navy);
  margin-bottom: 0.375rem;
}
.bn-label .bn-req { color: #ef4444; }
.bn-label .bn-info-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 0.25rem;
  color: var(--bn-muted-fg);
  cursor: help;
  position: relative;
}
.bn-label .bn-info-icon:hover .bn-tooltip {
  display: block;
}
.bn-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  background: var(--bn-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  width: 16rem;
  white-space: normal;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  pointer-events: none;
}

.bn-pg-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  background: var(--bn-card);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--bn-text);
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bn-pg-input:focus {
  border-color: var(--bn-primary);
  box-shadow: 0 0 0 3px rgba(52,144,248,.15);
}
.bn-pg-select {
  width: 100%;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  background: var(--bn-card);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--bn-text);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: auto;
}
.bn-pg-select:focus {
  border-color: var(--bn-primary);
  box-shadow: 0 0 0 3px rgba(52,144,248,.15);
}
.bn-time-group { display: flex; gap: 0.5rem; margin-top: 0.375rem; }
.bn-time-group .bn-pg-input { flex: 1; }
.bn-time-group .bn-time-unit {
  min-width: 5.5rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  background: var(--bn-card);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--bn-text);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
}
.bn-time-group .bn-time-unit:focus { border-color: var(--bn-primary); }
.bn-field-error {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: 0.375rem;
}

/* Tool navigation buttons */
.bn-pg-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.bn-pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
}
.bn-pg-btn--primary { background: var(--bn-primary); color: #fff; }
.bn-pg-btn--primary:hover { opacity: .88; }
.bn-pg-btn--outline { background: transparent; border: 1.5px solid var(--bn-border); color: var(--bn-navy); }
.bn-pg-btn--outline:hover { background: var(--bn-muted); }
.bn-pg-btn--ghost { background: transparent; color: var(--bn-muted-fg); border: none; padding: 0.625rem 0.75rem; }

/* Generated policy output */
.bn-pg-output-card {
  background: var(--bn-card);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border: 1.5px solid var(--bn-border);
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .bn-pg-output-card { padding: 2.5rem; } }
.bn-pg-success-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bn-pg-success-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(22,163,74,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}
.bn-pg-output-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.bn-pg-tab-btns { display: flex; gap: 0.5rem; }
.bn-pg-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--bn-border);
  background: var(--bn-card);
  color: var(--bn-text);
  font-family: inherit;
  transition: all 0.15s;
}
.bn-pg-tab-btn.active { background: var(--bn-primary); color: #fff; border-color: var(--bn-primary); }
.bn-pg-tab-btn:not(.active):hover { background: var(--bn-muted); }
.bn-pg-pre {
  background: var(--bn-muted);
  border-radius: 0.75rem;
  padding: 1.25rem;
  font-size: 0.8125rem;
  color: var(--bn-text);
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.7;
  border: 1.5px solid var(--bn-border);
  overflow: auto;
  max-height: 31.25rem;
}
.bn-pg-pre--mono { font-family: 'Courier New', Courier, monospace; font-size: 0.75rem; }
.bn-pg-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* How To Use */
.bn-howto-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .bn-howto-grid { grid-template-columns: repeat(3, 1fr); } }
.bn-howto-card { text-align: center; }
.bn-howto-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--bn-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--bn-primary);
  transition: background 0.2s, color 0.2s;
}
.bn-howto-card:hover .bn-howto-icon { background: var(--bn-primary); color: #fff; }

/* Why & What */
.bn-2col-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .bn-2col-grid { grid-template-columns: repeat(2, 1fr); } }
.bn-reason-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--bn-card);
  border: 1.5px solid var(--bn-border);
  margin-bottom: 1.25rem;
}
.bn-reason-card:last-child { margin-bottom: 0; }
.bn-reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--bn-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bn-primary);
}
.bn-checklist-card {
  background: var(--bn-card);
  border: 1.5px solid var(--bn-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.bn-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.bn-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.bn-checklist-icon { color: #0f9b6b; flex-shrink: 0; margin-top: 1px; }

/* Why use */
.bn-why-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .bn-why-grid { grid-template-columns: repeat(2, 1fr); } }
.bn-why-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--bn-card);
  border: 1.5px solid var(--bn-border);
  transition: box-shadow 0.2s;
}
.bn-why-card:hover { box-shadow: var(--bn-shadow-lg); }
.bn-why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: var(--bn-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bn-primary);
}

/* Metrics */
.bn-metrics-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .bn-metrics-grid { grid-template-columns: repeat(2, 1fr); } }
.bn-metric-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  background: var(--bn-bg);
}
.bn-metric-badge {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bn-metric-badge--blue { background: rgba(52,144,248,.1); color: var(--bn-primary); }
.bn-metric-badge--yellow { background: rgba(245,158,11,.1); color: #b45309; }
.bn-metric-badge--red { background: rgba(239,68,68,.1); color: #dc2626; }
.bn-metric-badge--green { background: rgba(22,163,74,.1); color: #16a34a; }
.bn-metric-title { font-weight: 700; color: var(--bn-navy); }
.bn-metric-sub { font-size: 0.875rem; color: var(--bn-muted-fg); margin-top: 0.25rem; }

/* Crosssell dark section */
.bn-crosssell {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0F2D5E, #0A5BBF, #1F6DC5);
  position: relative;
  overflow: hidden;
}
.bn-crosssell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.bn-crosssell__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) { .bn-crosssell__grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.bn-crosssell__tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #34c1f5; margin-bottom: 1rem; }
.bn-crosssell__title { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 768px) { .bn-crosssell__title { font-size: 2.5rem; } }
.bn-crosssell__title span { color: #34c1f5; }
.bn-crosssell__desc { font-size: 1.0625rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 28rem; }
.bn-crosssell__desc strong { color: #fff; }
.bn-crosssell__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.bn-crosssell__list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.bn-crosssell__list-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(52,193,245,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #34c1f5;
}
.bn-crosssell__list-text { font-size: 0.875rem; color: rgba(255,255,255,.9); line-height: 1.6; }
.bn-crosssell__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #34c1f5;
  color: #0F2D5E;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(52,193,245,.2);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.bn-crosssell__cta:hover { opacity: .9; color: #0F2D5E; }
.bn-crosssell__cta-note { font-size: 0.75rem; color: rgba(255,255,255,.4); margin-top: 0.75rem; }

/* Mini booking widget mockup */
.bn-mini-widget {
  background: var(--bn-card);
  border-radius: 1rem;
  border: 1.5px solid var(--bn-border);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  overflow: hidden;
  max-width: 22rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bn-mini-widget__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bn-border);
  background: rgba(52,144,248,.05);
}
.bn-mini-widget__tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bn-primary); }
.bn-mini-widget__service { font-weight: 700; font-size: 1.0625rem; color: var(--bn-navy); margin-top: 0.25rem; }
.bn-mini-widget__meta { font-size: 0.75rem; color: var(--bn-muted-fg); margin-top: 0.125rem; }
.bn-mini-cal { padding: 1rem 1.25rem 0.5rem; }
.bn-mini-cal__month { font-size: 0.75rem; font-weight: 600; color: var(--bn-navy); margin-bottom: 0.5rem; }
.bn-mini-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; text-align: center; }
.bn-mini-cal__day-name { font-size: 0.625rem; font-weight: 500; color: var(--bn-muted-fg); padding: 0.125rem 0; }
.bn-mini-cal__day {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bn-text);
  margin: 0 auto;
}
.bn-mini-cal__day--selected { background: var(--bn-primary); color: #fff; }
.bn-mini-cal__day--past { color: rgba(100,116,139,.4); }
.bn-mini-slots { padding: 0.75rem 1.25rem; }
.bn-mini-slots__label { font-size: 0.75rem; font-weight: 600; color: var(--bn-navy); margin-bottom: 0.5rem; }
.bn-mini-slots__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.375rem; }
.bn-mini-slot {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.375rem 0.125rem;
  border-radius: 0.375rem;
  text-align: center;
  background: var(--bn-muted);
  color: var(--bn-text);
}
.bn-mini-slot--selected { background: var(--bn-primary); color: #fff; }
.bn-mini-slot--unavail { color: rgba(100,116,139,.4); text-decoration: line-through; }
.bn-mini-addons { padding: 0.75rem 1.25rem; border-top: 1px solid var(--bn-border); }
.bn-mini-addons__label { font-size: 0.75rem; font-weight: 600; color: var(--bn-navy); margin-bottom: 0.5rem; }
.bn-mini-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(52,144,248,.05);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
}
.bn-mini-addon:last-child { margin-bottom: 0; }
.bn-mini-addon__check { display: flex; align-items: center; gap: 0.375rem; color: var(--bn-text); }
.bn-mini-addon__price { font-weight: 600; color: var(--bn-primary); }
.bn-mini-widget__confirm {
  margin: 0.75rem 1.25rem 1.25rem;
  background: var(--bn-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}
.bn-crosssell__right { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.bn-crosssell__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bn-crosssell__brand-logo { width: 3rem; height: 3rem; border-radius: 0.75rem; }
.bn-crosssell__brand-name { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.bn-crosssell__glow-wrap { position: relative; }
.bn-crosssell__glow {
  position: absolute;
  inset: -2rem;
  background: rgba(52,193,245,.1);
  border-radius: 1.5rem;
  filter: blur(24px);
}

/* ================================================
   HERO - HOMEPAGE
   ================================================ */
.bn-hero {
  padding: 5rem 0 4rem;
  text-align: center;
}
.bn-hero__title {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bn-navy);
}
@media (min-width: 768px) {
  .bn-hero__title { font-size: 3.75rem; }
}
.bn-hero__desc {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  font-size: 1.125rem;
  color: var(--bn-muted-fg);
}
.bn-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ================================================
   BOOKING WIDGET (DressRentalWidget)
   ================================================ */
.bn-booking-widget {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 1.5rem;
  box-shadow: var(--bn-shadow-xl);
}
.bn-booking-widget__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bn-booking-widget__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Widget Panel Title */
.bn-wp-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bn-navy);
  margin-bottom: 0.25rem;
}
.bn-wp-sub {
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
  margin-bottom: 1rem;
}

/* Category Buttons */
.bn-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  color: var(--bn-text);
  margin-bottom: 0.5rem;
}
.bn-cat-btn:last-of-type { margin-bottom: 0; }
.bn-cat-btn:hover { border-color: var(--bn-primary); }
.bn-cat-btn.active {
  border-color: var(--bn-primary);
  background-color: rgba(52,144,248,0.05);
  box-shadow: 0 0 0 1px var(--bn-primary);
}
.bn-cat-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--bn-muted);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.bn-cat-name { flex: 1; }
.bn-cat-check { color: var(--bn-primary); display: none; }
.bn-cat-btn.active .bn-cat-check { display: block; }

/* Booking Type Radio */
.bn-booking-type-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bn-navy);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.bn-radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  margin-bottom: 0.5rem;
}
.bn-radio-label:last-of-type { margin-bottom: 0; }
.bn-radio-label input { margin-top: 0.125rem; accent-color: var(--bn-primary); }
.bn-radio-label.active {
  border-color: var(--bn-primary);
  background-color: rgba(52,144,248,0.05);
}
.bn-radio-text { font-size: 0.875rem; font-weight: 500; color: var(--bn-text); }
.bn-radio-sub { font-size: 0.75rem; color: var(--bn-muted-fg); margin-top: 0.125rem; }

/* Center Widget Panel */
.bn-widget-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bn-widget-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.bn-widget-center-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bn-navy);
  text-align: center;
}
.bn-widget-center-sub {
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
  margin-bottom: 1rem;
  text-align: center;
}

/* Calendar */
.bn-cal { width: 100%; }
.bn-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.bn-cal-nav {
  border-radius: 9999px;
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}
.bn-cal-nav:hover { background-color: var(--bn-muted); }
.bn-cal-month { font-size: 0.875rem; font-weight: 600; }
.bn-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  text-align: center;
}
.bn-cal-dayname {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--bn-muted-fg);
  padding: 0.25rem 0;
  text-transform: uppercase;
}
.bn-cal-day {
  font-size: 0.75rem;
  padding: 0.375rem 0;
  border-radius: 9999px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--bn-text);
  transition: background-color 0.15s;
}
.bn-cal-day:hover { background-color: rgba(52,144,248,0.1); }
.bn-cal-day.active {
  background-color: var(--bn-primary);
  color: #fff;
  font-weight: 700;
}
.bn-cal-empty { display: block; }

/* Time Slot Panel */
.bn-ts-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bn-ts-toggle-label { font-size: 0.875rem; font-weight: 500; }
.bn-toggle-btn {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  background-color: #94a3b8;
}
.bn-toggle-btn.on { background-color: var(--bn-primary); }
.bn-toggle-knob {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform 0.2s;
}
.bn-toggle-btn.on .bn-toggle-knob { transform: translateX(1.25rem); }

.bn-slot-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.bn-slot-btn {
  width: 100%;
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  color: var(--bn-text);
  text-align: center;
}
.bn-slot-btn:hover { border-color: var(--bn-primary); }
.bn-slot-btn.active {
  border-color: transparent;
  background-color: var(--bn-primary);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(52,144,248,.3);
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.bn-features-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .bn-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bn-features-grid { grid-template-columns: repeat(4, 1fr); }
}
.bn-feature-card {
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  background-color: rgba(255,255,255,0.8);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.bn-feature-card:hover {
  box-shadow: var(--bn-shadow-lg);
  transform: scale(1.03);
  border-color: rgba(52,144,248,0.3);
}
.bn-feature-icon {
  color: var(--bn-primary);
  margin-bottom: 1rem;
}
.bn-feature-title {
  font-weight: 600;
  color: var(--bn-navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.bn-feature-desc {
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
}

/* ================================================
   INDUSTRY TABS SECTION
   ================================================ */
.bn-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.bn-tab-btn {
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  background-color: var(--bn-muted);
  color: var(--bn-text);
}
.bn-tab-btn:hover:not(.active) {
  background-color: rgba(52,144,248,0.1);
  color: var(--bn-primary);
  transform: scale(1.05);
}
.bn-tab-btn.active {
  background-color: var(--bn-navy);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(15,45,94,.2);
  transform: scale(1.05);
}

.bn-tab-panel { display: none; }
.bn-tab-panel.active { display: block; }

.bn-tab-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bn-navy);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}
.bn-tab-desc { color: var(--bn-muted-fg); margin-bottom: 0; }

.bn-industry-layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .bn-industry-layout { grid-template-columns: 1fr 420px; }
}
.bn-industry-img-wrap {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 0.75rem;
}
.bn-industry-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Industry Widget */
.bn-ind-widget {
  width: 100%;
  border-radius: 1rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 1.25rem;
  box-shadow: var(--bn-shadow-lg);
}
.bn-ind-widget-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bn-navy);
  margin-bottom: 0.75rem;
}
.bn-ind-widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bn-ind-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bn-muted-fg);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.bn-ind-service-btns, .bn-ind-slot-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.bn-ind-svc-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  color: var(--bn-text);
  text-align: left;
}
.bn-ind-svc-btn:hover { border-color: var(--bn-primary); }
.bn-ind-svc-btn.active { border-color: var(--bn-primary); background-color: rgba(52,144,248,0.05); }
.bn-ind-svc-btn .bn-ind-check { margin-left: auto; color: var(--bn-primary); display: none; }
.bn-ind-svc-btn.active .bn-ind-check { display: block; }
.bn-ind-slot-btn {
  width: 100%;
  border-radius: 0.5rem;
  border: 1.5px solid var(--bn-border);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  color: var(--bn-text);
  text-align: center;
}
.bn-ind-slot-btn:hover { border-color: var(--bn-primary); }
.bn-ind-slot-btn.active { border-color: transparent; background-color: var(--bn-primary); color: #fff; }
.bn-ind-book-btn {
  width: 100%;
  border-radius: 0.5rem;
  background-color: var(--bn-navy);
  color: #fff;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.bn-ind-book-btn:hover { opacity: 0.88; }

/* ================================================
   TOOLS SECTION
   ================================================ */
.bn-tools-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .bn-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bn-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
.bn-tool-card {
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.bn-tool-card:hover {
  box-shadow: var(--bn-shadow-lg);
  transform: scale(1.03);
  border-color: rgba(52,144,248,0.3);
}
.bn-tool-illus {
  height: 7rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: rgba(219,234,254,0.4);
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.5s;
}
.bn-tool-card:hover .bn-tool-illus {
  background-color: rgba(52,144,248,0.05);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.05);
}
.bn-tool-title {
  font-weight: 600;
  color: var(--bn-navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.bn-tool-desc { font-size: 0.875rem; color: var(--bn-muted-fg); }

/* ================================================
   PRICING CARD
   ================================================ */
.bn-pricing-wrap {
  max-width: 24rem;
  margin: 2.5rem auto 0;
}
.bn-pricing-card {
  border-radius: 1rem;
  border: 1.5px solid var(--bn-primary);
  background-color: var(--bn-card);
  padding: 2rem;
  box-shadow: var(--bn-shadow-lg);
  transition: box-shadow 0.3s;
}
.bn-pricing-card:hover { box-shadow: var(--bn-shadow-xl); }
.bn-plan-name { font-size: 1.25rem; font-weight: 700; color: var(--bn-navy); }
.bn-plan-desc { font-size: 0.875rem; color: var(--bn-muted-fg); margin-top: 0.25rem; }
.bn-plan-price { font-size: 2.5rem; font-weight: 700; color: var(--bn-navy); margin-top: 0.75rem; }
.bn-plan-price span { font-size: 1rem; font-weight: 400; color: var(--bn-muted-fg); }
.bn-plan-features { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.bn-plan-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.bn-plan-features li .bn-check-mark { color: var(--bn-primary); font-weight: 600; }
.bn-plan-cta-btn {
  display: block;
  margin-top: 2rem;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--bn-primary);
  color: #fff;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}
.bn-plan-cta-btn:hover { opacity: 0.88; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.bn-testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .bn-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.bn-test-card {
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  padding: 1.5rem;
}
.bn-stars { display: flex; gap: 0.25rem; color: var(--bn-primary); margin-bottom: 0.75rem; }
.bn-test-quote { font-size: 0.875rem; color: var(--bn-muted-fg); line-height: 1.6; }
.bn-test-name { font-size: 0.875rem; font-weight: 600; color: var(--bn-navy); margin-top: 1rem; }
.bn-test-role { font-size: 0.75rem; color: var(--bn-muted-fg); }
.bn-test-meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.bn-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--bn-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bn-navy);
  flex-shrink: 0;
}

/* ================================================
   CTA SECTION
   ================================================ */
.bn-cta-section { text-align: center; }
.bn-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ================================================
   PRICING PAGE
   ================================================ */
.bn-pricing-hero {
  padding: 5rem 0;
  text-align: center;
}
.bn-pricing-hero__title {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bn-navy);
}
@media (min-width: 768px) {
  .bn-pricing-hero__title { font-size: 3.125rem; }
}
.bn-pricing-hero__desc {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: var(--bn-muted-fg);
}

/* FAQ */
.bn-faq-list {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bn-faq-item {
  border-radius: 0.75rem;
  border: 1.5px solid var(--bn-border);
  background-color: var(--bn-card);
  overflow: hidden;
}
.bn-faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bn-navy);
  cursor: pointer;
  background: transparent;
  border: none;
  gap: 1rem;
  line-height: 1.5;
}
.bn-faq-chevron {
  flex-shrink: 0;
  color: var(--bn-muted-fg);
  transition: transform 0.25s ease;
  display: flex;
}
.bn-faq-chevron.open { transform: rotate(180deg); }
.bn-faq-a {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: var(--bn-muted-fg);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.bn-faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1rem;
}


/* Section text helpers */
.bn-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bn-navy);
  text-align: center;
}
@media (min-width: 768px) {
  .bn-section-title { font-size: 2.25rem; }
}
.bn-section-sub {
  max-width: 32rem;
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--bn-muted-fg);
}

/* ================================================
   POLICY GENERATOR PAGE - NEW DESIGN (v3)
   Scoped to .bn-policy-page to avoid affecting
   other Booknatic pages.
   ================================================ */
.bn-policy-page {
  --bn-primary: hsl(340, 92%, 55%);
  --bn-primary-dark: hsl(340, 92%, 45%);
  --bn-navy: #0a0a0a;
  --bn-bg: #ffffff;
  --bn-muted: #f5f5f5;
  --bn-muted-fg: #666666;
  --bn-border: #e0e0e0;
  --bn-text: #0a0a0a;
  --bn-success: hsl(146, 64%, 43%);
  --bn-error: hsl(0, 84%, 60%);

  font-family: 'DM Sans', Arial, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  background-color: #ffffff;
}

.bn-policy-page :where(h1, h2, h3, h4, h5, h6) {
  font-family: 'Unbounded', 'DM Sans', Arial, sans-serif;
  letter-spacing: -0.01em;
}

/* Hero */
.bn-policy-page .bn-pg-hero {
  background: linear-gradient(135deg, hsl(340, 92%, 55%), hsl(340, 95%, 65%));
}
.bn-policy-page .bn-pg-hero__title {
  color: #fff;
  max-width: none;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .bn-policy-page .bn-pg-hero__title { font-size: 3.25rem; }
}

/* Step indicator */
.bn-policy-page .bn-step-dot.done,
.bn-policy-page .bn-step-dot.current {
  box-shadow: 0 2px 8px hsla(340, 92%, 55%, .35);
}

/* Form focus states */
.bn-policy-page .bn-pg-input:focus,
.bn-policy-page .bn-pg-select:focus {
  border-color: hsl(340, 92%, 55%);
  box-shadow: 0 0 0 3px hsla(340, 92%, 55%, .15);
}
.bn-policy-page .bn-time-group .bn-time-unit:focus {
  border-color: hsl(340, 92%, 55%);
}

/* Success icon */
.bn-policy-page .bn-pg-success-icon {
  background: hsla(146, 64%, 43%, .1);
  color: hsl(146, 64%, 43%);
}

/* Metric badge - primary color */
.bn-policy-page .bn-metric-badge--blue {
  background: hsla(340, 92%, 55%, .1);
  color: hsl(340, 92%, 55%);
}
.bn-policy-page .bn-metric-badge--yellow {
  background: hsla(38, 92%, 50%, .1);
  color: hsl(38, 92%, 50%);
}
.bn-policy-page .bn-metric-badge--green {
  background: hsla(146, 64%, 43%, .1);
  color: hsl(146, 64%, 43%);
}
.bn-policy-page .bn-metric-badge--red {
  background: hsla(0, 84%, 60%, .1);
  color: hsl(0, 84%, 60%);
}

/* Checklist icon */
.bn-policy-page .bn-checklist-icon {
  color: hsl(146, 64%, 43%);
}

/* Crosssell section - dark gradient with pink */
.bn-policy-page .bn-crosssell {
  background: linear-gradient(to bottom right, #000000, #0a0a0a, hsl(340, 92%, 55%));
}
.bn-policy-page .bn-crosssell__title {
  color: #fff;
}
.bn-policy-page .bn-crosssell__tag {
  color: hsl(44, 100%, 64%);
}
.bn-policy-page .bn-crosssell__title span {
  color: hsl(44, 100%, 64%);
}
.bn-policy-page .bn-crosssell__list-icon {
  background: hsla(44, 100%, 64%, .15);
  color: hsl(44, 100%, 64%);
}
.bn-policy-page .bn-crosssell__cta {
  background: hsl(44, 100%, 64%);
  color: #000000;
  box-shadow: 0 8px 24px hsla(44, 100%, 64%, .2);
}
.bn-policy-page .bn-crosssell__cta:hover {
  color: #000000;
}
.bn-policy-page .bn-crosssell__glow {
  background: hsla(44, 100%, 64%, .1);
}

/* Mini booking widget accent colors */
.bn-policy-page .bn-mini-widget__header {
  background: hsla(340, 92%, 55%, .05);
}
.bn-policy-page .bn-mini-addon {
  background: hsla(340, 92%, 55%, .05);
}

/* Howto icon hover */
.bn-policy-page .bn-howto-card:hover .bn-howto-icon {
  background: hsl(340, 92%, 55%);
}
