/* ================================
   Booknatic Pages - Custom Styles
   ================================
   Font: Nunito (loaded via wp_enqueue_style in enqueue-scripts.php)
   Nav and footer styles are handled by v2 header/footer — not duplicated here.
   ================================ */

/* --- CSS Variables (shared across all Booknatic pages) --- */
: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 (legacy .bn-page scoped styles kept for policy generator pages) --- */
.bn-page {
  font-family: 'Nunito', -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: 'Nunito', 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 (legacy .bn-* classes used by policy generator, pricing, etc.) --- */
.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); }

/* ================================================
   BOOKNATIC HOMEPAGE — NEW DESIGN
   Classes from source HTML (Booknatic-homepage.html).
   All classes are reset/box-sized at the body level via Nunito font.
   ================================================ */

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

:root {
  --cr: #E8175D; --crd: #C4104A; --crt: #FFF0F4;
  --ye: #FFD600; --yet: #FFF8CC;
  --wh: #FFFFFF; --of: #F9F9F9;
  --ch: #111111; --mid: #222222;
  --t1: #1A1A1A; --t2: #555555; --tm: #888888;
  --bl: #E8E8E8; --bm: #D0D0D0;
  --gn: #22C55E;
}

/* Page using new design uses Nunito body font */
body { font-family: 'Nunito', sans-serif; }

/* ── BUTTONS (new design) ── */
/* Scoped under .v2-page so the white text beats the global
   `.v2-page a { color: inherit }` reset (specificity 0,1,1 > 0,1,0). */
.v2-page .btn-red {
  display: inline-block; background: var(--cr); color: #fff; border: none;
  border-radius: 9999px; padding: 14px 32px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(232,23,93,0.35);
  transition: background 200ms, transform 150ms; text-decoration: none;
}
.v2-page .btn-red:hover { background: var(--crd); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--t1);
  border: 2px solid var(--bl); border-radius: 9999px; padding: 12px 30px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: border-color 200ms, color 200ms; text-decoration: none;
}
.btn-outline:hover { border-color: var(--cr); color: var(--cr); }

/* ── HERO ── */
.hero {
  padding: 80px 56px 96px; background: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,23,93,0.10) 0%, transparent 70%);
  top: -100px; left: -100px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.18) 0%, transparent 70%);
  bottom: -100px; right: -80px; pointer-events: none;
}
.hero-in {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--bl); border-radius: 9999px; padding: 7px 16px;
  font-size: 12px; font-weight: 700; color: var(--t2); margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cr); }
.hero h1 {
  font-size: 56px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05;
  color: var(--t1); margin-bottom: 20px;
}
.hero h1 .accent { color: var(--cr); }
.hero p.lead {
  font-size: 18px; font-weight: 600; color: var(--t2); line-height: 1.65;
  margin-bottom: 30px; max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }

