/* KitchenBot New Public Pages — kb-public.css */
/* Used by _LayoutKBNew and all new public pages */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --kbn-navy:    #0a2540;
  --kbn-navy2:   #1a3d6b;
  --kbn-sky:     #2b7fe0;
  --kbn-teal:    #0e9e75;
  --kbn-mint:    #e6f7f2;
  --kbn-gold:    #ef9f27;
  --kbn-light:   #f0f6ff;
  --kbn-gray50:  #f8fafc;
  --kbn-gray100: #f0f4f8;
  --kbn-gray300: #cbd5e1;
  --kbn-gray500: #64748b;
  --kbn-gray700: #334155;
  --kbn-white:   #ffffff;
  --kbn-text:    #0f172a;
  --kbn-border:  #e2e8f0;
  --kbn-radius-sm: 8px;
  --kbn-radius-md: 12px;
  --kbn-radius-lg: 18px;
  --kbn-radius-xl: 24px;
  --kbn-shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --kbn-shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --kbn-shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --kbn-font-head: 'Lora', Georgia, serif;
  --kbn-font-body: 'DM Sans', sans-serif;
}

/* ── RESET (scoped) ── */
html { margin: 0; padding: 0; }
.kbn-page *, .kbn-page *::before, .kbn-page *::after {
  box-sizing: border-box;
}
.kbn-page h1, .kbn-page h2, .kbn-page h3, .kbn-page h4 {
  margin-top: 0;
}
.kbn-page blockquote { margin: 0; padding: 0; }
.kbn-page p { margin: 0; }
.kbn-page {
  font-family: var(--kbn-font-body);
  color: var(--kbn-text);
  background: var(--kbn-white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.kbn-page img { max-width: 100%; }
.kbn-page a { text-decoration: none; }

/* ── NAV ── */
.kbn-nav {
  background: var(--kbn-white);
  border-bottom: 1px solid var(--kbn-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.kbn-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kbn-nav-logo {
  font-family: var(--kbn-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--kbn-navy);
  text-decoration: none;
  white-space: nowrap;
}
.kbn-nav-logo span { color: var(--kbn-teal); }

.kbn-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbn-nav-links > li { position: relative; }
.kbn-nav-links > li > a,
.kbn-nav-drop-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--kbn-gray700);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--kbn-radius-sm);
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--kbn-font-body);
  white-space: nowrap;
}
.kbn-nav-links > li > a:hover,
.kbn-nav-drop-btn:hover {
  background: var(--kbn-gray50);
  color: var(--kbn-navy);
}
.kbn-nav-links > li > a.kbn-active,
.kbn-nav-drop-btn.kbn-active {
  color: var(--kbn-teal);
  font-weight: 600;
}
.kbn-nav-drop-arrow {
  font-size: 10px;
  opacity: .5;
  transition: transform .2s;
}
.kbn-nav-drop-btn:hover .kbn-nav-drop-arrow,
.kbn-nav-links > li.kbn-open .kbn-nav-drop-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.kbn-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--kbn-white);
  border: 1px solid var(--kbn-border);
  border-radius: var(--kbn-radius-md);
  box-shadow: var(--kbn-shadow-lg);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}
.kbn-nav-links > li.kbn-open .kbn-nav-dropdown { display: block; }
.kbn-nav-dropdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kbn-gray500);
  padding: 10px 16px 4px;
  display: block;
}
.kbn-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--kbn-gray700);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.kbn-nav-dropdown a:hover { background: var(--kbn-gray50); color: var(--kbn-navy); }
.kbn-dd-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.kbn-dd-label { flex: 1; }
.kbn-dd-desc { font-size: 11px; color: var(--kbn-gray500); margin-top: 1px; display: block; }

/* Nav right / CTA */
.kbn-nav-right { display: flex; align-items: center; gap: 10px; }
.kbn-nav-cta {
  background: var(--kbn-teal);
  color: var(--kbn-white);
  font-family: var(--kbn-font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--kbn-radius-sm);
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.kbn-nav-cta:hover { background: #0b8060; color: var(--kbn-white); }

/* Hamburger */
.kbn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--kbn-border);
  border-radius: var(--kbn-radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.kbn-hamburger:hover { border-color: var(--kbn-teal); }
.kbn-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--kbn-gray700);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.kbn-hamburger.kbn-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kbn-hamburger.kbn-open span:nth-child(2) { opacity: 0; }
.kbn-hamburger.kbn-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.kbn-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--kbn-border);
}
.kbn-mobile-menu.kbn-open { display: flex; }
.kbn-mob-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kbn-gray500);
  padding: 8px 16px 4px;
}
.kbn-mobile-menu a {
  font-family: var(--kbn-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--kbn-gray700);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--kbn-radius-sm);
  transition: background .15s, color .15s;
  display: block;
}
.kbn-mobile-menu a:hover { background: var(--kbn-gray50); color: var(--kbn-navy); }
.kbn-mob-divider { height: 1px; background: var(--kbn-border); margin: 8px 0; }
.kbn-mobile-cta {
  background: var(--kbn-teal) !important;
  color: var(--kbn-white) !important;
  border-radius: var(--kbn-radius-md) !important;
  text-align: center !important;
  margin-top: 8px;
  font-size: 15px !important;
  padding: 16px !important;
  display: block !important;
}

