/* Scoped variables */

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

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

.tb-container {
  max-width: var(--tb-max);
  margin: 0 auto;
  padding: 0 1rem;
}

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

.tb-section {
  padding: 2.4rem 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
}

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

/* Headings */

/* UNIVERSAL PREMIUM H2 UNDERLINE */

.tb-sub {
  color: #555;
  margin-bottom: 1rem;
}

/* Grid helpers */

.tb-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--tb-gap);
  align-items: start;
}

.tb-col-6 {
  grid-column: span 6;
}

.tb-col-4 {
  grid-column: span 4;
}

.tb-col-8 {
  grid-column: span 8;
}

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

@media (max-width: 900px) {
  .tb-col-6, .tb-col-4, .tb-col-8 {
    grid-column: auto;
  }
}

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

/* Lists */

.tb-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .6rem;
}

.tb-who-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: transparent;
  padding: .35rem 0;
}

.tb-who-item h6 {
  margin: 0;
  font-size: .98rem;
  font-weight: 700;
}

.tb-who-item p {
  margin: .25rem 0 0;
  color: #666;
  font-size: .95rem;
}

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

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

/* Pain points */

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

.tb-pain {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .8rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(10,10,10,0.03);
}

.tb-pain h5 {
  margin: 0 0 .25rem;
  font-size: 1.02rem;
}

.tb-pain p {
  margin: 0;
  color: #555;
  font-size: .95rem;
}

/* Error cards */

.tb-error-card {
  padding: 1rem;
  border-radius: 10px;
  background: linear-gradient(180deg,#fff,#fbfcfc);
  border: 1px solid #f0f0f0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tb-error-card h5 {
  margin: 0 0 .5rem;
  font-weight: 700;
  display: flex;
  gap: .5rem;
  align-items: center;
}

/* Local problems list */

.tb-local-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}

.tb-local-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .6rem;
  border-radius: 10px;
  border: 1px solid #f3f3f3;
  background: #fff;
}

.tb-local-item strong {
  display: block;
}

/* Industry mini blocks */

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

.tb-muted {
  color: #6b6b6b;
}

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

.tb-media img, .tb-card img {
  display: block;
  max-width: 100%;
}

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

.tb-section {
  padding: 3rem 0;
}

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

.tb-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* 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;
  font-family: system-ui, Arial;
  color: #222;
}

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

.tb-subtext {
  max-width: 760px;
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

/* TAG */

.tb-tag {
  background: #e9f9ee;
  color: #28a745;
  border-radius: 14px;
  padding: .45rem .9rem;
  font-weight: 600;
  margin: .25rem;
  display: inline-block;
}

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

.tb-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

.tb-local-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

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

/* Solid green CTA */

.tb-cta {
  background: #28a745;
  color: #fff !important;
}

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

/* Outline CTA (white background) */

.tb-cta-outline {
  background: #fff;
  border: 2px solid #28a745;
  color: #28a745 !important;
}

.tb-cta-outline:hover {
  background: #28a745;
  color: #fff !important;
}

/* OUTLINE CTA DEFAULT STATE */

.tb-cta-outline {
  background: #fff !important;
  color: #28a745 !important;
  border: 2px solid #28a745 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

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

.tb-cta-outline:hover, .tb-cta-outline:focus {
  background: #28a745 !important;
  color: #fff !important;
  border-color: #28a745 !important;
  text-decoration: none !important;
}

/* TRUST BADGES GRID */

.tb-trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.75rem;
}

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

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

/* CARD LOOK */

.tb-trust-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tb-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* BADGE IMAGES */

.tb-trust-img {
  width: 110px;
  height: auto;
  object-fit: contain;
  margin: auto;
}

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

#local-economy-stats-alabama .tb-stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.09);
}

.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;
  }
}

/* 2x2 equal grid — controlled small premium look */

.tb-mosaic-v14 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 480px;
  margin-left: auto;
}

/* Each Mosaic Image Box */

.tb-m14-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 180px;
  background: #f7f7f7;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Actual Image */

.tb-mosaic-v14 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.qb-matrix-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 20% 35%, rgba(40,167,69,0.36), transparent 70%), radial-gradient(circle at 80% 70%, rgba(0,183,255,0.32), transparent 70%), repeating-linear-gradient( 90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 68px ), repeating-linear-gradient( rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 68px );
  opacity: .95;
  animation: matrixMove 22s linear infinite;
}

@keyframes matrixMove {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, -160px 260px, 0 260px;
  }
}

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

.cta30-call:hover {
  background: #23923d !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(35,146,61,0.22);
}

.cta30-chat:hover {
  background: #28a745 !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(35,146,61,0.18);
}

/* Mobile stacking */

@media (max-width:768px) {
  #sticky-cta {
    flex-direction: column;
    padding: 1rem 0;
    gap: .65rem;
  }
}

/* -------------------------------------------
   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-title {
  margin-bottom: .5rem;
  text-align: left;
}

.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;
}

.faqv250-btn:not(.collapsed) {
  background: #f4fdf7;
  color: #28a745;
  border-bottom: 1px solid #e5efe8;
}

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