/* ── HERO BOOKING WIDGET ── */
.hero-widget {
  background: #fff; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1px var(--bl); overflow: hidden;
}
.hw-head {
  background: linear-gradient(135deg, #FF5E7E 0%, var(--cr) 100%);
  padding: 18px 24px; display: flex; align-items: center; gap: 12px; color: #fff;
}
.hw-head img { width: 42px; height: 42px; border-radius: 10px; }
.hw-head .hw-t { font-size: 14px; font-weight: 800; }
.hw-head .hw-s { font-size: 11px; font-weight: 600; opacity: 0.85; }
.hw-body { padding: 22px; }
.hw-lbl {
  font-size: 11px; font-weight: 700; color: var(--tm); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.hw-lbl-ico { display: flex; align-items: center; gap: 7px; }
.hw-lbl-truck { font-size: 14px; }
.hw-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.hw-cat {
  padding: 7px 13px; border-radius: 9999px; font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--bl); background: #fff; color: var(--t2); cursor: pointer;
  transition: all 150ms; font-family: 'Nunito', sans-serif;
}
.hw-cat:hover { border-color: var(--cr); color: var(--cr); }
.hw-cat.on { background: var(--cr); color: #fff; border-color: var(--cr); }

/* Shipping method */
.hw-ship { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.hw-ship-opt {
  background: #fff; border: 1.5px solid #E8E8E8; border-radius: 12px;
  padding: 14px 8px 10px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; cursor: pointer; transition: all 200ms;
  font-family: 'Nunito', sans-serif;
}
.hw-ship-opt:hover { border-color: #E8175D; transform: translateY(-1px); }
.hw-ship-opt.on { background: #FFF0F4; border-color: #E8175D; box-shadow: 0 0 0 3px rgba(232,23,93,0.08); }
.hw-ship-ico { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.hw-ship-ico svg { width: 100%; height: 100%; }
.hw-ship-lbl { font-size: 11px; font-weight: 800; color: #1A1A1A; text-align: center; line-height: 1.25; }
.hw-ship-opt.on .hw-ship-lbl { color: #E8175D; }

/* Calendar */
.hw-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hw-cal-month { font-size: 13px; font-weight: 800; color: var(--t1); }
.hw-cal-nav { display: flex; gap: 6px; }
.hw-cal-arrow {
  width: 26px; height: 26px; border-radius: 7px; border: 1.5px solid var(--bl);
  background: #fff; cursor: pointer; font-size: 13px; color: var(--t2);
  transition: all 150ms; display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
}
.hw-cal-arrow:hover { border-color: var(--cr); color: var(--cr); }
.hw-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 18px;
}
.hw-cal-h {
  font-size: 9px; font-weight: 700; color: var(--tm); text-align: center;
  padding: 4px 0; text-transform: uppercase; letter-spacing: 0.5px;
}
.hw-cal-d {
  height: 32px; border-radius: 7px; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700; cursor: pointer;
  border: 1.5px solid transparent; background: #fff; color: var(--t1); transition: all 150ms;
}
.hw-cal-d.empty { cursor: default; background: transparent; }
.hw-cal-d.av { border-color: transparent; }
.hw-cal-d.av:hover { border-color: var(--cr); color: var(--cr); }
.hw-cal-d.sel { background: var(--cr); color: #fff; border-color: var(--cr); }
.hw-cal-d.full { background: var(--of); color: var(--bm); cursor: not-allowed; text-decoration: line-through; }

/* Time slots */
.hw-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hw-slot {
  padding: 9px; border: 1.5px solid var(--bl); border-radius: 9px;
  font-size: 11px; font-weight: 700; color: var(--t2); text-align: center;
  cursor: pointer; transition: all 150ms; background: #fff; font-family: 'Nunito', sans-serif;
}
.hw-slot:hover { border-color: var(--cr); color: var(--cr); }
.hw-slot.on { background: var(--cr); color: #fff; border-color: var(--cr); }
.hw-slot.taken { background: var(--of); color: var(--bm); cursor: not-allowed; text-decoration: line-through; }

/* ── SEC: SHARED SECTION STYLES ── */
.sec { padding: 96px 56px; background: #fff; }
.sec.alt { background: #FAF7F2; }
.sec.dark { background: var(--ch); }
.sec-in { max-width: 1240px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 {
  font-size: 42px; font-weight: 800; color: var(--t1);
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px;
}
.sec-head h2 .accent { color: var(--cr); }
.sec-head p { font-size: 17px; font-weight: 600; color: var(--t2); line-height: 1.65; max-width: 600px; margin: 0 auto; }
.sec.dark .sec-head h2 { color: #fff; }
.sec.dark .sec-head p { color: rgba(255,255,255,0.55); }

/* ── SEC: FEATURES (4 metric cards) ── */
.fgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fcard {
  background: #fff; border: 1px solid var(--bl); border-radius: 20px; padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
}
.fcard:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 18px 40px rgba(0,0,0,0.06); }
.fcard-ico {
  width: 48px; height: 48px; border-radius: 13px; background: var(--crt);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 18px; transition: background 200ms;
}
.fcard:hover .fcard-ico { background: var(--cr); }
.fcard h3 { font-size: 18px; font-weight: 800; color: var(--t1); margin-bottom: 8px; letter-spacing: -0.2px; }
.fcard p { font-size: 13px; font-weight: 600; color: var(--t2); line-height: 1.65; }

/* ── SEC: INDUSTRY TABS ── */
.itabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.itab {
  padding: 11px 22px; border-radius: 9999px; font-size: 13px; font-weight: 700;
  border: 2px solid var(--bl); background: #fff; color: var(--t2); cursor: pointer;
  transition: all 200ms; font-family: 'Nunito', sans-serif;
}
.itab:hover { border-color: var(--cr); color: var(--cr); }
.itab.on { background: var(--cr); color: #fff; border-color: var(--cr); box-shadow: 0 4px 14px rgba(232,23,93,0.3); }

.ipanel { display: none; }
.ipanel.on { display: grid; }
.ipanel { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ipanel-l h3 { font-size: 32px; font-weight: 800; color: var(--t1); letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px; }
.ipanel-l p { font-size: 16px; font-weight: 600; color: var(--t2); line-height: 1.7; margin-bottom: 24px; }
.ipanel-l ul { list-style: none; padding: 0; margin: 0 0 28px; }
.ipanel-l li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 600; color: var(--t2); margin-bottom: 9px; }
.ipanel-l li::before { content: '✓'; color: var(--gn); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* Industry widget */
.iwidget { background: #fff; border-radius: 22px; box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 0 0 1px var(--bl); overflow: hidden; }
.iwidget-img { height: 240px; position: relative; overflow: hidden; background: #F4F4F4; }
.iwidget-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.iwidget-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none; z-index: 1;
}
.iwidget-body { padding: 24px; }
.iwidget-tag {
  display: inline-block; background: var(--crt); color: var(--cr);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 11px; border-radius: 9999px; margin-bottom: 12px;
}
.iwidget-h { font-size: 11px; font-weight: 700; color: var(--tm); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.iwidget-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.iwidget-pill {
  padding: 6px 12px; border-radius: 9999px; font-size: 11px; font-weight: 700;
  border: 1.5px solid var(--bl); background: #fff; color: var(--t2); cursor: pointer;
  transition: all 150ms; font-family: 'Nunito', sans-serif;
}
.iwidget-pill:hover { border-color: var(--cr); color: var(--cr); }
.iwidget-pill.on { background: var(--cr); color: #fff; border-color: var(--cr); }
.iwidget-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }
.iwidget-slot {
  padding: 8px 4px; border-radius: 9px; border: 1.5px solid var(--bl);
  font-size: 11px; font-weight: 700; color: var(--t2); text-align: center;
  cursor: pointer; transition: all 150ms; background: #fff;
}
.iwidget-slot:hover { border-color: var(--cr); color: var(--cr); }
.iwidget-slot.on { background: var(--cr); color: #fff; border-color: var(--cr); }
.iwidget-cta {
  display: block; width: 100%; background: var(--cr); color: #fff; border: none;
  border-radius: 9999px; padding: 12px; font-size: 14px; font-weight: 800;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(232,23,93,0.3); transition: background 200ms, transform 150ms;
}
.iwidget-cta:hover { background: var(--crd); transform: translateY(-1px); }

/* ── SEC: TOOLS (3+2 grid with animated illustrations) ── */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
.tgrid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: calc((1240px - 22px) * 2 / 3); margin: 0 auto; }
.tcard {
  background: #FAFAFB; border: 1px solid var(--bl); border-radius: 20px; padding: 36px 32px;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
  display: flex; flex-direction: column; align-items: flex-start; cursor: default;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06), 0 20px 44px rgba(0,0,0,0.04); background: #fff; }
.tcard-illu { height: 140px; width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.tcard h3 { font-size: 17px; font-weight: 800; color: var(--t1); margin-bottom: 9px; letter-spacing: -0.2px; }
.tcard p { font-size: 13px; font-weight: 600; color: var(--t2); line-height: 1.65; }

/* SVG illustration: calendar */
.illu-cal { position: relative; width: 170px; height: 120px; }
.illu-cal .cal-body { position: absolute; top: 14px; left: 35px; width: 100px; height: 90px; background: #fff; border: 2px solid #DCE3EA; border-radius: 10px; padding: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.illu-cal .cal-top { height: 14px; background: #4B7BEC; border-radius: 5px 5px 0 0; margin: -6px -6px 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 8px; font-weight: 800; letter-spacing: 0.5px; }
.illu-cal .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.illu-cal .cal-d { height: 11px; font-size: 7px; font-weight: 700; color: #8A95A6; text-align: center; line-height: 11px; border-radius: 2px; }
.illu-cal .cal-d.on { background: #4B7BEC; color: #fff; }
.illu-cal .cal-d.alt { background: #FFD600; color: var(--ch); }
.illu-cal .check { position: absolute; top: 8px; right: 18px; width: 22px; height: 22px; background: #22C55E; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 900; box-shadow: 0 4px 10px rgba(34,197,94,0.4); animation: floatY 2.4s ease-in-out infinite; }
.illu-cal .arrow-l, .illu-cal .arrow-r { position: absolute; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; }
.illu-cal .arrow-l { top: 50px; left: 10px; background: #FFB400; color: #fff; animation: arrowL 2s ease-in-out infinite; }
.illu-cal .arrow-r { top: 50px; right: 12px; background: #4B7BEC; color: #fff; animation: arrowR 2s ease-in-out infinite; }

/* SVG illustration: reminders */
.illu-rem { position: relative; width: 160px; height: 120px; display: flex; align-items: center; justify-content: center; }
.illu-rem .phone { width: 48px; height: 78px; background: #fff; border: 2px solid #DCE3EA; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); padding: 6px 4px; position: relative; }
.illu-rem .phone-bar { width: 80%; height: 5px; background: #FFD600; border-radius: 2px; margin: 0 auto 3px; }
.illu-rem .phone-bar.b { background: #4B7BEC; width: 60%; }
.illu-rem .phone-bar.c { background: #FF6B9D; width: 70%; }
.illu-rem .phone-label { position: absolute; top: -7px; left: 50%; transform: translateX(-50%); font-size: 6px; font-weight: 800; color: var(--cr); background: var(--crt); padding: 1px 5px; border-radius: 9999px; letter-spacing: 0.4px; white-space: nowrap; }
.illu-rem .bell { width: 42px; height: 42px; background: var(--cr); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; margin-left: -10px; box-shadow: 0 6px 16px rgba(232,23,93,0.32); animation: bellRing 1.6s ease-in-out infinite; z-index: 2; }
.illu-rem .envelope { width: 34px; height: 24px; background: #FFD600; border-radius: 5px; margin-left: -6px; position: relative; animation: floatY 2.6s ease-in-out infinite; animation-delay: 0.3s; }
.illu-rem .envelope::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent 49%, #E5A800 49%, #E5A800 51%, transparent 51%); }
.illu-rem .dot-r { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--cr); }
.illu-rem .dot-r.r1 { top: 10px; right: 30px; animation: twinkle 1.4s ease-in-out infinite; }
.illu-rem .dot-r.r2 { bottom: 20px; left: 14px; animation: twinkle 1.4s ease-in-out infinite; animation-delay: 0.4s; background: #FFD600; }
.illu-rem .dot-r.r3 { top: 30px; right: 8px; animation: twinkle 1.4s ease-in-out infinite; animation-delay: 0.7s; background: #22C55E; }

/* SVG illustration: conversion */
.illu-conv { position: relative; width: 170px; height: 120px; display: flex; align-items: flex-end; justify-content: center; gap: 8px; padding-bottom: 18px; }
.illu-conv .bar { width: 18px; border-radius: 5px 5px 0 0; animation: barGrow 2.2s ease-in-out infinite; transform-origin: bottom; }
.illu-conv .bar.b1 { height: 32px; background: #FFB400; animation-delay: 0s; }
.illu-conv .bar.b2 { height: 56px; background: #4B7BEC; animation-delay: 0.15s; }
.illu-conv .bar.b3 { height: 78px; background: var(--cr); animation-delay: 0.3s; }
.illu-conv .bar.b4 { height: 60px; background: #22C55E; animation-delay: 0.45s; }
.illu-conv .badge42 { position: absolute; right: 6px; bottom: 0; background: #FFD600; color: var(--ch); font-size: 9px; font-weight: 900; padding: 3px 7px; border-radius: 9999px; }
.illu-conv .arrow-up { position: absolute; top: 6px; right: 14px; font-size: 18px; color: #22C55E; font-weight: 900; animation: floatY 2s ease-in-out infinite; }

/* SVG illustration: white-label */
.illu-wl { position: relative; width: 170px; height: 120px; display: flex; align-items: center; justify-content: center; }
.illu-wl .frame { background: #fff; border: 2px solid #DCE3EA; border-radius: 10px; padding: 11px; box-shadow: 0 4px 14px rgba(0,0,0,0.08); width: 130px; }
.illu-wl .dots-row { display: flex; gap: 6px; margin-bottom: 9px; }
.illu-wl .cdot { width: 14px; height: 14px; border-radius: 50%; animation: colorShift 3s ease-in-out infinite; }
.illu-wl .cdot.c1 { background: #4B7BEC; animation-delay: 0s; }
.illu-wl .cdot.c2 { background: #FFB400; animation-delay: 0.5s; }
.illu-wl .cdot.c3 { background: var(--cr); animation-delay: 1s; }
.illu-wl .btn-mock { height: 9px; background: linear-gradient(90deg, #4B7BEC, var(--cr)); border-radius: 3px; width: 60%; margin: 0 auto; }
.illu-wl .star { position: absolute; top: 14px; left: 14px; font-size: 14px; color: #FFD600; animation: twinkle 1.6s ease-in-out infinite; }
.illu-wl .brush { position: absolute; bottom: 18px; right: 14px; width: 8px; height: 32px; background: linear-gradient(to bottom, #222 0%, #222 70%, var(--cr) 70%, var(--cr) 100%); border-radius: 2px 2px 4px 4px; animation: brushSwipe 2.4s ease-in-out infinite; }

/* SVG illustration: payment */
.illu-pay { position: relative; width: 170px; height: 120px; display: flex; align-items: center; justify-content: center; }
.illu-pay .card { width: 90px; height: 56px; background: linear-gradient(135deg, #4B7BEC, #3B5EE0); border-radius: 7px; box-shadow: 0 6px 16px rgba(75,123,236,0.4); padding: 6px; position: relative; animation: cardWobble 3s ease-in-out infinite; }
.illu-pay .card-strip { position: absolute; top: 14px; left: 0; right: 0; height: 8px; background: rgba(0,0,0,0.25); }
.illu-pay .card-num { position: absolute; bottom: 8px; left: 6px; font-size: 7px; color: #fff; font-weight: 700; letter-spacing: 1px; }
.illu-pay .coin-stack { position: absolute; right: 14px; bottom: 28px; width: 24px; height: 24px; background: #FFD600; border-radius: 50%; border: 2px solid #E5A800; box-shadow: 0 0 0 3px #FFD600, 0 4px 12px rgba(229,168,0,0.4); animation: coinSpin 2.4s ease-in-out infinite; }
.illu-pay .coin-stack::after { content: '$'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #8B6914; }
.illu-pay .check-pay { position: absolute; top: 14px; right: 8px; width: 22px; height: 22px; background: #22C55E; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 900; box-shadow: 0 4px 10px rgba(34,197,94,0.4); animation: floatY 2.2s ease-in-out infinite; }
.illu-pay .dot-p { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--cr); }
.illu-pay .dot-p.p1 { top: 18px; left: 18px; animation: twinkle 1.5s ease-in-out infinite; }
.illu-pay .dot-p.p2 { bottom: 20px; left: 42px; background: #4B7BEC; animation: twinkle 1.5s ease-in-out infinite; animation-delay: 0.4s; }

/* Animations */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes bellRing { 0%, 100% { transform: rotate(0); } 15% { transform: rotate(-12deg); } 30% { transform: rotate(10deg); } 45% { transform: rotate(-6deg); } 60% { transform: rotate(4deg); } }
@keyframes twinkle { 0%, 100% { opacity: 0.4; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes barGrow { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.18); } }
@keyframes arrowL { 0%, 100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(-3px); opacity: 0.65; } }
@keyframes arrowR { 0%, 100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(3px); opacity: 0.65; } }
@keyframes colorShift { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
@keyframes brushSwipe { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
@keyframes cardWobble { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-3px); } }
@keyframes coinSpin { 0%, 100% { transform: rotateY(0deg); } 50% { transform: rotateY(180deg); } }

/* ── SEC: TESTIMONIALS ── */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard2 { background: var(--crt); border-radius: 22px; padding: 30px; position: relative; overflow: hidden; }
.tcard2::before { content: '\201C'; position: absolute; top: -12px; right: 20px; font-size: 108px; font-weight: 900; color: rgba(232,23,93,0.10); line-height: 1; font-family: 'Nunito', sans-serif; }
.tcard2-stars { font-size: 16px; margin-bottom: 12px; color: #FFB400; }
.tcard2-q { font-size: 14px; font-weight: 700; color: var(--t1); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 2; }
.tcard2-au { display: flex; align-items: center; gap: 11px; }
.tcard2-av { width: 38px; height: 38px; border-radius: 50%; background: var(--cr); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.tcard2-n { font-size: 13px; font-weight: 800; color: var(--t1); }
.tcard2-r { font-size: 11px; font-weight: 600; color: var(--tm); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero h1 { font-size: 40px; }
  .hero-in { grid-template-columns: 1fr; gap: 48px; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .tgrid, .tgrid2 { grid-template-columns: 1fr 1fr; }
  .tgrid2 { max-width: none; }
  .tg { grid-template-columns: 1fr; }
  .ipanel.on { grid-template-columns: 1fr; gap: 36px; }
  .hero, .sec { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .sec-head h2 { font-size: 30px; }
  .fgrid, .tgrid, .tgrid2 { grid-template-columns: 1fr; }
}

/* ================================================
   LEGACY .bn-* STYLES BELOW
   Used by: policy generator, pricing, features pages.
   Not used by the new homepage design.
   ================================================ */

/* --- 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; }

/* 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
   ================================================ */
.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; }
.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; }
.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 (legacy .bn-hero used in old design — kept for compat)
   ================================================ */
.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; }

/* ================================================
   FEATURES SECTION (legacy)
   ================================================ */
.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 (legacy)
   ================================================ */
.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; }
.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 (legacy)
   ================================================ */
.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 (legacy + pricing page)
   ================================================ */
.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 (legacy)
   ================================================ */
.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 (legacy)
   ================================================ */
.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; }

/* ================================================
   POLICY GENERATOR PAGE v3 (scoped to .bn-policy-page)
   ================================================ */
.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: 'Nunito', 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: 'Nunito', sans-serif; letter-spacing: -0.01em; }
.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; } }
.bn-policy-page .bn-step-dot.done, .bn-policy-page .bn-step-dot.current { box-shadow: 0 2px 8px hsla(340,92%,55%,.35); }
.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%); }
.bn-policy-page .bn-pg-success-icon { background: hsla(146,64%,43%,.1); color: hsl(146,64%,43%); }
.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%); }
.bn-policy-page .bn-checklist-icon { color: hsl(146,64%,43%); }
.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); }
.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); }
.bn-policy-page .bn-howto-card:hover .bn-howto-icon { background: hsl(340,92%,55%); }