/* ── FOOTER ── */
.kbn-footer {
  background: var(--kbn-navy);
  padding: 40px 0 28px;
}
.kbn-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.kbn-footer-logo {
  font-family: var(--kbn-font-head);
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.kbn-footer-logo span { color: #4ade80; }
.kbn-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.kbn-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.kbn-footer-links a:hover { color: rgba(255,255,255,.85); }
.kbn-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); width: 100%; }

/* ── SHARED SECTION UTILITIES ── */
.kbn-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.kbn-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--kbn-teal);
  margin-bottom: 10px;
  display: block;
}
.kbn-section-title {
  font-family: var(--kbn-font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--kbn-navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.kbn-section-desc {
  font-size: 16px;
  color: var(--kbn-gray500);
  line-height: 1.7;
}

/* ── SHARED BUTTONS ── */
.kbn-btn-teal {
  background: var(--kbn-teal);
  color: var(--kbn-white);
  font-family: var(--kbn-font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--kbn-radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(14,158,117,.35);
}
.kbn-btn-teal:hover { background: #0b8060; transform: translateY(-1px); color: var(--kbn-white); }
.kbn-btn-white {
  background: var(--kbn-white);
  color: var(--kbn-navy);
  font-family: var(--kbn-font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--kbn-radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.kbn-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); color: var(--kbn-navy); }
.kbn-btn-outline-w {
  background: transparent;
  color: rgba(255,255,255,.9);
  font-family: var(--kbn-font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--kbn-radius-md);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
}
.kbn-btn-outline-w:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }

/* ── TRUST BAR ── */
.kbn-trust-bar {
  background: var(--kbn-gray50);
  border-bottom: 1px solid var(--kbn-border);
  padding: 16px 0;
}
.kbn-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.kbn-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--kbn-gray700);
}
.kbn-trust-icon { font-size: 16px; }

/* ── HERO (Home) ── */
.kbn-hero {
  background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.kbn-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%);
}
.kbn-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,158,117,.12) 0%, transparent 70%);
}
.kbn-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kbn-clover-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  letter-spacing: .03em;
}
.kbn-clover-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }
.kbn-hero h1 {
  font-family: var(--kbn-font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--kbn-white);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.kbn-hero h1 em { color: #7dd3fc; font-style: normal; }
.kbn-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.kbn-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.kbn-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: .5px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.kbn-hero-pill svg { width: 14px; height: 14px; color: #4ade80; flex-shrink: 0; }
.kbn-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero price card */
.kbn-price-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--kbn-radius-xl);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.kbn-price-tag {
  display: inline-block;
  background: rgba(74,222,128,.18);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.kbn-price-big {
  font-family: var(--kbn-font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--kbn-white);
  line-height: 1;
}
.kbn-price-period { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; margin-bottom: 20px; }
.kbn-price-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding: 0; }
.kbn-price-includes li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.kbn-pi-check {
  width: 18px; height: 18px;
  background: var(--kbn-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 9px; color: white; font-weight: 800;
}
.kbn-price-card .kbn-btn-teal { width: 100%; }
.kbn-price-note { font-size: 12px; color: rgba(255,255,255,.5); text-align: center; }

/* ── FEATURES SECTION ── */
.kbn-features-section { background: var(--kbn-white); padding: 64px 0; }
.kbn-features-header { text-align: center; margin-bottom: 40px; }
.kbn-features-header .kbn-section-desc { margin: 0 auto; }
.kbn-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.kbn-feat-card {
  background: var(--kbn-white);
  border: 1px solid var(--kbn-border);
  border-radius: var(--kbn-radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.kbn-feat-card:hover { border-color: var(--kbn-sky); box-shadow: var(--kbn-shadow-md); transform: translateY(-3px); }
.kbn-feat-icon-wrap {
  width: 48px; height: 48px;
  background: var(--kbn-light);
  border-radius: var(--kbn-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.kbn-feat-card h3 { font-family: var(--kbn-font-head); font-size: 17px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 8px; }
.kbn-feat-card p { font-size: 14px; color: var(--kbn-gray500); line-height: 1.65; }
.kbn-feat-tag {
  display: inline-block;
  background: var(--kbn-mint);
  color: var(--kbn-teal);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 10px;
}

/* ── WHY SECTION ── */
.kbn-why-section { background: var(--kbn-navy); padding: 64px 0; }
.kbn-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.kbn-why-copy .kbn-section-title { color: var(--kbn-white); }
.kbn-why-copy .kbn-section-eyebrow { color: #4ade80; }
.kbn-why-body { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 28px; }
.kbn-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kbn-why-stat {
  background: rgba(255,255,255,.07);
  border: .5px solid rgba(255,255,255,.1);
  border-radius: var(--kbn-radius-md);
  padding: 20px;
}
.kbn-why-stat-num { font-family: var(--kbn-font-head); font-size: 36px; font-weight: 700; color: #7dd3fc; line-height: 1; margin-bottom: 4px; }
.kbn-why-stat-label { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.4; }
.kbn-why-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--kbn-radius-xl);
  padding: 32px;
}
.kbn-why-vis-head {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding-bottom: 12px;
  border-bottom: .5px solid rgba(255,255,255,.1);
  margin-bottom: 4px;
  display: flex; justify-content: space-between;
}
.kbn-why-vis-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: .5px solid rgba(255,255,255,.08);
}
.kbn-why-vis-row:last-child { border-bottom: none; }
.kbn-why-vis-label { font-size: 13px; color: rgba(255,255,255,.7); }
.kbn-why-vis-val { font-size: 13px; font-weight: 700; }
.kbn-why-vis-val.kbn-green { color: #4ade80; }
.kbn-why-vis-val.kbn-red   { color: #f87171; }

/* ── HOW IT WORKS ── */
.kbn-how-section { background: var(--kbn-gray50); padding: 64px 0; }
.kbn-how-header { text-align: center; margin-bottom: 40px; }
.kbn-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.kbn-step-card {
  background: var(--kbn-white);
  border: 1px solid var(--kbn-border);
  padding: 32px 24px;
  position: relative;
}
.kbn-step-card:not(:last-child) { border-right: none; }
.kbn-step-card:first-child { border-radius: var(--kbn-radius-lg) 0 0 var(--kbn-radius-lg); }
.kbn-step-card:last-child  { border-radius: 0 var(--kbn-radius-lg) var(--kbn-radius-lg) 0; }
.kbn-step-num {
  font-family: var(--kbn-font-head);
  font-size: 48px; font-weight: 700;
  color: var(--kbn-border);
  line-height: 1; margin-bottom: 16px;
}
.kbn-step-card h3 { font-family: var(--kbn-font-head); font-size: 17px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 8px; }
.kbn-step-card p  { font-size: 14px; color: var(--kbn-gray500); line-height: 1.65; }
.kbn-step-badge {
  display: inline-block;
  background: var(--kbn-light);
  color: var(--kbn-sky);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; margin-top: 12px;
}

/* ── COMPARE TABLE ── */
.kbn-compare-section { background: var(--kbn-white); padding: 80px 0; }
.kbn-compare-header { text-align: center; margin-bottom: 48px; }
.kbn-compare-header .kbn-section-desc { margin: 0 auto; }
.kbn-compare-table { width: 100%; border-collapse: collapse; font-family: var(--kbn-font-body); font-size: 14px; }
.kbn-compare-table th {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--kbn-gray500); padding: 12px 16px; text-align: left;
  border-bottom: 2px solid var(--kbn-border);
}
.kbn-compare-table th.kbn-kb-col { color: var(--kbn-teal); }
.kbn-compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--kbn-border); vertical-align: middle; color: var(--kbn-gray700); }
.kbn-compare-table tr:last-child td { border-bottom: none; }
.kbn-compare-table tr:hover td { background: var(--kbn-gray50); }
.kbn-highlight-row td { background: var(--kbn-mint) !important; font-weight: 700; color: var(--kbn-navy); }
.kbn-check-yes { color: var(--kbn-teal); font-weight: 700; }
.kbn-check-no  { color: var(--kbn-gray300); }
.kbn-compare-note { text-align: center; font-size: 13px; color: var(--kbn-gray500); margin-top: 16px; }

/* ── TESTIMONIALS ── */
.kbn-social-section { background: var(--kbn-gray50); padding: 64px 0; }
.kbn-social-header { text-align: center; margin-bottom: 36px; }
.kbn-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.kbn-tcard {
  background: var(--kbn-white);
  border: 1px solid var(--kbn-border);
  border-radius: var(--kbn-radius-lg);
  padding: 24px;
}
.kbn-tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.kbn-star { color: var(--kbn-gold); font-size: 15px; }
.kbn-tcard blockquote { font-family: var(--kbn-font-head); font-size: 15px; font-style: italic; color: var(--kbn-navy); line-height: 1.7; margin-bottom: 16px; }
.kbn-tcard cite { font-size: 12px; color: var(--kbn-gray500); font-style: normal; display: flex; align-items: center; gap: 6px; }
.kbn-tcard-avatar {
  width: 28px; height: 28px;
  background: var(--kbn-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ── FAQ ── */
.kbn-faq-section { background: var(--kbn-gray50); padding: 80px 0; }
.kbn-faq-header { text-align: center; margin-bottom: 48px; }
.kbn-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.kbn-faq-card {
  background: var(--kbn-white);
  border: 1px solid var(--kbn-border);
  border-radius: var(--kbn-radius-md);
  padding: 22px 24px;
}
.kbn-faq-q { font-family: var(--kbn-font-head); font-size: 15px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 8px; line-height: 1.4; }
.kbn-faq-a { font-size: 14px; color: var(--kbn-gray500); line-height: 1.65; }

/* ── SEO BODY COPY ── */
.kbn-seo-section {
  background: var(--kbn-gray50);
  border-top: 1px solid var(--kbn-border);
  border-bottom: 1px solid var(--kbn-border);
  padding: 64px 0;
}
.kbn-seo-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.kbn-seo-inner h2 { font-family: var(--kbn-font-head); font-size: 26px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 14px; }
.kbn-seo-inner h3 { font-family: var(--kbn-font-head); font-size: 18px; font-weight: 600; color: var(--kbn-navy); margin: 28px 0 10px; }
.kbn-seo-inner p { font-size: 15px; color: var(--kbn-gray700); line-height: 1.8; margin-bottom: 14px; }

/* ── FOOTER CTA ── */
.kbn-footer-cta {
  background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kbn-footer-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%);
}
.kbn-footer-cta h2 {
  font-family: var(--kbn-font-head);
  font-size: 36px; font-weight: 700;
  color: var(--kbn-white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.kbn-footer-cta p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; position: relative; z-index: 1; }
.kbn-footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PRICING PAGE SPECIFIC ── */
.kbn-page-hero {
  background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.kbn-page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%);
}
.kbn-page-hero::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,158,117,.12) 0%, transparent 70%);
}
.kbn-page-hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.kbn-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.kbn-hero-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }
.kbn-page-hero h1 {
  font-family: var(--kbn-font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; color: var(--kbn-white);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -.5px;
}
.kbn-page-hero h1 em { color: #7dd3fc; font-style: normal; }
.kbn-page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,.72);
  line-height: 1.65; max-width: 520px;
  margin: 14px auto 0;
}

.kbn-pricing-section { background: var(--kbn-gray50); padding: 80px 0; }
.kbn-pricing-inner { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.kbn-pricing-card {
  background: var(--kbn-white);
  border: 2px solid var(--kbn-teal);
  border-radius: var(--kbn-radius-xl);
  padding: 40px 36px;
  box-shadow: var(--kbn-shadow-lg);
  position: relative;
}
.kbn-pricing-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--kbn-teal); color: var(--kbn-white);
  font-family: var(--kbn-font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 999px; white-space: nowrap;
}
.kbn-pricing-name {
  font-family: var(--kbn-font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--kbn-gray500); margin-bottom: 8px;
}
.kbn-pricing-price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 4px; }
.kbn-pricing-price-num {
  font-family: var(--kbn-font-head); font-size: 72px; font-weight: 700;
  color: var(--kbn-navy); line-height: 1; letter-spacing: -3px;
}
.kbn-pricing-price-per { font-size: 16px; color: var(--kbn-gray500); padding-bottom: 12px; }
.kbn-pricing-tagline { font-size: 15px; color: var(--kbn-gray500); margin-bottom: 28px; }
.kbn-pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px; padding: 0 0 28px;
  border-bottom: 1px solid var(--kbn-border);
}
.kbn-pricing-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--kbn-gray700); line-height: 1.5; }
.kbn-feat-check {
  width: 22px; height: 22px; background: var(--kbn-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.kbn-pricing-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.kbn-pricing-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--kbn-gray500); }
