:root {
  --ink: #10213f;
  --ink-soft: #465572;
  --brand: #1c68e8;
  --brand-dark: #104cad;
  --brand-soft: #edf4ff;
  --navy: #102a56;
  --mint: #13a684;
  --surface: #ffffff;
  --surface-soft: #f6f9fd;
  --line: #dfe7f2;
  --danger: #b42318;
  --success: #087a5b;
  --shadow-sm: 0 8px 24px rgba(18, 45, 88, 0.08);
  --shadow-lg: 0 24px 70px rgba(18, 45, 88, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.is-embedded { background: #fff; }
img, svg, video { display: block; max-width: 100%; height: auto; }
iframe { max-width: 100%; border: 0; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }
/* Pages that print full URLs as link text (the API reference, the policies)
   would otherwise push the whole document sideways on a phone. */
p a, li a, td a { overflow-wrap: anywhere; }
p { margin: 0 0 1.1rem; color: var(--ink-soft); }
ul, ol { margin: 0 0 1.25rem; }
h1, h2, h3, h4 {
  margin: 0 0 0.7em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(28, 104, 232, 0.35); outline-offset: 3px; }
::selection { color: #fff; background: var(--brand); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.main, #main, .app-content { min-width: 0; }
.section, .industry-section, .switcher-section, .seo-section, .qb-section, .inv-section, .genie-section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.site-v2 main > section:not(:first-child) { content-visibility: auto; contain-intrinsic-size: auto 700px; }
.section-group-bg-1, .seo-section.alt { background: var(--surface-soft); }
.section-title { max-width: 850px; }
.section-title.text-center, .text-center .section-title { margin-inline: auto; }
.section-heading, .sub-heading { color: var(--brand-dark); }
.lead, .seo-lead, .bnr-desc, .inv-lead, .qb-lead { max-width: 780px; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; }
.eyebrow, .section-eyebrow, .seo-eyebrow, .industry-eyebrow, .switcher-eyebrow, .inv-eyebrow, .qb-eyebrow {
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.analytics-noscript { position: absolute; visibility: hidden; }

.utility-bar { color: #dce8ff; background: #0c2349; font-size: 0.8rem; }
.utility-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-bar nav { display: flex; gap: 18px; }
.utility-bar a { color: #fff; }
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(223, 231, 242, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(16, 42, 86, 0.05);
  backdrop-filter: blur(14px);
}
.site-header__inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { flex: 0 0 auto; }
.site-brand img { width: 112px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav__link, .site-nav__group > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 720;
  list-style: none;
  white-space: nowrap;
}
.site-nav__group > summary::-webkit-details-marker { display: none; }
.site-nav__group > summary::after { content: ""; width: 7px; height: 7px; margin: -4px 0 0 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.site-nav__link:hover, .site-nav__group > summary:hover, .site-nav__link.is-active, .site-nav__group.is-active > summary { color: var(--brand-dark); background: var(--brand-soft); }
.site-nav__group { position: relative; }
.site-nav__menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 7px);
  left: 0;
  display: grid;
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.site-nav__menu a { padding: 9px 11px; color: var(--ink); border-radius: 8px; font-size: 0.9rem; }
.site-nav__menu a:hover { color: var(--brand-dark); background: var(--brand-soft); }
.site-nav__cta { margin-left: 6px; }
.site-nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.site-nav-toggle > span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--ink); }

.btn, button.btn, a.btn, input[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.72rem 1.25rem;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(28, 104, 232, 0.18);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover, button.btn:hover, input[type="submit"]:hover { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 12px 28px rgba(28, 104, 232, 0.25); transform: translateY(-1px); }
.btn-default, .btn-primary, .btn-blue { color: #fff !important; background: var(--brand) !important; border-color: var(--brand) !important; }
.btn-white, .btn-outline, .btn.btn-outline { color: var(--brand-dark) !important; background: #fff !important; border-color: #bfd1ed !important; box-shadow: none; }
.btn-white:hover, .btn-outline:hover { border-color: var(--brand) !important; background: var(--brand-soft) !important; }
.btn-black { color: #fff !important; background: var(--navy) !important; border-color: var(--navy) !important; }
.btn-small { min-height: 42px; padding: 0.55rem 1rem; font-size: 0.84rem; }
.btn-xs, .btn-sm { min-height: 34px; padding: 0.28rem 0.55rem; font-size: 0.8rem; }
.btn-info { color: #fff !important; background: #0ea5e9 !important; border-color: #0ea5e9 !important; }
.btn-success { color: #fff !important; background: var(--success) !important; border-color: var(--success) !important; }
.btn-outline-info, .btn-outline-primary, .btn-outline-success { color: #fff !important; background: var(--brand) !important; border-color: var(--brand) !important; }
.btn-lg { min-height: 54px; padding-inline: 1.55rem; }
.btn-group, .btn-demo-group, .banner-buttons, .banner-buttons-group, .cta-row, .enterprise-cta-row, .app-btn-group-sm { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-v2, .inside-banner, .industry-hero, .switcher-hero, .seo-hero, .inv-hero, .qb-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  background: radial-gradient(circle at 85% 10%, rgba(35, 148, 255, 0.16), transparent 34%), linear-gradient(135deg, #f4f8ff 0%, #fff 58%, #eefaf6 100%);
}
.inside-banner { width: min(calc(100% - 40px), var(--container)); min-height: 360px; margin: 24px auto 0; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); align-items: center; gap: 40px; border-radius: var(--radius-lg); }
.inside-banner .banner-title { padding-left: clamp(0px, 2vw, 28px); }
.inside-banner .banner-img { display: grid; place-items: center; }
.inside-banner .img-blob { max-height: 330px; width: auto; object-fit: contain; }
.hero-v2__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); gap: clamp(35px, 7vw, 90px); align-items: center; }
.hero-v2 h1 { max-width: 780px; }
.hero-v2__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.7rem; }
.hero-v2__note, .industry-note, .switcher-note, .source-list { margin-top: 1rem; color: #69758a; font-size: 0.84rem; }
.hero-product {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(191, 209, 237, 0.75);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}
.hero-product img { width: 100%; border-radius: 14px; }
.hero-product__badge { position: absolute; right: -14px; bottom: 24px; max-width: 190px; padding: 13px 16px; color: #fff; background: var(--navy); border-radius: 13px; box-shadow: var(--shadow-sm); font-size: 0.86rem; font-weight: 750; }
.trust-strip { padding: 22px 0; border-block: 1px solid var(--line); background: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-strip__item { text-align: center; }
.trust-strip__item strong { display: block; color: var(--ink); font-size: 1.08rem; }
.trust-strip__item span { color: var(--ink-soft); font-size: 0.84rem; }

.grid-2, .section-col-2, .section-flex-content, .industry-two-col, .seo-two-col, .calculator-wrap, .grid-2-center { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 5vw, 56px); align-items: center; }
.grid-3, .industry-grid, .industry-links, .switcher-grid, .seo-grid, .inv-grid, .genie-prompts, .feature-grid-v2, .testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4, .section-pos-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.row { display: flex; flex-wrap: wrap; margin-inline: -12px; }
.row > [class*="col"], .row > .col { min-width: 0; padding-inline: 12px; }
.col, .col-md-6 { flex: 1 1 50%; }

.card, .seo-card, .industry-card, .switcher-card, .inv-card, .qb-card, .enterprise-card, .comparison-card, .genie-card, .card-benefits, .metric-card, .feature-card-v2 {
  height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card:hover, .seo-card:hover, .industry-card:hover, .switcher-card:hover, .feature-card-v2:hover { border-color: #b6c9e7; box-shadow: 0 16px 40px rgba(18, 45, 88, 0.11); }
.card p:last-child, .seo-card p:last-child, .industry-card p:last-child, .switcher-card p:last-child { margin-bottom: 0; }
.feature-card-v2__icon { display: grid; width: 44px; height: 44px; margin-bottom: 18px; place-items: center; color: var(--brand-dark); background: var(--brand-soft); border-radius: 12px; font-weight: 900; }
.team-avatar { display: grid; width: 72px; height: 72px; margin-bottom: 20px; place-items: center; color: #fff; background: linear-gradient(135deg, var(--brand), var(--mint)); border-radius: 22px; font-size: 1.2rem; font-weight: 900; letter-spacing: 0.05em; }
.team-card__role { margin-top: -0.5rem; color: var(--brand-dark); font-weight: 750; }
.feature-card-v2 ul, .industry-card ul, .switcher-card ul, .comparison-list { padding-left: 20px; color: var(--ink-soft); }
.feature-card-v2 li, .industry-card li, .switcher-card li, .comparison-list li { margin: 0.4rem 0; }
.card-icon { display: grid; width: 52px; height: 52px; margin-bottom: 18px; place-items: center; color: var(--brand-dark); background: var(--brand-soft); border-radius: 14px; }
.card-title, .card-title-sm, .card-title-lg { color: var(--ink); font-weight: 800; }
.card-details, .card-info-details, .card-nfo { color: var(--ink-soft); }

.industry-pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.industry-pill, .customer-pill, .inline-tag, .enterprise-badge { display: inline-flex; padding: 7px 11px; color: var(--brand-dark); background: var(--brand-soft); border-radius: 999px; font-size: 0.8rem; font-weight: 800; }
.industry-links { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industry-link { padding: 16px 18px; color: var(--ink); border: 1px solid var(--line); border-radius: 12px; background: #fff; font-weight: 780; }
.industry-link:hover { color: var(--brand-dark); border-color: var(--brand); }
.industry-callout, .switcher-callout, .qb-callout, .cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #183f80);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.industry-callout h2, .switcher-callout h2, .qb-callout h2, .cta-panel h2 { color: #fff; margin-bottom: 0.25em; }
.industry-callout p, .switcher-callout p, .qb-callout p, .cta-panel p { color: #dce8ff; margin-bottom: 0; }

.switcher-comparison { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.switcher-comparison th, .switcher-comparison td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.switcher-comparison th { color: var(--ink); background: var(--surface-soft); }
.switcher-comparison tr:last-child td { border-bottom: 0; }

.seo-two-col { align-items: start; }
.seo-checklist { padding: 0; list-style: none; }
.seo-checklist li { position: relative; margin: 0.7rem 0; padding-left: 28px; color: var(--ink-soft); }
.seo-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.lead-capture-box { margin-top: 32px; padding: clamp(24px, 4vw, 38px); border: 1px solid #cfe0fa; border-radius: var(--radius); background: linear-gradient(135deg, #eef5ff, #f7fffc); }
.lead-capture-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 18px 0 8px; }
.lead-capture-form .lead-capture-captcha, .lead-capture-form .btn { grid-column: span 3; }
.lead-capture-box small { color: #65738b; }
.calc-panel, .calculator-panel { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.calc-panel label, .calculator-grid label { display: block; margin: 0 0 16px; color: var(--ink); font-weight: 750; }
.calc-result, .calculator-result { display: grid; gap: 3px; margin-top: 20px; padding: 22px; background: var(--surface-soft); border-radius: 14px; }
.calc-result strong, .calculator-result strong { color: var(--ink); font-size: 1.8rem; }
.calc-result span, .calculator-result span { color: var(--ink-soft); }
.barcode-preview { margin-top: 20px; overflow-x: auto; }

input:not([type="checkbox"]):not([type="radio"]), select, textarea, .form-control {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bdc9da;
  border-radius: 9px;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(28, 104, 232, 0.1); outline: 0; }
label, .control-label { color: var(--ink); font-weight: 700; }
.form-group { margin-bottom: 18px; }
.error, label.error { color: var(--danger); }
.alert, .notification { margin: 18px 0; padding: 14px 16px; border: 1px solid #b7d6c9; border-radius: 10px; background: #edfdf6; }
.alert-success, .success { color: var(--success); }

.accordion, .testimonial-aaccordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.accordion-item > summary { list-style: none; }
.accordion-item > summary::-webkit-details-marker { display: none; }
.accordion-header { margin: 0; }
/* The FAQ partial wraps each question in an <h2> for semantics, so without
   its own size the button inherited the 48px heading scale. */
.accordion-header { font-size: inherit; }
.accordion-button { width: 100%; padding: 18px 20px; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 800; font-size: 1.05rem; line-height: 1.45; font-family: inherit; }
.accordion-button::after { content: "+"; float: right; color: var(--brand); font-size: 1.25rem; }
.accordion-button[aria-expanded="true"]::after { content: "−"; }
.accordion-item[open] > .accordion-button::after { content: "−"; }
.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }
.accordion-body { padding: 0 20px 20px; color: var(--ink-soft); }

.testimonial-carousel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testimonial { height: 100%; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.comp-name { color: var(--ink); font-size: 1.1rem; font-weight: 850; }
.client-name { margin: 3px 0 16px; color: var(--brand-dark); font-size: 0.88rem; font-weight: 750; }
.client-msg { color: var(--ink-soft); font-size: 0.94rem; }
.client-msg p:last-child { margin-bottom: 0; }
.section-client-testimonials .section-flex-content { grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr); align-items: start; }
.col-testimonials-sidebar { position: sticky; top: 120px; }
/* These testimonials are long-form: three of them side by side inside the
   0.65fr column leaves each card barely 220px wide, so they wrap to a couple
   of words per line. Stack them beside the sticky heading instead. */
.section-client-testimonials .testimonial-carousel { grid-template-columns: minmax(0, 1fr); gap: 22px; }

.feature-category { margin-top: 52px; }
.feature-category:first-child { margin-top: 0; }
.feature-category__header { max-width: 720px; margin-bottom: 22px; }
.feature-list-v2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; padding: 0; list-style: none; }
.feature-list-v2 li { position: relative; padding: 14px 16px 14px 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feature-list-v2 li::before { content: "✓"; position: absolute; left: 16px; color: var(--success); font-weight: 900; }
.feature-list-v2 strong { display: block; color: var(--ink); }
.feature-list-v2 span { display: block; color: var(--ink-soft); font-size: 0.9rem; }

fieldset { min-width: 0; padding: 0; border: 0; }
legend { margin-bottom: 10px; color: var(--ink); font-weight: 800; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-option { display: flex; min-height: 44px; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-soft); }
.check-option input { width: 18px; height: 18px; }
.text-sm { font-size: 0.84rem; font-weight: 500; color: var(--ink-soft); }
.native-help-popover { width: min(360px, calc(100vw - 40px)); margin-top: 9px; padding: 12px 14px; color: #fff; border-radius: 10px; background: #10294e; box-shadow: var(--shadow-sm); font-size: 0.88rem; line-height: 1.5; }
#braintree-container[data-error]::after { display: block; margin-top: 10px; color: #b42318; content: attr(data-error); font-weight: 700; }
.table-tools { display: flex; flex-wrap: wrap; align-items: end; gap: 10px; margin-bottom: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.table-tools label { display: grid; gap: 5px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 800; }
.table-tools input, .table-tools select { min-height: 40px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.table-tools__status { margin-right: auto; color: var(--ink-soft); font-size: 0.85rem; }

.modal { display: none; }
.modal.show { position: fixed; z-index: 200; inset: 0; display: grid; overflow-y: auto; place-items: center; padding: 24px; background: rgba(7, 20, 43, 0.76); }
.modal-dialog { width: min(900px, 100%); }
.modal-content { position: relative; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg); }
.modal-header, .modal-body, .modal-footer { padding: 22px; }
.btn-close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 40px; height: 40px; padding: 0; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: 1.5rem; line-height: 1; }
.video-frame { position: relative; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal-open { overflow: hidden; }

.demo-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pricing-grid, .cards-pricing, .pricing-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card-pricing { position: relative; height: 100%; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.card-pricing.selected, .card-pricing.is-selected, .js-plan-card.is-selected { border: 2px solid var(--brand); box-shadow: 0 18px 45px rgba(28, 104, 232, 0.18); }
.price, .price-tag-value, .subscription_price { color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.price-tag-hidden { display: none !important; }
.location-option[hidden] { display: none; }

.category-grid, .products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.category-tile, .product-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.category-tile { padding: 22px; text-align: center; }
.product-card img { border-radius: var(--radius) var(--radius) 0 0; }
.cart-sidebar { position: fixed; z-index: 120; top: 0; right: 0; width: min(420px, 100%); height: 100dvh; padding: 24px; overflow-y: auto; background: #fff; box-shadow: -18px 0 55px rgba(16, 42, 86, 0.18); transform: translateX(105%); transition: transform 0.25s ease; }
.cart-sidebar.open { transform: translateX(0); }
.cart-count-badge { display: inline-flex; min-width: 21px; height: 21px; align-items: center; justify-content: center; color: #fff; background: var(--brand); border-radius: 999px; font-size: 0.72rem; }

.site-footer { margin-top: clamp(3rem, 8vw, 7rem); padding: 64px 0 0; color: #d7e4fb; background: #0c2349; }
.site-footer__grid { display: grid; grid-template-columns: minmax(250px, 1.5fr) repeat(4, minmax(120px, 1fr)); gap: 35px; }
/* Scoped to the logo link: this also matched the two app-store badges in
   .app-badges, and brightness(0) invert(1) turned them into blank white pills. */
.site-footer__brand > a img { width: 190px; filter: brightness(0) invert(1); }
.site-footer__brand p { max-width: 330px; margin-top: 18px; color: #b8c9e5; }
.app-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.app-badges img { width: 135px; height: 40px; object-fit: contain; }
.site-footer__column { display: flex; flex-direction: column; gap: 9px; }
.site-footer__column h2 { margin-bottom: 6px; color: #fff; font-size: 0.83rem; letter-spacing: 0.09em; text-transform: uppercase; }
.site-footer a { color: #d7e4fb; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { min-height: 72px; margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid rgba(255, 255, 255, 0.13); color: #9fb3d3; font-size: 0.82rem; }
.site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.scroll-top { position: fixed; z-index: 70; right: 20px; bottom: 20px; width: 44px; height: 44px; color: #fff; background: var(--navy); border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(10px); transition: 0.2s ease; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.align-top { align-items: flex-start !important; }
.text-center { text-align: center !important; }
.text-blue, .text-primary { color: var(--brand-dark) !important; }
.text-white { color: #fff !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.g-4 { gap: 1.5rem; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.card-body { padding: 1.25rem; }
.badge { display: inline-flex; align-items: center; padding: 0.2rem 0.55rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; line-height: 1.2; }
.bg-success { color: #fff; background: var(--success); }
.bg-danger { color: #fff; background: var(--danger); }
.bg-primary { color: #fff; background: var(--brand); }
.bg-secondary { color: #fff; background: #5b6b82; }
.form-control-sm { min-height: 38px; padding: 6px 10px; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.page-link { display: block; padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); }
.page-item.disabled .page-link { opacity: 0.45; pointer-events: none; }
.page-crowbar-hub .inside-banner, .page-crowbar-clients .inside-banner, .page-crowbar-login .inside-banner { overflow: visible; min-height: 0; grid-template-columns: minmax(0, 1fr); }
.page-resellers-portal .inside-banner, .page-resellers-subscriptions .inside-banner, .page-resellers-profile .inside-banner { overflow: visible; }
.page-resellers-subscriptions section.section { overflow-x: auto; }
.page-resellers-subscriptions th, .page-resellers-subscriptions td { white-space: nowrap; }
.page-crowbar-hub .row.g-4 > [class*="col-"] { flex: 1 1 260px; max-width: none; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 0.75rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5, .mb-40 { margin-bottom: 2.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.ptop-30 { padding-top: 30px; }
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pt-5, .pt-35 { padding-top: 2.2rem !important; }
.pt-15 { padding-top: 1rem !important; }
.pt-md { padding-top: 3.5rem !important; }
.pt-140 { padding-top: 7rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.br-10 { border-radius: 10px !important; }
.font-16 { font-size: 1rem !important; }
.font-49 { font-size: clamp(2rem, 4vw, 3.05rem) !important; }
.clearfix::after { content: ""; display: table; clear: both; }
.is-embedded .utility-bar, .is-embedded .site-header, .is-embedded .site-footer, .is-embedded .scroll-top { display: none !important; }
.is-embedded #wrapper, .is-embedded #main { margin: 0 !important; padding-top: 0 !important; }

@media (max-width: 1100px) {
  .site-nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100dvh - 120px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: grid; }
  .site-nav__link, .site-nav__group > summary { min-height: 46px; padding-inline: 12px; }
  .site-nav__menu { position: static; margin: 0 8px 8px; box-shadow: none; }
  .site-nav__cta { margin: 6px 0 0; }
  .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: span 3; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(2.25rem, 10vw, 3.6rem); }
  .utility-bar__inner > span { display: none; }
  .utility-bar__inner { justify-content: flex-end; }
  .hero-v2__grid, .inside-banner, .grid-2, .section-col-2, .section-flex-content, .industry-two-col, .seo-two-col, .calculator-wrap, .grid-2-center { grid-template-columns: minmax(0, 1fr); }
  /* Needs the same specificity as the two-column rule above, or the 240px
     sidebar track survives here and squeezes the testimonials to a sliver. */
  .section-client-testimonials .section-flex-content { grid-template-columns: minmax(0, 1fr); }
  .hero-product { max-width: 620px; }
  .inside-banner { min-height: 0; padding-block: 54px; }
  .inside-banner .banner-title { padding-left: 0; }
  .inside-banner .banner-img { display: none; }
  .trust-strip__grid, .grid-4, .section-pos-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .industry-grid, .industry-links, .switcher-grid, .seo-grid, .inv-grid, .genie-prompts, .feature-grid-v2, .testimonial-grid, .testimonial-carousel, .pricing-grid, .cards-pricing, .pricing-cards, .category-grid, .products-grid, .demo-options { grid-template-columns: minmax(0, 1fr); }
  .feature-list-v2 { grid-template-columns: minmax(0, 1fr); }
  .industry-callout, .switcher-callout, .qb-callout, .cta-panel { display: block; }
  .industry-callout .btn, .switcher-callout .btn, .qb-callout .btn, .cta-panel .btn { margin-top: 20px; }
  .switcher-comparison { display: block; overflow-x: auto; }
  .lead-capture-form { grid-template-columns: minmax(0, 1fr); }
  .lead-capture-form .lead-capture-captcha, .lead-capture-form .btn { grid-column: auto; }
  .col-testimonials-sidebar { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-bar nav { gap: 12px; }
  .utility-bar nav a:nth-child(2), .utility-bar nav a:nth-child(3) { display: none; }
  .site-header__inner { min-height: 58px; }
  .site-brand img { width: 96px; }
  .site-nav { right: 14px; left: 14px; }
  .hero-v2, .inside-banner, .industry-hero, .switcher-hero, .seo-hero, .inv-hero, .qb-hero { padding-block: 3.8rem; }
  .hero-product__badge { position: static; max-width: none; margin-top: 12px; }
  .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .btn-group, .btn-demo-group, .banner-buttons, .banner-buttons-group, .cta-row, .hero-v2__actions { align-items: stretch; flex-direction: column; }
  .btn-group .btn, .btn-demo-group .btn, .banner-buttons .btn, .cta-row .btn, .hero-v2__actions .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; padding-block: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.form-status:not(:empty) { margin: 18px 0; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--ink); }
.form-status.is-success { border-color: #9dd9b3; background: #effbf3; color: #12622d; }
.form-status.is-error { border-color: #efb6b6; background: #fff3f3; color: #8f1d1d; }

.payments-hero { padding-block: clamp(64px, 9vw, 112px); background: radial-gradient(circle at 85% 15%, #dceaff 0, transparent 34%), linear-gradient(135deg, #f7faff 0%, #fff 72%); }
.payments-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: center; gap: clamp(36px, 7vw, 90px); }
.payments-hero h1 { max-width: 760px; margin-bottom: 20px; }
.payments-hero .lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.payments-rate-card { padding: clamp(25px, 4vw, 38px); border: 1px solid #cfe0fb; border-radius: 22px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-lg); }
.payments-rate-card > span { color: var(--brand-dark); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.payments-rate-card > strong { display: block; margin-block: 8px 12px; color: var(--navy); font-size: clamp(2.25rem, 5vw, 3.7rem); line-height: 1; }
.payments-rate-card ul { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.payments-rate-card li { position: relative; padding-left: 25px; }.payments-rate-card li::before { position: absolute; left: 0; color: #168a4b; content: "✓"; font-weight: 900; }
.payments-pricing .grid-2 { align-items: start; }
.payments-table-wrap { margin-top: 36px; overflow: auto; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.payments-table { width: 100%; min-width: 1120px; border-collapse: separate; border-spacing: 0; }
.payments-table th,.payments-table td { min-width: 145px; padding: 15px 16px; text-align: center; vertical-align: middle; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.payments-table th:first-child,.payments-table td:first-child { position: sticky; left: 0; z-index: 1; min-width: 255px; text-align: left; background: #fff; box-shadow: 6px 0 12px rgba(15,38,76,.04); }
.payments-table thead th { position: sticky; top: 0; z-index: 2; padding-block: 20px; color: var(--navy); background: #eff5ff; }
.payments-table thead th:first-child { z-index: 3; background: #e7f0ff; }
.payments-table tbody tr:nth-child(even) td,.payments-table tbody tr:nth-child(even) th { background: #fafcff; }
.payments-table tr:last-child>* { border-bottom: 0; }.payments-table tr>*:last-child { border-right: 0; }
.payments-device-name,.payments-device-price { display: block; }.payments-device-name { font-weight: 850; }.payments-device-price { margin: 6px 0; color: var(--muted); font-size: .9rem; font-weight: 600; }
.payments-table a { font-size: .82rem; font-weight: 800; }
.payment-availability { display: inline-grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; font-weight: 900; }
.payment-availability.is-yes { color: #0e7437; background: #dcf7e7; }.payment-availability.is-no { color: #77869e; background: #eef2f7; }
.payments-table-note { margin: 12px 4px 0; color: var(--muted); font-size: .86rem; }
@media(max-width:820px){.payments-hero__grid{grid-template-columns:minmax(0, 1fr)}.payments-table th:first-child,.payments-table td:first-child{min-width:210px}}

@media print {
  .utility-bar, .site-header, .site-footer, .scroll-top, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .card, .seo-card, .industry-card, .switcher-card { box-shadow: none; break-inside: avoid; }
}

/* Feature tabs from _partials/_tab_features.php (landing_general,
   landing_general_step_2, landing_repairsfirst and the nine symlinks that
   point at them). The rebuild dropped every rule behind this markup, so all
   eight panels rendered at once - a 15,000px page - and clicking a tab only
   moved the highlight. */
.tab-features-btn { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 60px; }
.tab-features-btn .tab-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--brand);
  background: none;
  border: 1px solid var(--brand);
  border-radius: 5px;
  cursor: pointer;
}
.tab-features-btn .tab-btn.active { color: #fff; border-color: var(--brand); background: var(--brand); }
.tab-features-contents .tab-content { display: none; }
.tab-features-contents .tab-content.active { display: block; }
@media (max-width: 1100px) { .tab-features-btn { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px) { .tab-features-btn { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 450px) {
  .tab-features-btn { grid-template-columns: minmax(0, 1fr); gap: 10px; margin-bottom: 50px; }
  .tab-features-btn .tab-btn { height: 44px; }
}
