/* Scoped variables */

:root {
  --tb-accent: #28a745;
  --tb-radius: 12px;
  --tb-max: 1200px;
  --tb-gap: 1rem;
}

/* Container utility (safe, limited specificity) */

/* Shared section base (non-conflicting) */

.tb-bg-soft {
  background: #fbfbfb;
}

/* Headings */

/* UNIVERSAL PREMIUM H2 UNDERLINE */

/* Cards / media */

.tb-card {
  background: #fff;
  border-radius: var(--tb-radius);
  box-shadow: 0 8px 28px rgba(15,15,15,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tb-card .tb-card-body {
  padding: 1rem;
}

/* Check - injected SVG will match your design */

.tb-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}

/* CTA */

.tb-cta {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 10px;
  background: var(--tb-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.tb-phone-ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Image placeholder caption */

/* tiny utility */

/* Avoid conflicts: ensure images don't create layout gap */

/* ======= GLOBAL REUSABLE UTILITIES (SAFE, tb-namespaced) ======= */

.tb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem;
}

/* GRID SYSTEM */

.tb-grid {
  display: grid;
  gap: 1.25rem;
}

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

@media (max-width: 992px) {
  .tb-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tb-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* INDUSTRY CARD */

/* INDUSTRY IMAGE */

/* TEXT INSIDE */

/* CTA */

/* Lazy image base (optional) */

/* ============ TB UNIVERSAL GRID (Safe) ============= */

.tb-who-img-box {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
}

/* prevent the “extra left gap” issue */

.tb-who-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GRID: TEXT LEFT + IMAGE RIGHT */

.tb-local-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* MOBILE STACK */

@media (max-width: 900px) {
  .tb-local-grid {
    grid-template-columns: 1fr;
  }
}

/* RIGHT SIDE IMAGE BOX */

/* ============================
   TB CLEAN PRO LAYOUT (new)
   Premium cards + 2-column + text layout
   Everything TB namespaced — no conflicts
============================ */

/* Section */

.tb-section {
  padding: 3.5rem 0;
  color: #222;
}

/* GRID 2 col */

.tb-grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
}

@media (max-width:900px) {
  .tb-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* GRID 3 col */

.tb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

@media (max-width:900px) {
  .tb-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* CARD */

.tb-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 6px 26px rgba(0,0,0,.06);
  transition: .25s ease;
}

.tb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 34px rgba(0,0,0,.1);
}

/* IMAGE placeholder block */

.tb-img-box {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background: #f3f3f3;
  overflow: hidden;
}

.tb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LIST ITEMS */

.tb-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tb-li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.tb-li strong {
  font-size: 1.03rem;
  font-weight: 600;
}

.tb-li p {
  margin: .25rem 0 0;
  color: #555;
  line-height: 1.5;
  font-size: .95rem;
}

/* CTA */

.tb-cta {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.3rem;
  background: #28a745;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.25rem;
}

/* TAG */

/* Stats large */

.tb-stat-box {
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.tb-stat-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

/* Hidden SEO */

/* Make the two-column layout align vertically */

.tb-local-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Ensure the right side image stays centered inside its column */

/* Optional: make image look cleaner */

/* RESPONSIVE FIX: Stack on mobile and remove vertical centering so it doesn't look weird */

@media (max-width: 991px) {
  .tb-local-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .tb-local-right {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

.tb-cta, .tb-cta:hover, .tb-cta:focus, .tb-cta:active {
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 1em;
}

/* Solid green CTA */

.tb-cta:hover {
  background: #23963c;
  color: #fff !important;
}

/* Outline CTA (white background) */

/* OUTLINE CTA DEFAULT STATE */

/* HOVER = inverse (green bg, white text) */

/* TRUST BADGES GRID */

/* CARD LOOK */

/* BADGE IMAGES */

/* WRAPPER */

/* IMAGE BOXES */

/* TOP IMAGE — slightly taller */

/* BOTTOM IMAGE — shorter */

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablet — shrink sizes */

/* Mobile — only top image shown */

/* ===== PREMIUM MOSAIC V2 (3-IMAGE DIAGONAL) ===== */

/* Base Image Style */

/* Main hero image (left column) */

/* Tall center image (right) */

/* Small bottom image (right, diagonal offset) */

/* ===== Tablet (2 images only) ===== */

/* ===== Mobile (1 hero image only) ===== */

/* PREMIUM TAX IMAGE CARD */

/* Tablet adjustments */

/* Mobile — image full width below text */

/* GRID WRAPPER */

.tb-tax-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* LEFT TEXT */

.tb-tax-m-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* RIGHT MOSAIC */

.tb-tax-m-right {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.25rem;
}

.tb-tax-m-big, .tb-tax-m-sm {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.tb-tax-m-big img, .tb-tax-m-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-tax-m-big {
  height: 300px;
}

.tb-tax-m-sm-group {
  display: grid;
  gap: 1.25rem;
}

.tb-tax-m-sm {
  height: 140px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .tb-tax-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .tb-tax-m-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .tb-tax-m-big {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .tb-tax-m-sm {
    height: 120px;
  }
}

@media (max-width: 767px) {
  .tb-tax-m-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tb-tax-m-sm-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .tb-tax-m-big {
    height: 220px;
  }
}

/* PREMIUM INDUSTRY CARD (IMAGE-FREE) */

/* ICON CIRCLE */

/* Headings + descriptions */

/* CTA button stays consistent */

.industry-v5-grid .industry-v5-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: all .25s ease;
}

.industry-v5-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Header */

.industry-v5-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.industry-v5-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f3faf5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Badges */

.industry-v5-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.industry-v5-badges span {
  padding: .35rem .65rem;
  background: #f3faf5;
  border: 1px solid #d8f2df;
  color: #28a745;
  font-size: .78rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Description */

.industry-v5-desc {
  font-size: .92rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

/* Arrow link */

.industry-v5-link {
  font-weight: 700;
  color: #28a745;
  text-decoration: none;
  font-size: .98rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: color .2s ease;
}

.industry-v5-link span {
  transition: transform .25s ease;
}

.industry-v5-link:hover span {
  transform: translateX(4px);
}

.industry-v5-link:hover {
  color: #1e7c34;
}

/* Responsive */

@media (max-width:960px) {
  .tb-grid-3 {
    grid-template-columns: 1fr;
  }
}

.tb-inject-check::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: .55rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%2328a745' d='M20.285 6.709l-11.49 11.49-5.657-5.657 1.414-1.414 4.243 4.243 10.076-10.076z'/%3E%3C/svg%3E");
}

/* Image Mosaic Fix (equal height grid) */

/* Left tall image spans 2 rows */

/* Right top image */

/* Right bottom image */

.rs-apple-grid {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Each row is a link */

.rs-apple-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1.25rem;
  align-items: flex-start;
  padding: 1.05rem 1.4rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  background: #ffffff;
  transition: background .2s ease, transform .18s ease;
}

.rs-apple-row:first-of-type {
  border-top: none;
}

.rs-apple-row:hover {
  background: linear-gradient(90deg,#ffffff 0%,#f8fbff 100%);
}

/* Icon column */

.rs-apple-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40,167,69,0.06);
}

.rs-apple-icon svg {
  width: 22px;
  height: 22px;
  fill: #28a745;
}

/* Text */

.rs-apple-main {
  min-width: 0;
}

.rs-apple-title {
  font-weight: 600;
  font-size: .98rem;
  color: #111827;
  margin-bottom: .15rem;
}

.rs-apple-desc {
  font-size: .9rem;
  color: #6b7280;
  margin: 0;
}

/* Arrow */

.rs-apple-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rs-apple-arrow {
  width: 18px;
  height: 18px;
  stroke: #28a745;
  stroke-width: 1.8;
  fill: none;
  transition: transform .22s ease, opacity .22s ease;
  opacity: .65;
}

.rs-apple-row:hover .rs-apple-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Mobile tweaks */

@media (max-width:768px) {
  .rs-apple-row {
    grid-template-columns: auto 1fr;
    row-gap: .35rem;
  }
}

@media (max-width:768px) {
  .rs-apple-arrow-wrap {
    grid-column: 2/span 1;
    justify-content: flex-start;
    margin-top: .1rem;
  }
}

/* ================================   Premium 4-Image Mosaic – v14   (CSS-only, HTML-locked)================================ */

/* Container */

.tb-local-right {
  width: 100%;
  display: flex;
}

/* Mosaic grid */

.tb-mosaic-v14 {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  align-items: stretch;
}

/* Image cards */

.tb-m14-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f9fa;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 22px 48px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image fill */

.tb-m14-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover polish */

.tb-m14-img:hover img {
  transform: scale(1.04);
}

/* ================================   Mosaic Positioning (Key Part)================================ */

/* Primary hero image (1st) */

.tb-mosaic-v14 .tb-m14-img:nth-child(1) {
  grid-row: span 2;
}

/* Supporting images */

.tb-mosaic-v14 .tb-m14-img:nth-child(2) {
  grid-row: span 1;
}

.tb-mosaic-v14 .tb-m14-img:nth-child(3) {
  grid-row: span 1;
}

/* Bottom wide image (4th) */

.tb-mosaic-v14 .tb-m14-img:nth-child(4) {
  grid-column: span 2;
}

/* ================================   Reduce height of 4th mosaic image================================ */

/* Target ONLY the last (4th) image */

.tb-mosaic-v14 .tb-m14-img:nth-child(4) {
  max-height: 240px;
}

/* Ensure image fits nicely */

.tb-mosaic-v14 .tb-m14-img:nth-child(4) img {
  height: 100%;
  object-fit: cover;
}

/* ================================   Responsive Behavior================================ */

/* Tablet */

@media (max-width: 991px) {
  .tb-mosaic-v14 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media (max-width: 991px) {
  .tb-mosaic-v14 .tb-m14-img:nth-child(1), .tb-mosaic-v14 .tb-m14-img:nth-child(4) {
    grid-column: span 2;
    grid-row: auto;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .tb-mosaic-v14 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .tb-mosaic-v14 .tb-m14-img {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Glass Shine Reflection */

.tb-m14-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient( 100deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 60%, transparent 100% );
  transform: skewX(-15deg);
  pointer-events: none;
}

/* Light Overlay */

.tb-m14-img::after {
  content: "";
  position: absolute;
  top: 0;
  height: 40%;
  width: 100%;
  background: linear-gradient( to bottom, rgba(255,255,255,0.32), rgba(255,255,255,0) );
  pointer-events: none;
}

/* Hover Effects — Premium float */

.tb-m14-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.tb-m14-img:hover::before {
  animation: shineMove 0.9s forwards;
}

/* Shine animation */

@keyframes shineMove {
  0% {
    left: -60%;
  }
  100% {
    left: 140%;
  }
}

@media (max-width: 992px) {
  .tb-mosaic-v14 {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .tb-m14-img {
    height: 160px;
  }
}

/* ============================================================
   Pricing V23 — ProAdvisor Grid Matrix (Cinematic, Heavy Neon)
   Clean, premium, spatial — ID remains unchanged.
============================================================ */

.qb-matrix-wrap {
  position: relative;
  padding: 7rem 1.5rem;
  margin: 3.5rem 0;
  overflow: hidden;
  background: rgba(244,247,251,0);
}

/* ---------------- BACKGROUND GRID ---------------- */

/* ---------------- PANEL ---------------- */

.qb-matrix-panel {
  position: relative;
  z-index: 10;
  max-width: 880px;
  margin: auto;
  padding: 3.4rem 2.8rem;
  border-radius: 34px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(40,167,69,0.18), inset 0 0 25px rgba(255,255,255,0.4);
  animation: qbFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes qbFloat {
  0% {
    transform: translateY(0px) translateZ(0px);
  }
  50% {
    transform: translateY(-10px) translateZ(8px);
  }
  100% {
    transform: translateY(0px) translateZ(0px);
  }
}

/* ---------------- BADGE ---------------- */

.qb-matrix-badge {
  display: inline-block;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  background: rgba(40,167,69,0.20);
  border: 1px solid rgba(40,167,69,0.28);
  color: #0c4e34;
  box-shadow: 0 0 22px rgba(40,167,69,0.35), inset 0 0 12px rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.4rem;
}

/* ---------------- TITLE ---------------- */

.qb-matrix-title {
  font-size: 2.25rem;
  line-height: 1.28;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #121212;
  text-shadow: 0 0 14px rgba(255,255,255,0.55), 0 4px 22px rgba(0,0,0,0.09);
}

/* ---------------- SUBTEXT ---------------- */

.qb-matrix-subtext {
  max-width: 780px;
  margin: auto;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  opacity: .93;
}

/* --------- Responsive --------- */

@media (max-width: 768px) {
  .qb-matrix-panel {
    padding: 2.5rem 1.6rem;
  }
}

@media (max-width: 768px) {
  .qb-matrix-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 768px) {
  .qb-matrix-subtext {
    font-size: 1.05rem;
  }
}

/* Apple-style hover — soft, simple, elegant */

/* Mobile stacking */

/* -------------------------------------------
   Enhanced V50 — VisionOS Spatial Glass Panel
   ------------------------------------------- */

.v50-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.8rem;
  padding: 3rem 2.6rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.55), 0 10px 32px rgba(0,0,0,0.08), 0 40px 120px rgba(0,0,0,0.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover depth */

.v50-panel:hover {
  transform: translateY(-6px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 0 0 1px rgba(40,167,69,0.45), 0 16px 48px rgba(40,167,69,0.22), 0 80px 180px rgba(0,0,0,0.22);
}

/* Glow layers */

.v50-ambient, .v50-ambient-two {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
  animation: v50pulse 7s ease-in-out infinite alternate;
}

.v50-ambient {
  top: 5%;
  right: 12%;
  background: radial-gradient(circle, rgba(40,167,69,0.25), rgba(40,167,69,0) 70%);
}

.v50-ambient-two {
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(40,167,69,0.17), rgba(40,167,69,0) 75%);
}

@keyframes v50pulse {
  from {
    transform: scale(.85);
  }
  to {
    transform: scale(1.2);
  }
}

/* TEXT */

.v50-left {
  flex: 1;
}

.v50-quote {
  font-size: 1.45rem;
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.v50-name {
  font-size: 1.1rem;
  margin-bottom: .3rem;
  font-weight: 700;
}

.v50-meta {
  font-size: .95rem;
}

/* RIGHT AVATAR */

.v50-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v50-avatar-wrap {
  width: 230px;
  height: 230px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.85), 0 8px 26px rgba(0,0,0,0.1), inset 0 0 40px rgba(255,255,255,0.45);
}

.v50-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */

@media (max-width:768px) {
  .v50-panel {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1.6rem;
  }
}

@media (max-width:768px) {
  .v50-avatar-wrap {
    width: 170px;
    height: 170px;
    border-radius: 22px;
  }
}

@media (max-width:768px) {
  .v50-quote {
    font-size: 1.18rem;
  }
}

/* ------------------------------------------------------------   FAQ V250 — Enterprise Corporate Premium Edition   ------------------------------------------------------------ */

.faqv250-wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* LEFT MOSAIC */

.faqv250-aside {
  width: 310px;
}

/* Main portrait */

.faqv250-portrait {
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 10px 24px rgba(0,0,0,0.08);
  margin-bottom: 1.1rem;
}

.faqv250-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Supporting avatars */

.faqv250-mini-wrap {
  display: flex;
  gap: 1rem;
}

.faqv250-mini {
  flex: 1;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .25s ease;
}

.faqv250-mini:hover {
  transform: translateY(-4px);
}

.faqv250-mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */

.faqv250-content {
  flex: 1;
}

.faqv250-sub {
  margin-bottom: 2rem;
  max-width: 780px;
  color: #5d646c;
}

/* Accordion */

.faqv250-accordion {
  width: 100%;
}

.faqv250-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  transition: border .25s ease, box-shadow .25s ease;
}

.faqv250-item:hover {
  border-color: #d8eadc;
  box-shadow: 0 0 0 1px rgba(40,167,69,.13), 0 12px 26px rgba(0,0,0,0.05);
}

.faqv250-btn {
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: #fff;
  transition: background .25s ease, color .25s ease;
}

/* Body */

.faqv250-body {
  padding: 1.25rem 1.5rem;
  color: #444;
  opacity: 0;
  animation: faqv250fade .45s ease forwards;
}

@keyframes faqv250fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */

@media (max-width:992px) {
  .faqv250-wrap {
    flex-direction: column;
  }
}

@media (max-width:992px) {
  .faqv250-aside {
    width: 100%;
  }
}

@media (max-width:992px) {
  .faqv250-title, .faqv250-sub {
    text-align: center;
  }
}

/* ---------------------------------------------------------   Local Search Intent Block — V300 Premium--------------------------------------------------------- */

.lsi300 {
  padding: 3.5rem 0;
  background: #ffffff;
}

.lsi300-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lsi300-text {
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 820px;
  color: #4b535a;
  margin-bottom: 1.6rem;
}

.lsi300-tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 0;
}

.lsi300-tags li {
  background: #f4faf6;
  border: 1px solid #d9edde;
  padding: .45rem .8rem;
  border-radius: 8px;
  font-size: .87rem;
  color: #2b6238;
  font-weight: 500;
}

/* ---------------------------------------------------------   State-Specific Summary Block — V250 Premium--------------------------------------------------------- */

.sss250 {
  padding: 3.8rem 0;
  background: #f9fbfa;
  border-top: 1px solid #eef3ef;
}

.sss250-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sss250-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 1.4rem;
}

.sss250-item {
  background: #ffffff;
  padding: 1.6rem 1.4rem;
  border-radius: 14px;
  border: 1px solid #e7ede9;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.sss250-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .45rem;
}

.sss250-item p {
  margin: 0;
  color: #4b545c;
  line-height: 1.6;
  font-size: .96rem;
}

@media (max-width:768px) {
  .sss250-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------   GRID------------------------------- */

.state-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

/* -------------------------------   CARD — Premium V150------------------------------- */

.smg-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.9rem;
  border: 1px solid #e6ecea;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: all .28s ease;
  display: flex;
  flex-direction: column;
}

.smg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40,167,69,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09), 0 0 0 1px rgba(40,167,69,0.1);
}

/* Header */

.smg-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.smg-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #e8f8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(40,167,69,0.2);
}

/* Titles & Text */

.smg-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
}

.smg-card-text {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 1.3rem;
  line-height: 1.62;
}

/* Link */

.smg-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .96rem;
  font-weight: 600;
  color: #1c7c35;
  text-decoration: none;
  margin-top: auto;
}

.smg-link-arrow {
  transition: .25s ease;
}

.smg-link:hover .smg-link-arrow {
  transform: translateX(5px);
}

/* Responsive */

@media (max-width:992px) {
  .state-mini-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px) {
  .state-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================== */

/* PERFECT RESPONSIVE PAIN-POINTS */

/* =============================== */

/* The grid wrapper */

.tb-pain-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

/* Tablet (2 columns) */

@media (min-width: 600px) {
  .tb-pain-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens (optional 3 columns — remove if not needed) */

@media (min-width: 1100px) {
  .tb-pain-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual cards */

.tb-pain {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  width: 100%;
  box-sizing: border-box;
}

/* Icon container */

.tb-pain-ico svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Title */

.tb-pain h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
}

/* Text */

.tb-pain p {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.45;
}

/* Prevent ANY overflow — guaranteed */

.tb-pain, .tb-pain * {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 2-column grid (always 2 items per row) */

.tb-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

/* Card */

.tb-who-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  word-break: break-word;
}

/* Inline heading row: icon + title */

.tb-who-head {
  display: flex;
  align-items: center;
  gap: .55rem;
}

/* Icon */

.tb-who-ico svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Heading */

.tb-who-head h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}

/* Paragraph text */

.tb-who-card p {
  margin: 0;
  font-size: .92rem;
  color: #555;
  line-height: 1.45;
}

.top-cities-subtext {
  max-width: 720px;
  margin: 0.75rem auto 1.5rem;
  text-align: center;
}

.tb-subtext-center {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
  color: #555;
}

.tb-hero-title {
  font-display: swap;
  will-change: contents;
}

/* Lead Magnet Wrapper */

.qb-laser-wrap {
  max-width: 820px;
  margin: auto;
  padding: 2.8rem 2.2rem;
  border-radius: 24px;
  background: radial-gradient(circle at top, #ffffffcc 0%, #f4f9f6 90%);
  border: 1px solid #e4f5ea;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(40,167,69,0.10), 0 12px 42px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Laser Sweep Animation */

.qb-laser-beam {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 220%;
  background: linear-gradient(115deg, transparent 0%, #28a74544 25%, #28a745aa 50%, #28a74544 75%, transparent 100% );
  transform: rotate(8deg);
  animation: laserSweep 6s linear infinite;
  pointer-events: none;
  opacity: 0.55;
}

/* Radial Glow */

.qb-laser-glow {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, #28a74533, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

/* CTA Button */

.qb-laser-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 2.2rem;
  margin-bottom: 1em;
  border-radius: 50px;
  background: #28a745;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 12px #28a745aa, 0 10px 28px rgba(40,167,69,0.40);
  transition: all .25s ease;
}

.qb-laser-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px #28a745cc, 0 12px 32px rgba(40,167,69,0.50);
}

/* Title and Text Overrides */

.lead-magnet-title {
  font-size: 1.85rem;
}

.lead-magnet-text {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #333;
}

/* Keyframes */

@keyframes laserSweep {
  0% {
    transform: translateX(-100%) rotate(8deg);
  }
  100% {
    transform: translateX(100%) rotate(8deg);
  }
}

@keyframes laserSweep {
  0% {
    transform: translateX(-100%) rotate(8deg);
  }
  100% {
    transform: translateX(100%) rotate(8deg);
  }
}

/* GRID */

.ai-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9edf1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.06);
}

/* CARD */

.ai-adv-card {
  padding: 2.2rem 1.8rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .26s ease;
  border: 1px solid #eef1f4;
}

.ai-adv-card:hover {
  background: #ffffff;
  border-color: #c8ecd0;
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(40,167,69,0.10), 0 18px 32px rgba(0,0,0,0.06);
}

/* ICON + TITLE ROW */

.ai-adv-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.ai-blue {
  background: #0A84FF22;
}

.ai-green {
  background: #28A74522;
}

.ai-orange {
  background: #FF950022;
}

.ai-purple {
  background: #5856D622;
}

.ai-violet {
  background: #AF52DE22;
}

.ai-teal {
  background: #30C27D22;
}

.ai-adv-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.ai-adv-text {
  margin-top: 1rem;
  color: #444;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .ai-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ai-adv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ai-adv-card {
    padding: 1.8rem 1.4rem;
  }
}

@media (max-width: 600px) {
  .ai-adv-icon {
    width: 38px;
    height: 38px;
  }
}

.cb-aside-punchline {
  position: relative;
  padding: 0.85rem 1rem;
  border-left: 3px solid #28a745;
  background: linear-gradient(90deg, rgba(40,167,69,0.06), rgba(40,167,69,0.02));
  border-radius: 6px;
  line-height: 1.55;
  font-family: 'Inter';
}

.cb-aside-punchline strong {
  color: #1e7e34;
  font-weight: 600;
}

.cb-aside-trustline {
  margin-top: .5rem;
  font-size: .82rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1f2933;
  opacity: .9;
}

.cb-aside-trustline {
  border-left: 2px solid #28a745;
  padding-left: .6rem;
}

/* =========================   CASE STUDY – GLOBAL STYLES   ========================= */

.tb-case-study {
  position: relative;
  overflow: hidden;
}

.tb-case-study .max-width {
  max-width: 980px;
  margin: 0 auto;
}

/* Card */

.case-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 3rem 3rem 2.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Accent bar */

.case-accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient( 180deg, #28a745 0%, rgba(40, 167, 69, 0.35) 100% );
  border-radius: 18px 0 0 18px;
}

/* Quote mark */

.case-quote-mark {
  position: absolute;
  top: -14px;
  right: 28px;
  font-size: 92px;
  font-weight: 700;
  color: rgba(40, 167, 69, 0.12);
  line-height: 1;
  pointer-events: none;
}

/* Main testimonial text */

.case-card .tb-subtext-center {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
  margin: 0 0 2.2rem;
}

/* Stats grid */

.case-stats {
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.case-stat {
  padding: 1.2rem;
}

.case-stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0.35rem 0 0.15rem;
}

/* Verified badge */

.case-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0.75rem;
  font-weight: 600;
  color: #28a745;
}

/* Author */

.case-author {
  margin: 0.25rem 0 0;
  font-weight: 600;
  color: #222;
}

/* Note */

.case-note {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

/* CTA */

.case-cta-wrap {
  margin-top: 1.75rem;
}

.case-cta-wrap .tb-cta {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(40, 167, 69, 0.25);
}

/* =========================   RESPONSIVE   ========================= */

@media (max-width: 768px) {
  .case-card {
    padding: 2.25rem 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .case-quote-mark {
    right: 16px;
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .case-stat {
    padding: 0.75rem;
  }
}

img {
  height: auto;
  max-width: 100%;
}

img[loading="lazy"] {
  content-visibility: auto;
}

img {
  height: auto;
  max-width: 100%;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* =====================================   Hero Emphasis Text===================================== */

.tb-hero-emphasis {
  display: inline-block;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #0f172a;
}

/* Desktop */

@media (min-width: 992px) {
  .tb-hero-emphasis {
    font-size: 2rem;
    font-weight: 600;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .tb-hero-emphasis {
    font-size: 1.75rem;
    font-weight: 600;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .tb-hero-emphasis {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }
}

/* =====================================   Bookkeeping Core — V5 Premium===================================== */

.bk-v5 {
  padding: 4rem 0;
}

.bk-v5-wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Header */

.bk-v5-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bk-v5-intro {
  max-width: 820px;
  margin: 0 auto;
}

/* Panels */

.bk-v5-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem 2.25rem;
  border: 1px solid #eef1f3;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.bk-v5-panel:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  border-color: #dce6df;
}

.bk-v5-panel-primary {
  background: linear-gradient( 180deg, rgba(255,255,255,0.65), rgba(248,249,250,0.7) );
}

.bk-v5-panel-soft {
  background: rgba(248,249,250,0.9);
}

/* Grid */

.bk-v5-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2.5rem;
}

/* Lists */

.bk-v5-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.bk-v5-checklist li {
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.bk-v5-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28a745;
}

.bk-v5-checklist.subtle li::before {
  background: #94a3b8;
}

/* Columns */

.bk-v5-columns {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.bk-v5-columns li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}

/* Notes */

.bk-v5-note {
  margin-top: 1rem;
}

/* Responsive */

@media (max-width: 992px) {
  .bk-v5-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .bk-v5-columns {
    columns: 1;
  }
}

@media (max-width: 576px) {
  .bk-v5-panel {
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
  }
}