.kbn-perk-dot { width: 6px; height: 6px; background: var(--kbn-gray300); border-radius: 50%; flex-shrink: 0; }
.kbn-pricing-card .kbn-btn-teal { display: flex; font-size: 16px; padding: 16px 28px; }
.kbn-pricing-note { font-size: 12px; color: var(--kbn-gray500); text-align: center; margin-top: 12px; }

.kbn-pricing-copy-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--kbn-teal); margin-bottom: 12px; display: block;
}
.kbn-pricing-copy h2 {
  font-family: var(--kbn-font-head); font-size: 32px; font-weight: 700;
  color: var(--kbn-navy); line-height: 1.2; margin-bottom: 16px; letter-spacing: -.3px;
}
.kbn-pricing-copy p { font-size: 16px; color: var(--kbn-gray500); line-height: 1.75; margin-bottom: 24px; }
.kbn-feature-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.kbn-feature-detail-icon {
  width: 42px; height: 42px; background: var(--kbn-light);
  border-radius: var(--kbn-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.kbn-feature-detail h4 { font-family: var(--kbn-font-head); font-size: 15px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 3px; }
.kbn-feature-detail p  { font-size: 13px; color: var(--kbn-gray500); line-height: 1.55; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .kbn-hero-inner,
  .kbn-why-inner,
  .kbn-pricing-inner { grid-template-columns: 1fr; gap: 40px; }
  .kbn-price-card { max-width: 440px; }
  .kbn-features-grid { grid-template-columns: 1fr; }
  .kbn-testimonials-grid { grid-template-columns: 1fr; }
  .kbn-faq-grid { grid-template-columns: 1fr; }
  .kbn-steps-grid { grid-template-columns: 1fr; }
  .kbn-step-card:not(:last-child) { border-right: 1px solid var(--kbn-border); border-bottom: none; }
  .kbn-step-card:first-child { border-radius: var(--kbn-radius-lg) var(--kbn-radius-lg) 0 0; }
  .kbn-step-card:last-child  { border-radius: 0 0 var(--kbn-radius-lg) var(--kbn-radius-lg); }
  .kbn-why-stats { grid-template-columns: 1fr 1fr; }
  .kbn-nav-links { display: none !important; }
  .kbn-hamburger { display: flex; }
}
@media (max-width: 540px) {
  .kbn-hero h1 { font-size: 30px; }
  .kbn-section-title { font-size: 26px; }
  .kbn-hero-btns { flex-direction: column; }
  .kbn-why-stats { grid-template-columns: 1fr; }
  .kbn-footer-inner { flex-direction: column; text-align: center; }
  .kbn-pricing-price-num { font-size: 56px; }
  .kbn-page-hero h1 { font-size: 28px; }
  .kbn-footer-cta h2 { font-size: 28px; }
  .kbn-footer-cta-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════
   LEGAL PAGES (Privacy / TOS)
══════════════════════════════════════ */

/* Hero */
.kbn-legal-hero { background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%); padding: 64px 0 56px; position: relative; overflow: hidden; text-align: center; }
.kbn-legal-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%); }
.kbn-legal-hero::after  { content: ''; position: absolute; bottom: -100px; left: -60px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(14,158,117,.12) 0%, transparent 70%); }
.kbn-legal-hero-inner { position: relative; z-index: 1; }
.kbn-legal-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: .5px solid rgba(255,255,255,.2); border-radius: 999px; padding: 5px 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.kbn-legal-hero h1 { font-family: var(--kbn-font-head); font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; color: var(--kbn-white); line-height: 1.2; margin-bottom: 14px; letter-spacing: -.5px; }
.kbn-legal-hero-sub { font-size: 16px; color: rgba(255,255,255,.68); max-width: 520px; margin: 0 auto; }
.kbn-legal-meta { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.kbn-legal-meta-item { font-size: 13px; color: rgba(255,255,255,.6); }
.kbn-legal-meta-item strong { color: rgba(255,255,255,.9); font-weight: 600; }
.kbn-legal-meta-sep { width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%; }

/* At-a-glance bar (Privacy only) */
.kbn-glance-bar { background: var(--kbn-mint); border-bottom: 1px solid rgba(14,158,117,.2); }
.kbn-glance-inner { max-width: 1100px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.kbn-glance-item { text-align: center; }
.kbn-glance-icon { font-size: 24px; margin-bottom: 6px; }
.kbn-glance-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--kbn-teal); margin-bottom: 4px; }
.kbn-glance-value { font-size: 13px; color: var(--kbn-gray700); line-height: 1.4; }

/* Two-column layout */
.kbn-legal-body { max-width: 1100px; margin: 0 auto; padding: 64px 24px 80px; display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }

/* Sidebar TOC */
.kbn-toc { position: sticky; top: 84px; }
.kbn-toc-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--kbn-gray500); margin-bottom: 16px; }
.kbn-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; }
.kbn-toc-list a { font-size: 13px; font-weight: 500; color: var(--kbn-gray500); text-decoration: none; padding: 7px 12px; border-radius: var(--kbn-radius-sm); display: block; transition: background .15s, color .15s; border-left: 2px solid transparent; }
.kbn-toc-list a:hover { background: var(--kbn-gray50); color: var(--kbn-navy); border-left-color: var(--kbn-teal); }
.kbn-toc-list a.kbn-toc-active { background: var(--kbn-mint); color: var(--kbn-teal); border-left-color: var(--kbn-teal); font-weight: 600; }

/* Document content */
.kbn-doc-content { min-width: 0; }
.kbn-doc-alert { background: var(--kbn-mint); border: 1px solid rgba(14,158,117,.25); border-radius: var(--kbn-radius-md); padding: 18px 22px; margin-bottom: 40px; font-size: 14px; color: var(--kbn-gray700); line-height: 1.65; }
.kbn-doc-alert strong { color: var(--kbn-teal); }

.kbn-doc-section { margin-bottom: 56px; scroll-margin-top: 84px; }
.kbn-doc-section-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--kbn-teal); margin-bottom: 8px; }
.kbn-doc-section h2 { font-family: var(--kbn-font-head); font-size: 22px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1.5px solid var(--kbn-border); }
.kbn-doc-section h3 { font-family: var(--kbn-font-head); font-size: 16px; font-weight: 600; color: var(--kbn-gray700); margin-top: 28px; margin-bottom: 10px; }
.kbn-doc-section p { font-size: 15px; color: var(--kbn-gray700); line-height: 1.75; margin-bottom: 14px; }
.kbn-doc-section p:last-child { margin-bottom: 0; }
.kbn-doc-section ul, .kbn-doc-section ol { margin: 10px 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.kbn-doc-section li { font-size: 15px; color: var(--kbn-gray700); line-height: 1.65; }
.kbn-doc-section a { color: var(--kbn-sky); text-decoration: none; }
.kbn-doc-section a:hover { text-decoration: underline; }

/* Callout boxes */
.kbn-callout { background: var(--kbn-light); border-left: 3px solid var(--kbn-sky); border-radius: 0 var(--kbn-radius-sm) var(--kbn-radius-sm) 0; padding: 14px 18px; margin: 16px 0; font-size: 14px; color: var(--kbn-gray700); line-height: 1.65; }
.kbn-callout.kbn-warn { background: #fffbeb; border-left-color: var(--kbn-gold); }
.kbn-callout strong { color: var(--kbn-navy); }

/* Data table (CCPA) */
.kbn-data-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--kbn-radius-md); border: 1px solid var(--kbn-border); }
.kbn-data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.kbn-data-table thead { background: var(--kbn-gray50); }
.kbn-data-table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--kbn-gray500); border-bottom: 1px solid var(--kbn-border); white-space: nowrap; }
.kbn-data-table td { padding: 12px 16px; color: var(--kbn-gray700); border-bottom: 1px solid var(--kbn-border); vertical-align: top; line-height: 1.55; }
.kbn-data-table tr:last-child td { border-bottom: none; }
.kbn-data-table tr:nth-child(even) { background: var(--kbn-gray50); }
.kbn-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: .04em; }
.kbn-badge-yes { background: var(--kbn-mint); color: var(--kbn-teal); }
.kbn-badge-no  { background: var(--kbn-gray100); color: var(--kbn-gray500); }

/* Contact box */
.kbn-contact-box { background: var(--kbn-gray50); border: 1px solid var(--kbn-border); border-radius: var(--kbn-radius-lg); padding: 32px; text-align: center; margin-top: 48px; }
.kbn-contact-box h3 { font-family: var(--kbn-font-head); font-size: 18px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 8px; }
.kbn-contact-box p { font-size: 14px; color: var(--kbn-gray500); margin-bottom: 20px; }
.kbn-contact-links { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.kbn-contact-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--kbn-teal); text-decoration: none; background: var(--kbn-mint); padding: 10px 18px; border-radius: var(--kbn-radius-sm); transition: background .2s; }
.kbn-contact-link:hover { background: #c8ede2; color: var(--kbn-teal); }

/* Responsive */
@media (max-width: 900px) {
  .kbn-glance-inner { grid-template-columns: repeat(2,1fr); }
  .kbn-legal-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px 60px; }
  .kbn-toc { position: static; border: 1px solid var(--kbn-border); border-radius: var(--kbn-radius-md); padding: 20px; background: var(--kbn-gray50); }
}
@media (max-width: 540px) {
  .kbn-legal-hero { padding: 48px 0 44px; }
  .kbn-glance-inner { gap: 16px; }
  .kbn-legal-meta { gap: 12px; }
  .kbn-legal-meta-sep { display: none; }
}

/* ══════════════════════════════════════
   KDS PAGE STYLES
══════════════════════════════════════ */

/* KDS Hero — two-column with mockup card */
.kbn-kds-hero { background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%); padding: 80px 0 72px; position: relative; overflow: hidden; }
.kbn-kds-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%); }
.kbn-kds-hero::after  { content: ''; position: absolute; bottom: -100px; left: -60px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(14,158,117,.12) 0%, transparent 70%); }
.kbn-kds-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; position: relative; z-index: 1; }
.kbn-hero-pill-green { background: rgba(14,158,117,.2); border-color: rgba(14,158,117,.4); color: #6ee7b7; }

/* KDS Screen Mockup */
.kbn-kds-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--kbn-radius-xl); padding: 28px; backdrop-filter: blur(8px); }
.kbn-kds-screen { background: var(--kbn-navy); border-radius: var(--kbn-radius-lg); padding: 16px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,.1); }
.kbn-kds-screen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.kbn-kds-screen-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.kbn-kds-status { display: flex; gap: 6px; }
.kbn-kds-dot-g { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }
.kbn-kds-dot-y { width: 8px; height: 8px; background: #fbbf24; border-radius: 50%; }
.kbn-kds-dot-r { width: 8px; height: 8px; background: #f87171; border-radius: 50%; }
.kbn-kds-orders { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kbn-kds-ticket { border-radius: var(--kbn-radius-sm); padding: 10px; }
.kbn-kds-ticket.kbn-dine { background: rgba(43,127,224,.25); border: 1px solid rgba(43,127,224,.4); }
.kbn-kds-ticket.kbn-togo { background: rgba(147,51,234,.2);  border: 1px solid rgba(147,51,234,.4); }
.kbn-kds-ticket.kbn-paid { background: rgba(14,158,117,.2);  border: 1px solid rgba(14,158,117,.4); }
.kbn-kds-ticket.kbn-late { background: rgba(248,113,113,.2); border: 1px solid rgba(248,113,113,.4); }
.kbn-kds-ticket-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.kbn-kds-ticket-num  { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9); }
.kbn-kds-ticket-time { font-size: 10px; color: rgba(255,255,255,.5); }
.kbn-kds-ticket-type { font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; }
.kbn-kds-ticket.kbn-dine .kbn-kds-ticket-type { color: #93c5fd; }
.kbn-kds-ticket.kbn-togo .kbn-kds-ticket-type { color: #c4b5fd; }
.kbn-kds-ticket.kbn-paid .kbn-kds-ticket-type { color: #6ee7b7; }
.kbn-kds-ticket.kbn-late .kbn-kds-ticket-type { color: #fca5a5; }
.kbn-kds-item { font-size: 10px; color: rgba(255,255,255,.8); padding: 2px 0; border-bottom: .5px solid rgba(255,255,255,.08); }
.kbn-kds-item:last-child { border-bottom: none; }
.kbn-kds-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.kbn-kds-stat { background: rgba(255,255,255,.06); border-radius: var(--kbn-radius-sm); padding: 12px; text-align: center; }
.kbn-kds-stat-num { font-family: var(--kbn-font-head); font-size: 22px; font-weight: 700; color: #4ade80; line-height: 1; margin-bottom: 3px; }
.kbn-kds-stat-label { font-size: 10px; color: rgba(255,255,255,.5); line-height: 1.3; }

/* Why KDS cards */
.kbn-kds-why-section { background: var(--kbn-white); padding: 80px 0; }
.kbn-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.kbn-why-card { background: var(--kbn-gray50); border: 1px solid var(--kbn-border); border-radius: var(--kbn-radius-lg); padding: 28px 22px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.kbn-why-card:hover { border-color: var(--kbn-sky); box-shadow: var(--kbn-shadow-md); transform: translateY(-3px); }
.kbn-why-icon { width: 48px; height: 48px; background: var(--kbn-light); border-radius: var(--kbn-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.kbn-why-card h3 { font-family: var(--kbn-font-head); font-size: 16px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 8px; }
.kbn-why-card p  { font-size: 14px; color: var(--kbn-gray500); line-height: 1.65; }

/* BYOD section */
.kbn-byod-section { background: var(--kbn-navy); padding: 80px 0; }
.kbn-byod-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.kbn-byod-copy .kbn-section-title { color: var(--kbn-white); }
.kbn-byod-copy .kbn-section-eyebrow { color: #4ade80; }
.kbn-byod-body { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; }
.kbn-byod-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; }
.kbn-byod-checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
.kbn-byod-check { width: 22px; height: 22px; background: var(--kbn-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; font-weight: 800; flex-shrink: 0; }
.kbn-byod-visual-label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.kbn-byod-visual { display: flex; flex-direction: column; gap: 14px; }
.kbn-byod-tablet { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--kbn-radius-lg); padding: 20px 24px; display: flex; align-items: center; gap: 16px; transition: border-color .2s; text-decoration: none; }
.kbn-byod-tablet:hover { border-color: rgba(14,158,117,.5); }
.kbn-byod-tablet-icon { font-size: 28px; flex-shrink: 0; }
.kbn-byod-tablet-name { font-family: var(--kbn-font-head); font-size: 15px; font-weight: 700; color: var(--kbn-white); margin-bottom: 3px; }
.kbn-byod-tablet-spec { font-size: 13px; color: rgba(255,255,255,.55); }
.kbn-byod-tablet-price { font-family: var(--kbn-font-head); font-size: 18px; font-weight: 700; color: #4ade80; margin-left: auto; flex-shrink: 0; }
.kbn-byod-note { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; margin-top: 4px; }

/* Online ordering integration */
.kbn-integration-section { background: var(--kbn-white); padding: 80px 0; }
.kbn-integration-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.kbn-int-visual { background: var(--kbn-navy); border-radius: var(--kbn-radius-xl); padding: 36px 32px; position: relative; overflow: hidden; }
.kbn-int-visual::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(43,127,224,.2) 0%, transparent 70%); }
.kbn-int-flow { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.kbn-int-step { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--kbn-radius-md); padding: 14px 16px; display: flex; align-items: center; gap: 14px; }
.kbn-int-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--kbn-teal); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kbn-int-step-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.45; }
.kbn-int-arrow { text-align: center; font-size: 18px; color: rgba(255,255,255,.2); }
.kbn-int-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.kbn-int-feature-icon { width: 36px; height: 36px; background: var(--kbn-mint); border-radius: var(--kbn-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.kbn-int-feature h4 { font-family: var(--kbn-font-head); font-size: 15px; font-weight: 600; color: var(--kbn-navy); margin-bottom: 2px; }
.kbn-int-feature p  { font-size: 13px; color: var(--kbn-gray500); line-height: 1.55; }
.kbn-integration-copy .kbn-section-desc { margin-bottom: 24px; }

/* Settings grid */
.kbn-settings-section { background: var(--kbn-gray50); padding: 80px 0; }
.kbn-settings-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.kbn-settings-card { background: var(--kbn-white); border: 1px solid var(--kbn-border); border-radius: var(--kbn-radius-lg); padding: 28px; }
.kbn-settings-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--kbn-border); }
.kbn-settings-card-icon { width: 40px; height: 40px; border-radius: var(--kbn-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.kbn-settings-card-icon.kbn-navy-bg { background: var(--kbn-navy); }
.kbn-settings-card-icon.kbn-teal-bg { background: var(--kbn-mint); }
.kbn-settings-card-icon.kbn-sky-bg  { background: var(--kbn-light); }
.kbn-settings-card-icon.kbn-gold-bg { background: #fef3c7; }
.kbn-settings-card h3 { font-family: var(--kbn-font-head); font-size: 17px; font-weight: 700; color: var(--kbn-navy); }
.kbn-settings-card p  { font-size: 13px; color: var(--kbn-gray500); margin-top: 2px; }
.kbn-settings-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.kbn-settings-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--kbn-gray700); line-height: 1.5; }
.kbn-settings-bullet { width: 6px; height: 6px; background: var(--kbn-teal); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* KDS Trial CTA */
.kbn-trial-section { background: linear-gradient(135deg, var(--kbn-navy) 0%, var(--kbn-navy2) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.kbn-trial-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(43,127,224,.15) 0%, transparent 70%); }
.kbn-trial-eyebrow { display: inline-block; background: rgba(14,158,117,.2); color: #6ee7b7; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; position: relative; z-index: 1; }
.kbn-trial-section h2 { font-family: var(--kbn-font-head); font-size: 38px; font-weight: 700; color: var(--kbn-white); margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: -.3px; }
.kbn-trial-section p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; position: relative; z-index: 1; }
.kbn-trial-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   KDS PRICING PAGE STYLES
══════════════════════════════════════ */

/* Pricing card — wide centered layout */
.kbn-kdsp-section { background: var(--kbn-gray50); padding: 80px 0; }
.kbn-kdsp-center { max-width: 760px; margin: 0 auto; }
.kbn-kdsp-card { background: var(--kbn-white); border: 2px solid var(--kbn-teal); border-radius: var(--kbn-radius-xl); padding: 48px 44px; box-shadow: var(--kbn-shadow-lg); position: relative; }
.kbn-kdsp-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--kbn-teal); color: var(--kbn-white); font-family: var(--kbn-font-body); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 20px; border-radius: 999px; white-space: nowrap; }
.kbn-kdsp-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--kbn-border); }
.kbn-kdsp-name { font-family: var(--kbn-font-head); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--kbn-gray500); margin-bottom: 8px; }
.kbn-kdsp-free { font-family: var(--kbn-font-head); font-size: 64px; font-weight: 700; color: var(--kbn-navy); line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.kbn-kdsp-free-sub { font-size: 15px; color: var(--kbn-gray500); margin-bottom: 6px; }
.kbn-trial-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--kbn-mint); color: var(--kbn-teal); font-size: 13px; font-weight: 700; padding: 5px 14px; border-radius: 999px; margin-top: 4px; }
.kbn-kdsp-right h3 { font-family: var(--kbn-font-head); font-size: 20px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 10px; }
.kbn-kdsp-right p  { font-size: 15px; color: var(--kbn-gray500); line-height: 1.7; }
.kbn-kdsp-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; padding: 0; }
.kbn-kdsp-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--kbn-gray700); line-height: 1.5; }
.kbn-kdsp-feat-check { width: 20px; height: 20px; background: var(--kbn-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: white; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.kbn-kdsp-perks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.kbn-kdsp-perk { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--kbn-gray500); background: var(--kbn-gray50); border: 1px solid var(--kbn-border); border-radius: 999px; padding: 5px 14px; }
.kbn-kdsp-perk-dot { width: 6px; height: 6px; background: var(--kbn-teal); border-radius: 50%; flex-shrink: 0; }
.kbn-kdsp-btns { display: flex; gap: 12px; }
.kbn-kdsp-note { font-size: 12px; color: var(--kbn-gray500); text-align: center; margin-top: 12px; }
.kbn-btn-outline { background: transparent; color: var(--kbn-navy); font-family: var(--kbn-font-body); font-size: 16px; font-weight: 600; padding: 15px 28px; border-radius: var(--kbn-radius-md); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1.5px solid var(--kbn-border); transition: border-color .2s, background .2s; }
.kbn-btn-outline:hover { border-color: var(--kbn-navy); background: var(--kbn-gray50); color: var(--kbn-navy); }

/* Tablet recommendation cards */
.kbn-tablets-section { background: var(--kbn-white); padding: 80px 0; }
.kbn-tablets-header { text-align: center; max-width: 580px; margin: 0 auto 48px; }
.kbn-tablets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.kbn-tablet-card { background: var(--kbn-gray50); border: 1px solid var(--kbn-border); border-radius: var(--kbn-radius-lg); padding: 32px 24px; text-align: center; transition: border-color .2s, box-shadow .2s, transform .2s; }
.kbn-tablet-card:hover { border-color: var(--kbn-teal); box-shadow: var(--kbn-shadow-md); transform: translateY(-3px); }
.kbn-tablet-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.kbn-tablet-card h3 { font-family: var(--kbn-font-head); font-size: 18px; font-weight: 700; color: var(--kbn-navy); margin-bottom: 6px; }
.kbn-tablet-card p  { font-size: 13px; color: var(--kbn-gray500); line-height: 1.55; margin-bottom: 16px; }
.kbn-tablet-price  { font-family: var(--kbn-font-head); font-size: 32px; font-weight: 700; color: var(--kbn-teal); margin-bottom: 4px; }
.kbn-tablet-source { font-size: 12px; color: var(--kbn-gray500); margin-bottom: 16px; }
.kbn-btn-tablet { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--kbn-navy); color: var(--kbn-white); font-family: var(--kbn-font-body); font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: var(--kbn-radius-sm); text-decoration: none; transition: background .2s; width: 100%; }
.kbn-btn-tablet:hover { background: var(--kbn-navy2); color: var(--kbn-white); }
.kbn-tablets-note { text-align: center; font-size: 13px; color: var(--kbn-gray500); margin-top: 20px; }

/* Section header center utility */
.kbn-section-header-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kbn-section-header-center .kbn-section-desc { margin: 0 auto; }

/* KDS-specific responsive overrides */
@media (max-width: 900px) {
  .kbn-kds-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .kbn-kds-card { display: none; }
  .kbn-why-grid { grid-template-columns: 1fr 1fr; }
  .kbn-byod-inner { grid-template-columns: 1fr; gap: 40px; }
  .kbn-integration-inner { grid-template-columns: 1fr; gap: 40px; }
  .kbn-settings-grid { grid-template-columns: 1fr; }
  .kbn-kdsp-top { grid-template-columns: 1fr; gap: 24px; }
  .kbn-kdsp-features { grid-template-columns: 1fr; }
  .kbn-tablets-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 540px) {
  .kbn-why-grid { grid-template-columns: 1fr; }
  .kbn-trial-section h2 { font-size: 28px; }
  .kbn-kdsp-card { padding: 32px 24px; }
  .kbn-kdsp-btns { flex-direction: column; }
  .kbn-kdsp-free { font-size: 48px; }
}
