/* ==========================================================================
    INCEPBIO Â· CQV PAGE â€” PREMIUM INFOGRAPHIC REDESIGN v2 (FIXED)
   Same brand tokens: Deep Blue #004D88 Â· Signal Teal #009C8D
   Same typefaces: Lora (display) + Plus Jakarta Sans (body)
   Header & footer are untouched (their own CSS files) â€” this file only
   styles the hero and the content sections inside <main>.

   ------------------------------------------------------------------------
   FIX NOTES (read me):
   1. Several sections in the HTML (What is CQV / glass panel, Pitfalls,
      Industries hex grid, Why It Matters stats, Why Incepbio bento grid,
      FAQ, final CTA) had NO matching CSS rules at all in the previous
      file, which is why they rendered blank / collapsed. Full rules for
      every one of those classes are added below.
   2. Several icon SVGs (regulatory table header icons, hex icons, bento
      icons, FAQ icons, CTA icons) had no fill/stroke/size rules, so the
      browser defaulted to solid BLACK fill at native viewBox size -> the
      big black blobs you saw in the screenshot. Fixed with explicit
      fill:none + stroke + sizing on every icon wrapper.
   3. Mobile responsive rules added for every new section.
   ========================================================================== */

:root{
  --cq-blue:        #004D88;
  --cq-blue-dark:   #004D88;
  --cq-teal:        #009c8D;
  --cq-teal-light:  #00b2b8;
  --cq-mint:        #00c5cc;
  --cq-rust:        #009c8D;
  --cq-grad:        linear-gradient(135deg, var(--cq-blue) 0%, var(--cq-teal) 100%);
  --cq-grad-soft:   linear-gradient(135deg, rgba(0,77,136,.07) 0%, rgba(0,156,141,.07) 100%);
  --cq-grad-text:   linear-gradient(135deg, var(--cq-blue) 10%, var(--cq-teal) 90%);

  --cq-ink:         #0d273c;
  --cq-body:        #354e63;
  --cq-muted:       #7ba0b8;
  --cq-line:        rgba(0,78,138,.12);
  --cq-line-light:  rgba(0,78,138,.06);
  --cq-white:       #ffffff;
  --cq-surface:     #f8fbfb;
  --cq-surface-2:   #f0f5f6;

  --cq-shadow-sm:   0 4px 12px rgba(0,78,138,.04), 0 1px 3px rgba(0,78,138,.06);
  --cq-shadow-md:   0 16px 40px rgba(0,78,138,.06), 0 4px 10px rgba(0,78,138,.04);
  --cq-shadow-lg:   0 24px 60px rgba(0,78,138,.08), 0 8px 24px rgba(0,78,138,.05);
  --cq-shadow-glow: 0 20px 50px rgba(0,78,138,.14), 0 6px 18px rgba(0,151,157,.12);

  --cq-radius:      24px;
  --cq-radius-sm:   14px;
  --cq-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --cq-font-head:   var(--tg-heading-font-family);
  --cq-font-body:   var(--tg-body-font-family);
  --cq-font-serif:  var(--tg-heading-font-family);
}

/* ---------- base / shared utility layer ---------- */
main{ background:var(--cq-white); overflow-x:clip; font-family:var(--cq-font-body); }
main *{ box-sizing:border-box; }
.container-xl{ max-width:1280px; margin:0 auto; padding:0 24px; }

main section{ position:relative; padding:104px 24px; }
main section + section{ border-top:1px solid var(--cq-line); }

main section::before{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(0,77,136,.06) 1px, transparent 1px);
  background-size:26px 26px;
  -webkit-mask-image:linear-gradient(to bottom, black, transparent 50%);
          mask-image:linear-gradient(to bottom, black, transparent 50%);
  pointer-events:none; opacity:.5; z-index:0;
}
main section > *{ position:relative; z-index:1; }
main section::after{
  content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:88px; height:3px; border-radius:99px; background:var(--cq-grad); opacity:.9;
}
main .cqx-hero::after, main .cqx-hero::before{ display:none; }

/* Default icon safety net: any bare icon svg without explicit sizing
   elsewhere gets a sane size + outline style instead of a solid fill */
main svg{ display:inline-block; }
main .cqx-eyebrow svg, main .cqx-tab-list svg, main .cqx-check-circle svg{ fill:none; }

/* eyebrow pill */
.cqx-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--cq-font-head); font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  padding:7px 16px 7px 12px; border-radius:99px; color:var(--cq-blue);
  background:var(--cq-grad-soft); border:1px solid var(--cq-line); margin-bottom:18px;
}
.cqx-eyebrow::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--cq-grad); flex:none;
  box-shadow:0 0 0 4px rgba(0,156,141,.15);
}
.cqx-head{ text-align:center; max-width:660px; margin:0 auto 56px; }
.cqx-title{
  font-family:var(--cq-font-head); font-weight:800; letter-spacing:-.02em; line-height:1.14;
  background-image:var(--cq-grad-text); -webkit-background-clip:text; background-clip:text; color:transparent;
  font-size:clamp(1.9rem, 2.4vw + .6rem, 2.6rem); margin-bottom:14px;
}
.cqx-title em{
  font-style:normal; background-image:var(--cq-grad-text); -webkit-background-clip:text;
  background-clip:text; color:transparent;
}
.cqx-sub{ color:var(--cq-body); line-height:1.7; font-size:1.02rem; }

.cq-btn-primary, .cq-btn-ghost{
  display:inline-flex; align-items:center; gap:10px; font-family:var(--cq-font-head); font-weight:700;
  font-size:.95rem; padding:15px 28px; border-radius:12px; text-decoration:none; cursor:pointer; border:none;
  transition:transform .35s var(--cq-ease), box-shadow .35s var(--cq-ease), background-position .5s ease;
}
.cq-btn-primary{ color:#fff; background:var(--cq-grad); background-size:160% 160%; box-shadow:0 10px 26px rgba(0,77,136,.28); }
.cq-btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 38px rgba(0,77,136,.36); background-position:100% 0; color:#fff; }
.cq-btn-ghost{ color:var(--cq-blue); background:#fff; border:1.5px solid var(--cq-line); }
.cq-btn-ghost:hover{ border-color:transparent; color:#fff; background:var(--cq-grad); transform:translateY(-3px); box-shadow:0 14px 30px rgba(0,77,136,.24); }
.cq-btn-primary svg, .cq-btn-ghost svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* Generic buttons used across the page (header/hero/CTA reuse these) */
.btn{ display:inline-flex; align-items:center; gap:8px; font-family:var(--cq-font-head); font-weight:700; font-size:.92rem; padding:13px 22px; border-radius:12px; text-decoration:none; cursor:pointer; border:1.5px solid transparent; transition:transform .3s var(--cq-ease), box-shadow .3s var(--cq-ease); }
.btn svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex:none; }
.btn--primary{ color:#fff; background:var(--cq-grad); box-shadow:0 10px 24px rgba(0,77,136,.26); }
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(0,77,136,.34); color:#fff; }
.btn--secondary{ color:var(--cq-blue); background:#fff; border-color:var(--cq-line); }
.btn--secondary:hover{ border-color:var(--cq-teal); color:var(--cq-teal); transform:translateY(-2px); }
.btn--full{ width:100%; justify-content:center; }

/* scroll reveal base */
.cqx-reveal{ opacity:1; transform:translateY(36px); transition:opacity .8s var(--cq-ease), transform .8s var(--cq-ease); }
.cqx-reveal.cq-inview{ opacity:1; transform:translateY(0); }
.cqx-pop{ opacity:0; transform:scale(.85); transition:opacity .6s var(--cq-ease), transform .6s var(--cq-ease); }
.cqx-pop.cq-inview{ opacity:1; transform:scale(1); }

@media (prefers-reduced-motion:reduce){
  main *{ transition:none !important; animation:none !important; }
  .cqx-reveal, .cqx-pop{ opacity:1 !important; transform:none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.cqx-hero{
  position:relative; padding:100px 0 40px; isolation:isolate; max-width:100%;
  background:var(--cq-surface); overflow:hidden;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
}
.hero-glow-1 {
  position: absolute; width: 80vw; height: 80vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(0, 156, 141, 0.14) 0%, transparent 68%);
  top: -22%; right: -30%; pointer-events: none; animation: cqxHeroGlowDrift 12s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 70vw; height: 70vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, rgba(0, 77, 136, 0.09) 0%, transparent 68%);
  bottom: -25%; left: -20%; pointer-events: none; animation: cqxHeroGlowDrift 14s ease-in-out infinite reverse;
}
@keyframes cqxHeroGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -3%) scale(1.08); }
}
.cqx-hero::before{
  content:''; position:absolute; top:0; right:0; width:56%; height:100%;
  background-image: radial-gradient(rgba(0,77,136,0.16) 1px, transparent 1px);
  background-size:20px 20px;
  -webkit-mask-image:radial-gradient(60% 70% at 78% 30%, #000 0%, transparent 72%);
  mask-image:radial-gradient(60% 70% at 78% 30%, #000 0%, transparent 72%);
  z-index:0; pointer-events:none;
}
.cqx-hero::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(620px 420px at 8% 100%, rgba(0,156,141,0.07), transparent 60%);
  z-index:0; pointer-events:none;
}

.cqx-trace{ position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.cqx-trace svg{ position:absolute; opacity:.5; }
.cqx-trace path{ fill:none; stroke-width:1.4; stroke-linecap:round; }
.cqx-trace .t1{ stroke:var(--cq-teal); opacity:.24; }
.cqx-trace .t2{ stroke:var(--cq-teal-light); opacity:.16; }
.cqx-trace .t3{ stroke:var(--cq-blue); opacity:.10; }
@keyframes cqx-drift{ 0%{ stroke-dashoffset:0; } 100%{ stroke-dashoffset:-600; } }
.cqx-trace path{ stroke-dasharray:2 14; animation:cqx-drift 26s linear infinite; }
.cqx-trace path.t2{ animation-duration:34s; animation-direction:reverse; }
.cqx-trace path.t3{ animation-duration:42s; }

.cqx-hero-inner{ position:relative; z-index:1; }

.cqx-hero-grid{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:30px; width: 100%;
}
.cqx-hero-text{ display:flex; flex-direction:column; align-items:center; max-width:1000px; width: 100%; }
.cqx-hero-visual{ width:100%; max-width:1000px; position:relative; }

.cqx-hero-eyebrow{
  display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:7px 14px 7px 8px;
  background:#fff; border:1px solid var(--cq-line); border-radius:100px; box-shadow:var(--cq-shadow-sm);
  font-family:var(--cq-font-body); font-size:12px; font-weight:700; color:var(--cq-teal);
  letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; max-width:100%;
  text-align:center; flex-wrap:wrap;
}
.cqx-hero-eyebrow .dot-icon{ width:18px; height:18px; border-radius:50%; background:var(--cq-grad); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cqx-hero-eyebrow .dot-icon svg{ width:10px; height:10px; color:#fff; flex:none; max-width:10px; max-height:10px; fill:none; }

.cqx-hero-title{
  font-family:var(--cq-font-head); font-weight:800; letter-spacing:-0.5px;
  font-size:clamp(24px, 3vw, 38px); line-height:1.2; color:var(--cq-ink);
  margin:0 0 16px; position:relative; display:inline-block; max-width:100%;
  text-align: center;
}
@media (max-width: 768px) {
  .cqx-hero-title { white-space:normal; font-size: 28px; }
}
.cqx-hero-title .accent{
  background:var(--cq-grad-text);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-style:normal;
}

.cqx-hero-desc{
  font-family:var(--cq-font-body); font-size:16px; line-height:1.6; color:var(--cq-body);
  max-width:800px; margin:0 auto 24px; text-align:center;
}
.cqx-hero-desc strong{ color:var(--cq-ink); font-weight:800; }

.cqx-hero-actions { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px; margin-bottom:0; }

.cqx-hero-visual{ position:relative; }
.cqx-hero-ring{ position:absolute; border-radius:50%; border:1px dashed rgba(0,156,141,0.3); pointer-events:none; z-index:0; }
.cqx-hero-ring.r1{ width:64%; height:64%; top:-9%; right:-9%; }

.cqx-hero-panel{
  position:relative; z-index:1; border-radius:26px; overflow:hidden;
  background:var(--cq-ink); box-shadow:0 34px 70px -26px rgba(0,77,136,0.45);
  border:1px solid rgba(0,77,136,0.08);
}

.cqx-hero-panel-chrome{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:13px 18px; background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.cqx-hero-panel-dots{ display:flex; gap:6px; flex-shrink:0; }
.cqx-hero-panel-dots span{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.18); }
.cqx-hero-panel-live{
  display:inline-flex; align-items:center; gap:7px; font-family:var(--cq-font-body);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,0.75);
}
.cqx-hero-panel-live .pulse{ width:7px; height:7px; border-radius:50%; background:var(--cq-teal-light); position:relative; flex-shrink:0; }
.cqx-hero-panel-live .pulse::after{
  content:''; position:absolute; inset:-5px; border-radius:50%; border:1.5px solid var(--cq-teal-light);
  animation:cqx-pulse 2s ease-out infinite;
}
@keyframes cqx-pulse{ 0%{ transform:scale(.5); opacity:1;} 100%{ transform:scale(1.9); opacity:0;} }

.cqx-hero-frame{ position:relative; aspect-ratio:21/9; overflow:hidden; }
.cqx-hero-frame video, .cqx-hero-frame img{ width:100%; height:100%; object-fit:cover; }
.cqx-hero-frame::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(0deg, rgba(0,77,136,0.5) 0%, rgba(0,77,136,0) 30%);
}
.cqx-hero-frame-caption{
  position:absolute; left:18px; right:18px; bottom:16px; z-index:2;
  color:#fff; font-family:var(--cq-font-body); font-weight:700; font-size:13px;
}

.cqx-hero-scan{
  position:absolute; left:0; right:0; height:38%; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(0,156,141,0) 0%, rgba(0,156,141,0.16) 50%, rgba(0,156,141,0) 100%);
  animation:cqx-scan-sweep 4.5s ease-in-out infinite;
}
@keyframes cqx-scan-sweep{ 0%{ top:-40%; } 100%{ top:100%; } }

.cqx-hero-dock{
  position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,0.03); border-top:1px solid rgba(255,255,255,0.08);
}
.cqx-hero-dock-item{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:9px; padding:16px 8px;
  border-right:1px solid rgba(255,255,255,0.08);
}
.cqx-hero-dock-item:last-child{ border-right:none; }
.cqx-hero-dock-icon{
  width:34px; height:34px; border-radius:10px; background:rgba(255,255,255,0.08); color:var(--cq-teal-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cqx-hero-dock-icon svg{ width:16px; height:16px; flex:none; max-width:16px; max-height:16px; fill:none; }
.cqx-hero-dock-label{ font-family:var(--cq-font-body); font-size:10.5px; font-weight:700; color:#fff; line-height:1.3; }

.cqx-hero-marquee{ display:none; }

@media (max-width:1000px){
  .cqx-hero-grid{ gap:40px; }
  .cqx-hero::before{ width:100%; opacity:.7; }
}
@media (max-width:640px){
  .cqx-hero{ padding:108px 0 60px; }
  .cqx-hero-actions{ margin-top:28px; flex-direction:column; align-items:stretch; }
  .cqx-hero-actions .btn{ justify-content:center; width:100%; }

  .cqx-hero-ring{ display:none; }
  .cqx-hero-dock{ display:none; }

  .cqx-hero-marquee{
    display:block; margin-top:16px; overflow:hidden; position:relative; z-index:1; width:100%;
    -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .cqx-hero-marquee-track{ display:flex; gap:12px; width:max-content; animation:cqx-marquee 18s linear infinite; }
  .cqx-hero-marquee-chip{
    display:inline-flex; align-items:center; gap:8px; white-space:nowrap;
    background:var(--cq-surface); border:1px solid var(--cq-line); border-radius:100px;
    padding:9px 16px; font-family:var(--cq-font-body); font-size:12px; font-weight:700; color:var(--cq-ink);
    box-shadow:var(--cq-shadow-sm);
  }
  .cqx-hero-marquee-chip svg{ width:14px; height:14px; color:var(--cq-teal); flex:none; max-width:14px; max-height:14px; fill:none; }
  @keyframes cqx-marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce){
  .cqx-hero-marquee-track{ animation:none; }
  .cqx-hero-scan{ animation:none; }
}

/* ==========================================================================
   2. WHAT IS CQV â€” GLASS DASHBOARD PANEL   [FIXED: was missing entirely]
   ========================================================================== */
.cqx-what{ background:var(--cq-surface-2); padding:100px 0; }
.cqx-what-bg{ display:none; }

.cqx-glass-panel{
  position:relative; background:#fff; border-radius:var(--cq-radius);
  border:1px solid var(--cq-line-light); box-shadow:var(--cq-shadow-lg);
  padding:56px; display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center;
  overflow:hidden;
}
.cqx-glass-panel::before{
  content:''; position:absolute; top:-120px; right:-120px; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,156,141,.10), transparent 70%); pointer-events:none;
}
.cqx-glass-content{ position:relative; z-index:1; }
.cqx-glass-title{
  font-family:var(--cq-font-head); font-weight:800; font-size:clamp(1.6rem, 2vw + .6rem, 2.2rem);
  color:var(--cq-ink); letter-spacing:-.02em; line-height:1.2; margin:14px 0 18px;
}
.cqx-glass-bar{ width:64px; height:5px; border-radius:99px; background:var(--cq-grad); margin-bottom:22px; }
.cqx-glass-p{ color:var(--cq-body); line-height:1.75; font-size:1.02rem; margin:0 0 16px; }
.cqx-glass-p:last-of-type{ margin-bottom:0; }

.cqx-glass-metrics{
  position:relative; z-index:1; display:flex; flex-direction:column; gap:16px;
  background:var(--cq-surface); border:1px solid var(--cq-line-light); border-radius:18px; padding:26px;
}
.cqx-glass-metric{ display:flex; align-items:center; gap:14px; }
.cqx-glass-micon{
  flex:none; width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:rgba(0,156,141,.1); color:var(--cq-teal);
}
.cqx-glass-micon svg{ width:22px; height:22px; stroke:currentColor; stroke-width:2; fill:none; }
.cqx-glass-mtext{ font-weight:700; color:var(--cq-ink); font-size:.98rem; line-height:1.4; }

.cqx-glass-badge{
  grid-column:1 / -1; position:relative; z-index:1; justify-self:start;
  display:inline-flex; align-items:center; gap:10px; margin-top:8px;
  background:var(--cq-grad); color:#fff; font-family:var(--cq-font-head); font-weight:700; font-size:.85rem;
  padding:10px 18px; border-radius:99px; box-shadow:var(--cq-shadow-md);
}
.cqx-pulse{ width:8px; height:8px; border-radius:50%; background:var(--cq-teal-light); position:relative; flex:none; }
.cqx-pulse::after{ content:''; position:absolute; inset:-5px; border-radius:50%; border:1.5px solid var(--cq-teal-light); animation:cqx-pulse 2s ease-out infinite; }

@media (max-width:980px){
  .cqx-glass-panel{ grid-template-columns:1fr; padding:40px; gap:36px; }
}
@media (max-width:640px){
  .cqx-what{ padding:70px 0; }
  .cqx-glass-panel{ padding:28px 22px; border-radius:20px; }
  .cqx-glass-metrics{ padding:20px; }
}

/* ==========================================================================
   5. IQ / OQ / PQ â€” LAYERED TABS
   ========================================================================== */
.cqx-iqop{ background:#fff; }
.cqx-stepper-header{ position:relative; display:flex; justify-content:space-between; align-items:flex-start; gap:16px; max-width:900px; margin:0 auto 50px; }
.cqx-stepper-line{ position:absolute; top:22px; left:0; right:0; height:2px; background:var(--cq-line); z-index:0; }
.cqx-stepper-progress{ height:100%; width:0%; background:var(--cq-grad); transition:width .5s var(--cq-ease); }
.cqx-stepper-node{ position:relative; z-index:1; flex:1; display:flex; flex-direction:column; align-items:center; gap:10px; background:none; border:none; cursor:pointer; padding:0; }
.cqx-stepper-num{
  width:44px; height:44px; border-radius:50%; background:#fff; border:2px solid var(--cq-line);
  display:flex; align-items:center; justify-content:center; font-family:var(--cq-font-head); font-weight:800; color:var(--cq-muted);
  transition:all .3s var(--cq-ease);
}
.cqx-stepper-label{ font-family:var(--cq-font-head); font-weight:700; font-size:.85rem; color:var(--cq-body); text-align:center; line-height:1.35; }
.cqx-stepper-node.active .cqx-stepper-num, .cqx-stepper-node:hover .cqx-stepper-num{ border-color:var(--cq-teal); color:var(--cq-teal); box-shadow:0 6px 16px rgba(0,156,141,.2); }
.cqx-stepper-node.active .cqx-stepper-label{ color:var(--cq-ink); }

.cqx-tabs-content{ max-width:1100px; margin:0 auto; }
.cqx-tab-pane{ display:none; }
.cqx-tab-pane.active{ display:block; animation:cqxFadeUp .5s var(--cq-ease); }
@keyframes cqxFadeUp{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.cqx-tab-split{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.cqx-tab-badge{ display:inline-block; font-family:var(--cq-font-head); font-weight:800; font-size:.8rem; letter-spacing:.08em; color:#fff; background:var(--cq-grad); padding:6px 14px; border-radius:8px; margin-bottom:16px; }
.cqx-tab-title{ font-family:var(--cq-font-head); font-weight:800; font-size:1.5rem; color:var(--cq-ink); margin-bottom:14px; }
.cqx-tab-desc{ color:var(--cq-body); line-height:1.7; margin-bottom:22px; }
.cqx-tab-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.cqx-tab-list li{ display:flex; align-items:flex-start; gap:10px; font-weight:600; color:var(--cq-ink); font-size:.98rem; }
.cqx-tab-image{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3; box-shadow:var(--cq-shadow-md); }
.cqx-tab-image img{ width:100%; height:100%; object-fit:cover; }
.cqx-tab-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,26,51,.35), transparent 50%); }

@media(max-width:900px){
  .cqx-stepper-header{ flex-direction:column; align-items:stretch; gap:24px; }
  .cqx-stepper-line{ display:none; }
  .cqx-tab-split{ grid-template-columns:1fr; gap:30px; }
  .cqx-tab-image{ order:-1; }
}

/* ==========================================================================
   1. INDUSTRY PAIN POINTS â€” RADIAL INFOGRAPHIC
   ========================================================================== */
.cqx-pain { background: var(--cq-white); position: relative; overflow: hidden; padding-bottom: 80px; }
.cqx-radial-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 50px auto 0; align-items: center;
}
.cqx-radial-wheel {
  position: relative; width: 440px; height: 440px; margin: 0 auto;
}
.cqx-radial-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 150px; height: 150px; border-radius: 50%; background: var(--cq-grad);
  display: flex; align-items: center; justify-content: center; z-index: 10;
  box-shadow: 0 0 35px rgba(0,78,138,0.35); border: 2px solid rgba(0,151,157,0.6);
}
.cqx-radial-center-title {
  color: #fff; font-family: var(--cq-font-head); font-weight: 800; font-size: 1.15rem;
  text-align: center; line-height: 1.3; z-index: 2; letter-spacing: -0.01em;
}
.cqx-radial-center .pulse-ring {
  position: absolute; inset: -20px; border-radius: 50%; border: 1px dashed rgba(0,156,141,0.5);
  animation: cqx-spin-slow 25s linear infinite; z-index: 1; pointer-events: none;
}
@keyframes cqx-spin-slow { 100% { transform: rotate(360deg); } }

.cqx-radial-node {
  position: absolute; top: 50%; left: 50%; width: 64px; height: 64px;
  margin: -32px 0 0 -32px; border-radius: 50%; background: #fff;
  border: 1px solid var(--cq-line); box-shadow: var(--cq-shadow-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20; transition: all 0.4s var(--cq-ease);
  transform: rotate(var(--angle)) translate(175px) rotate(calc(-1 * var(--angle)));
}
.cqx-radial-node:hover, .cqx-radial-node.active {
  box-shadow: 0 12px 30px rgba(0,156,141,0.25); border-color: var(--cq-teal); background: #fdfdfd;
  transform: rotate(var(--angle)) translate(175px) rotate(calc(-1 * var(--angle))) scale(1.15);
}
.cqx-radial-icon { color: var(--cq-blue); width: 22px; height: 22px; transition: color 0.3s; }
.cqx-radial-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.cqx-radial-node:hover .cqx-radial-icon, .cqx-radial-node.active .cqx-radial-icon { color: var(--cq-teal); }
.cqx-radial-label {
  position: absolute; bottom: -28px; font-family: var(--cq-font-body); font-weight: 700;
  font-size: 0.8rem; color: var(--cq-ink); white-space: nowrap; transition: color 0.3s;
  background: rgba(255,255,255,0.8); padding: 2px 6px; border-radius: 4px; backdrop-filter: blur(4px);
}
.cqx-radial-node.active .cqx-radial-label { color: var(--cq-teal); }

.cqx-radial-lines {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1;
}
.radial-track {
  fill: none; stroke: var(--cq-line); stroke-width: 0.6; stroke-dasharray: 4 6;
}

.cqx-radial-content {
  position: relative; background: #fff; border-radius: 24px; border: 1px solid var(--cq-line-light);
  box-shadow: var(--cq-shadow-lg); overflow: hidden; min-height: 340px;
}
.cqx-radial-panel {
  position: absolute; inset: 0; padding: 46px 40px; opacity: 0; pointer-events: none;
  transform: translateY(20px); transition: all 0.5s var(--cq-ease);
  display: flex; flex-direction: column; justify-content: center;
}
.cqx-radial-panel.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cqx-radial-tag {
  font-family: var(--cq-font-head); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #d9534f; margin-bottom: 16px; display: inline-flex; align-items: center;
  background: #fdf2f2; padding: 6px 12px; border-radius: 8px; border: 1px solid rgba(217,83,79,.12); align-self: flex-start;
}
.cqx-radial-ptitle { font-family: var(--cq-font-head); font-weight: 800; font-size: 1.7rem; color: var(--cq-ink); line-height: 1.3; margin: 0 0 24px; letter-spacing: -0.01em; }
.cqx-radial-fix { background: var(--cq-grad-soft); padding: 26px; border-radius: 16px; border-left: 4px solid var(--cq-teal); }
.cqx-radial-stag {
  font-family: var(--cq-font-head); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cq-blue); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.cqx-radial-stag svg { stroke: currentColor; stroke-width: 2.5; fill: none; width:16px; height:16px; }
.cqx-radial-stext { font-size: 1.05rem; line-height: 1.6; color: var(--cq-body); margin: 0; }
.cqx-radial-stext b { font-weight: 700; color: var(--cq-ink); }

@media(max-width: 980px) {
  .cqx-radial-wrapper { grid-template-columns: 1fr; gap: 60px; max-width: 600px; }
  .cqx-radial-wheel { width: 380px; height: 380px; }
  .cqx-radial-node { transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle))); }
  .cqx-radial-node:hover, .cqx-radial-node.active {
    transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle))) scale(1.1);
  }
}
@media(max-width: 640px) {
  .cqx-radial-wheel { width: 300px; height: 300px; }
  .cqx-radial-node { transform: rotate(var(--angle)) translate(110px) rotate(calc(-1 * var(--angle))); width: 52px; height: 52px; margin: -26px 0 0 -26px; }
  .cqx-radial-node:hover, .cqx-radial-node.active {
    transform: rotate(var(--angle)) translate(110px) rotate(calc(-1 * var(--angle))) scale(1.1);
  }
  .cqx-radial-icon { width: 18px; height: 18px; }
  .cqx-radial-label { font-size: 0.7rem; bottom: -24px; }
  .cqx-radial-panel { padding: 30px 24px; }
  .cqx-radial-ptitle { font-size: 1.4rem; margin-bottom: 20px; }
  .cqx-radial-fix { padding: 20px; }
  .cqx-radial-stext { font-size: 0.95rem; }
}

/* ==========================================================================
   2B. GLOBAL REGULATORY STANDARDS TABLE  [ICON FIX]
   ========================================================================== */
.cqx-standards{ background:var(--cq-surface-2); }
.cqx-matrix-container{ max-width:1100px; margin:0 auto; }
.cqx-matrix-table-wrapper {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  background: #fff;
  border: 1px solid var(--cq-line-light);
  margin-top: 50px;
}
.cqx-matrix-table { width: 100%; min-width: 900px; border-collapse: separate; border-spacing: 0; text-align: left; }
.cqx-matrix-table th {
  padding: 24px;
  background: var(--cq-surface);
  font-family: var(--cq-font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cq-ink);
  border-bottom: 2px solid var(--cq-line);
}
.cqx-matrix-table th:first-child { position: sticky; left: 0; z-index: 3; background: var(--cq-surface); box-shadow: 2px 0 5px rgba(0,0,0,0.02); }
.cqx-matrix-table td:first-child { position: sticky; left: 0; z-index: 1; background: #fff; font-weight: 700; color: var(--cq-ink); box-shadow: 2px 0 5px rgba(0,0,0,0.02); }
.cqx-matrix-table td {
  padding: 24px;
  border-bottom: 1px solid var(--cq-line);
  font-size: 1.05rem;
  color: var(--cq-body);
  transition: background 0.3s, transform 0.2s;
}
.cqx-matrix-table tr:hover td { background: var(--cq-surface-2); }
.cqx-matrix-table tr:last-child td { border-bottom: none; }
/* icon fix: header icons must be outlined, not solid black blobs */
.cqx-matrix-table th svg{
  width:22px; height:22px; margin-right:6px; vertical-align:-5px;
  fill:none; stroke:currentColor; stroke-width:1.6; color:var(--cq-teal);
}
.cqx-check-circle { width: 32px; height: 32px; border-radius: 50%; background: rgba(0, 207, 187, 0.15); display: flex; align-items: center; justify-content: center; }
.cqx-check-circle svg { width: 16px; height: 16px; stroke: #00CFBB; stroke-width: 3; fill: none; }
.cqx-dash-circle { width: 24px; height: 4px; background: var(--cq-line); border-radius: 2px; }

@media(max-width:640px){
  .cqx-matrix-table th, .cqx-matrix-table td{ padding:16px; font-size:.92rem; }
}

/* ==========================================================================
   INLINE CTA STRIPS
   ========================================================================== */
.cqx-inline-cta{
  background: transparent;
  padding: 50px 0;
  border-top: none;
}
.cqx-inline-cta::before, .cqx-inline-cta::after{ display:none; }
.cqx-inline-cta-inner{
  background: var(--cq-grad);
  border-radius: 24px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--cq-shadow-glow);
  position: relative;
  overflow: hidden;
}
.cqx-inline-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cqx-inline-cta-text {
  flex: 1;
  text-align: left;
}
.cqx-inline-cta-title{
  font-family:var(--cq-font-head);
  font-weight:800;
  font-size:1.65rem;
  color:#ffffff;
  margin:0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.cqx-inline-cta-desc{
  color:rgba(255, 255, 255, 0.85);
  margin:0;
  font-size: 0.98rem;
  line-height: 1.5;
}
.cqx-inline-cta-features {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cqx-inline-cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cqx-inline-cta-feature svg {
  width: 14px;
  height: 14px;
  stroke: #00ffeb;
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
}
.cqx-inline-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  flex:none;
  background:#00c5cc;
  color:#ffffff;
  font-family:var(--cq-font-head);
  font-weight:700;
  font-size:.95rem;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
  transition:transform .3s var(--cq-ease), box-shadow .3s var(--cq-ease), background-color 0.3s;
}
.cqx-inline-cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0, 197, 204, 0.35);
  background-color: #00b2b8;
  color:#fff;
}
.cqx-inline-cta-btn svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  transition: transform 0.3s;
}
.cqx-inline-cta-btn:hover svg {
  transform: translateX(4px);
}
.cqx-inline-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff !important;
}
@media(max-width:991px){
  .cqx-inline-cta-inner{
    padding: 36px 30px;
    gap: 30px;
  }
  .cqx-inline-cta-title {
    font-size: 1.45rem;
  }
}
@media(max-width:767px){
  .cqx-inline-cta-inner{
    flex-direction:column;
    align-items:stretch;
    text-align: center;
  }
  .cqx-inline-cta-text {
    text-align: center;
  }
  .cqx-inline-cta-features {
    justify-content: center;
    gap: 15px;
  }
  .cqx-inline-cta-btn{
    width:100%;
  }
  .cqx-inline-cta-actions-wrap {
    width: 100%;
    min-width: 100% !important;
  }
}

/* ==========================================================================
   9. COMMON PITFALLS VS SOLUTIONS  [FIXED: matches .cqx-pit-* used in HTML]
   ========================================================================== */
.cqx-pitfalls{ background:#fff; }
.cqx-pit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; max-width:1100px; margin:50px auto 0; }
.cqx-pit-col{ border-radius:20px; padding:34px; border:1px solid var(--cq-line-light); }
.cqx-pit-col--bad{ background:#fdf6f4; }
.cqx-pit-col--good{ background:var(--cq-grad-soft); }
.cqx-pit-col-title{
  display:flex; align-items:center; gap:10px; font-family:var(--cq-font-head); font-weight:800; font-size:1.15rem;
  margin-bottom:22px;
}
.cqx-pit-col--bad .cqx-pit-col-title{ color:#b5482f; }
.cqx-pit-col--good .cqx-pit-col-title{ color:var(--cq-teal); }
.cqx-pit-col-title svg{ width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:2; flex:none; }
.cqx-pit-list{ display:flex; flex-direction:column; gap:14px; }
.cqx-pit-item{
  background:#fff; border-radius:12px; padding:16px 18px; font-size:.98rem; line-height:1.55; color:var(--cq-ink);
  border-left:4px solid transparent; box-shadow:var(--cq-shadow-sm);
}
.cqx-pit-col--bad .cqx-pit-item{ border-left-color:#d9534f; }
.cqx-pit-col--good .cqx-pit-item{ border-left-color:var(--cq-teal); }

@media(max-width:900px){
  .cqx-pit-grid{ grid-template-columns:1fr; }
}
@media(max-width:640px){
  .cqx-pit-col{ padding:24px; }
}

/* ==========================================================================
   6. TECHNICAL CAPABILITIES / DOCS / EST TIMELINE CARDS
   ========================================================================== */
.cqx-road, .cqx-est, .cqx-tech, .cqx-docs, .cqx-industries, .cqx-iqop {
  position: relative;
  background: var(--cq-white);
  overflow: hidden;
}
.cqx-tech { background: var(--cq-surface-2); }
.cqx-industries { background: var(--cq-white); }
.cqx-est { background: var(--cq-surface-2); }

.cqx-tech-grid, .cqx-docs-grid, .cqx-est-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cqx-timeline {
  display: block;
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}
.cqx-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--cq-teal);
  transform: translateX(-50%);
  opacity: 0.3;
}
.cqx-timeline-node {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding-right: 50px;
  margin-bottom: 50px;
}
.cqx-timeline-node.alt {
  justify-content: flex-start;
  left: 50%;
  padding-left: 50px;
  padding-right: 0;
}
.cqx-timeline-marker {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 48px;
  background: var(--cq-white);
  border: 2px solid var(--cq-teal);
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cq-font-head, inherit);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cq-teal);
  z-index: 2;
  box-shadow: var(--cq-shadow-sm);
}
.cqx-timeline-node.alt .cqx-timeline-marker {
  left: -24px;
  right: auto;
}
.cqx-timeline-content {
  background: var(--cq-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--cq-shadow-sm);
  width: 100%;
  max-width: 450px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cqx-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--cq-shadow-md);
}
.cqx-timeline-title {
  font-family: var(--cq-font-head, inherit);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cq-blue);
  margin-bottom: 10px;
}
.cqx-timeline-desc {
  font-size: 1rem;
  color: var(--cq-body);
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 768px) {
  .cqx-timeline-line { left: 30px; }
  .cqx-timeline-node { width: 100%; padding-right: 0; padding-left: 80px; justify-content: flex-start; }
  .cqx-timeline-node.alt { left: 0; padding-left: 80px; }
  .cqx-timeline-marker, .cqx-timeline-node.alt .cqx-timeline-marker { left: 6px; right: auto; }
}

/* CARDS STYLES (TECH, EST) */
.cqx-tech-card, .cqx-est-card {
  background: var(--cq-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--cq-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--cq-line-light);
}
.cqx-tech-card:hover, .cqx-est-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cq-shadow-md);
}
.cqx-tech-icon, .cqx-est-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0,151,157,0.1);
  color: var(--cq-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.cqx-tech-icon svg, .cqx-est-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.cqx-tech-title, .cqx-est-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cq-ink);
  margin-bottom: 15px;
  font-family: var(--cq-font-head);
}
.cqx-tech-desc, .cqx-est-desc {
  font-size: 1rem;
  color: var(--cq-body);
  line-height: 1.6;
}

/* PREMIUM 3D FLIP CARDS STYLE (DOCS) */
.cqx-doc-card {
  background: transparent;
  perspective: 1000px;
  height: 320px;
  border-radius: 16px;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
.cqx-doc-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}
.cqx-doc-card:hover .cqx-doc-card-inner,
.cqx-doc-card.is-flipped .cqx-doc-card-inner {
  transform: rotateY(180deg);
}
.cqx-doc-card-front, .cqx-doc-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--cq-line);
}
.cqx-doc-card-front {
  background: var(--cq-white);
  z-index: 2;
  transform: rotateY(0deg);
  box-shadow: var(--cq-shadow-sm);
  align-items: flex-start;
  text-align: left;
}
.cqx-doc-card-back {
  background: var(--cq-grad);
  color: var(--cq-white);
  transform: rotateY(180deg);
  box-shadow: var(--cq-shadow-glow);
  align-items: flex-start;
  text-align: left;
  border-color: transparent;
}
.cqx-doc-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 151, 157, 0.08);
  color: var(--cq-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.cqx-doc-card:hover .cqx-doc-icon {
  transform: scale(1.08);
}
.cqx-doc-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.cqx-doc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cq-ink);
  margin-bottom: 12px;
  font-family: var(--cq-font-head);
  line-height: 1.35;
}
.cqx-doc-flip-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cq-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.cqx-doc-card:hover .cqx-doc-flip-btn {
  gap: 12px;
}
.cqx-doc-back-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cq-white);
  margin-bottom: 12px;
  font-family: var(--cq-font-head);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  width: 100%;
  line-height: 1.3;
}
.cqx-doc-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.cqx-doc-back-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  margin-top: 15px;
}
.cqx-doc-back-brand {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}
.cqx-doc-back-footer i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.cqx-tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cqx-tech-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--cq-body);
}
.cqx-tech-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--cq-teal);
  font-size: 1.2rem;
  line-height: 1;
}
.cqx-tech-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  color: var(--cq-teal);
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}
.cqx-tech-bg svg {
  width: 150px;
  height: 150px;
}
.cqx-tech-header { position: relative; z-index: 1; }
.cqx-tech-list, .cqx-doc-desc, .cqx-est-desc { position: relative; z-index: 1; }

/* Typical timeline "estimate" strip */
.cqx-est-dur{ display:inline-block; font-family:var(--cq-font-head); font-weight:800; color:#fff; background:var(--cq-grad); font-size:.78rem; padding:6px 12px; border-radius:8px; margin-bottom:14px; }

/* ==========================================================================
   7. INDUSTRIES SERVED â€” HEX/CARD GRID   [FIXED: was missing entirely]
   ========================================================================== */
.cqx-hex-container{ display:flex; flex-direction:column; gap:22px; max-width:1100px; margin:50px auto 0; }
.cqx-hex-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:22px; }
.cqx-hex-item{ flex:1 1 230px; max-width:260px; }
.cqx-hex-inner{
  height:100%; background:#fff; border:1px solid var(--cq-line-light); border-radius:18px; padding:28px 20px;
  text-align:center; box-shadow:var(--cq-shadow-sm); transition:transform .3s var(--cq-ease), box-shadow .3s var(--cq-ease), border-color .3s;
}
.cqx-hex-inner:hover{ transform:translateY(-6px); box-shadow:var(--cq-shadow-md); border-color:var(--cq-teal); }
.cqx-hex-content{ display:flex; flex-direction:column; align-items:center; gap:14px; }
.cqx-hex-icon{
  width:56px; height:56px; border-radius:14px; background:var(--cq-grad-soft); color:var(--cq-teal);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.cqx-hex-icon svg{ width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.6; }
.cqx-hex-content span{ font-family:var(--cq-font-head); font-weight:700; font-size:.98rem; color:var(--cq-ink); line-height:1.35; }

@media(max-width:640px){
  .cqx-hex-item{ flex:1 1 130px; max-width:47%; }
  .cqx-hex-inner{ padding:20px 12px; }
  .cqx-hex-icon{ width:46px; height:46px; }
  .cqx-hex-icon svg{ width:22px; height:22px; }
  .cqx-hex-content span{ font-size:.85rem; }
}

/* ==========================================================================
   6. WHY IT MATTERS â€” STATS + VIDEO   [FIXED: was missing entirely]
   ========================================================================== */
.cqx-stats{ background:var(--cq-surface-2); color:var(--cq-body); }
.cqx-stats::before{ opacity:.04; }
.cqx-stats__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.cqx-stats__heading{ font-family:var(--cq-font-head); font-weight:800; font-size:clamp(1.7rem,2vw + .6rem,2.3rem); color:var(--cq-blue); margin:12px 0 18px; letter-spacing:-.02em; }
.cqx-stats__body{ color:var(--cq-body); line-height:1.75; }

/* Landscape Video Player */
.cqx-stats__vid-landscape {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto 40px;
  box-shadow: var(--cq-shadow-lg);
  border: 1px solid var(--cq-line);
}
.cqx-stats__vid-landscape video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cqx-stats__vid-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cq-teal);
  color: #ffffff;
  font-family: var(--cq-font-head);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: var(--cq-shadow-md);
}
.cqx-stats__vid-tint{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(13,39,60,.4), transparent 45%); }
.cqx-stats__playring{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:64px; height:64px; border-radius:50%;
  background:rgba(255,255,255,.2); border:1.5px solid rgba(255,255,255,.6); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; z-index: 2;
}
.cqx-stats__playring svg{ width:22px; height:22px; fill:#fff; margin-left:3px; }
.cqx-stats__vidbadge{
  position:absolute; left:16px; bottom:16px; display:inline-flex; align-items:center; gap:8px;
  background:rgba(13,39,60,.85); backdrop-filter:blur(6px); color:#fff; font-family:var(--cq-font-head); font-weight:700;
  font-size:.78rem; padding:8px 14px; border-radius:99px; z-index: 2;
}
.cqx-stats__viddot{ width:7px; height:7px; border-radius:50%; background:#ff5a5f; flex:none; }

.cqx-stats__quote{ border-left:3px solid var(--cq-teal); padding-left:18px; margin: 0 auto 40px; max-width: 860px; text-align: center; border-left: none; border-bottom: 2px solid var(--cq-line); padding-bottom: 20px; }
.cqx-stats__quote p{ margin:0; font-style:italic; color:var(--cq-ink); font-size:1.05rem; line-height:1.6; }

.cqx-stats__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width: 1000px; margin: 0 auto; }
.cqx-stat-tile{
  position:relative; background:var(--cq-white); border:1px solid var(--cq-line); border-radius:16px;
  padding:24px 20px; overflow:hidden; box-shadow: var(--cq-shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cqx-stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--cq-shadow-md);
}
.cqx-stat-accent{ position:absolute; top:0; left:0; width:100%; height:4px; background:var(--cq-grad); }
.cqx-stat-num{ font-family:var(--cq-font-head); font-weight:800; font-size:2.1rem; color:var(--cq-teal); margin-bottom:8px; }
.cqx-stat-desc{ font-size:.88rem; color:var(--cq-body); line-height:1.5; margin:0; }

@media(max-width:900px){
  .cqx-stats__vid-landscape { max-width: 100%; }
  .cqx-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:560px){
  .cqx-stats__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   4. WHY INCEPBIO â€” BENTO GRID   [FIXED: was missing entirely]
   ========================================================================== */
.cqx-why{ background:#fff; }
.cqx-bento-grid{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:minmax(190px,auto); gap:24px; max-width:1200px; margin:50px auto 0; }
.cqx-bento-card{
  background:#fff; border-radius:20px; padding:2px; box-shadow:var(--cq-shadow-md); border:1px solid var(--cq-line);
  transition:transform .3s var(--cq-ease), box-shadow .3s var(--cq-ease);
}
.cqx-bento-card:hover{ transform:translateY(-5px); box-shadow:var(--cq-shadow-lg); border-color:var(--cq-teal); }
.cqx-bento-card.bento-large{ grid-column:span 2; grid-row:span 2; }
.cqx-bento-card.bento-wide{ grid-column:span 2; }
.cqx-bento-inner{ height:100%; display:flex; }
.cqx-bento-content{ padding:34px; display:flex; flex-direction:column; }
.cqx-bento-icon{
  width:54px; height:54px; border-radius:14px; background:var(--cq-grad-soft); color:var(--cq-teal);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; flex:none;
}
.cqx-bento-icon svg{ width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:2; }
.cqx-bento-title{ font-family:var(--cq-font-head); font-weight:800; font-size:1.25rem; color:var(--cq-ink); margin-bottom:12px; }
.cqx-bento-desc{ color:var(--cq-body); line-height:1.65; font-size:.98rem; margin:0; }
.bento-large .cqx-bento-title{ font-size:1.5rem; }

@media(max-width:980px){
  .cqx-bento-grid{ grid-template-columns:repeat(2,1fr); }
  .cqx-bento-card.bento-large, .cqx-bento-card.bento-wide{ grid-column:span 2; }
}
@media(max-width:640px){
  .cqx-bento-grid{ grid-template-columns:1fr; }
  .cqx-bento-card.bento-large, .cqx-bento-card.bento-wide{ grid-column:1; }
  .cqx-bento-content{ padding:26px; }
}

/* ==========================================================================
   10. FAQ  [FIXED: was missing entirely]
   ========================================================================== */
.cqx-faq__row{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:start; max-width:1200px; margin:0 auto; }
.cqx-faq__imgwrap{ position:relative; border-radius:22px; overflow:hidden; box-shadow:var(--cq-shadow-lg); position:sticky; top:110px; }
.cqx-faq__imgwrap img{ width:100%; display:block; aspect-ratio:4/5; object-fit:cover; }
.cqx-faq__accent{
  position:absolute; top:20px; left:20px; width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center; color:var(--cq-teal); box-shadow:var(--cq-shadow-sm);
}
.cqx-faq__accent svg{ width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:2; }
.cqx-faq__badge{
  position:absolute; left:20px; bottom:20px; right:20px; display:flex; align-items:center; gap:12px;
  background:rgba(0,26,51,.72); backdrop-filter:blur(8px); border-radius:14px; padding:14px 16px; color:#fff;
}
.cqx-faq__badgeicon{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; flex:none; }
.cqx-faq__badgeicon svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; }
.cqx-faq__badgetxt{ display:flex; flex-direction:column; line-height:1.3; }
.cqx-faq__badgetxt strong{ font-family:var(--cq-font-head); font-size:1rem; }
.cqx-faq__badgetxt span{ font-size:.78rem; color:rgba(255,255,255,.7); }

.cqx-faq__acc{ display:flex; flex-direction:column; gap:14px; }
.cqx-faq__item{ border:1px solid var(--cq-line-light); border-radius:14px; overflow:hidden; background:#fff; transition:border-color .3s; }
.cqx-faq__item.is-open{ border-color:var(--cq-teal); box-shadow:var(--cq-shadow-sm); }
.cqx-faq__trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; background:none; border:none;
  cursor:pointer; padding:20px 22px; text-align:left; font-family:var(--cq-font-body);
}
.cqx-faq__qtext{ display:flex; align-items:baseline; gap:14px; font-weight:700; color:var(--cq-ink); font-size:1rem; line-height:1.4; }
.cqx-faq__num{ font-family:var(--cq-font-head); font-weight:800; color:var(--cq-teal); font-size:.85rem; flex:none; }
.cqx-faq__icon{ flex:none; width:26px; height:26px; border-radius:50%; background:var(--cq-surface-2); display:flex; align-items:center; justify-content:center; color:var(--cq-blue); transition:transform .3s var(--cq-ease), background .3s; }
.cqx-faq__icon svg{ width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:2.4; }
.cqx-faq__item.is-open .cqx-faq__icon{ background:var(--cq-teal); color:#fff; transform:rotate(45deg); }
.cqx-faq__panel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s var(--cq-ease); }
.cqx-faq__item.is-open .cqx-faq__panel{ grid-template-rows:1fr; }
.cqx-faq__panel > div{ overflow:hidden; }
.cqx-faq__answer{ padding:0 22px 22px; margin:0; color:var(--cq-body); line-height:1.7; font-size:.96rem; }

@media(max-width:980px){
  .cqx-faq__row{ grid-template-columns:1fr; gap:36px; }
  .cqx-faq__imgwrap{ position:relative; top:0; max-width:420px; margin:0 auto; }
}

/* ==========================================================================
   11. FINAL CTA   [FIXED: was missing entirely]
   ========================================================================== */
.cqx-cta{ padding:100px 24px; background:var(--cq-surface-2); border-top:none; }
.cqx-cta::before, .cqx-cta::after{ display:none; }
.cqx-cta__banner{
  position:relative; max-width:1100px; margin:0 auto; border-radius:32px; overflow:hidden;
  background:var(--cq-grad); padding:70px 60px; text-align:center; box-shadow:0 30px 70px rgba(0,77,136,.3);
}
.cqx-cta__ring{ position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.18); pointer-events:none; }
.cqx-cta__ring--a{ width:420px; height:420px; top:-180px; right:-140px; }
.cqx-cta__ring--b{ width:280px; height:280px; bottom:-160px; left:-100px; }
.cqx-cta__content{ position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cqx-cta__title{ font-family:var(--cq-font-head); font-weight:800; font-size:clamp(1.7rem,2.4vw + .6rem,2.4rem); color:#fff; margin:0 0 16px; letter-spacing:-.02em; }
.cqx-cta__sub{ color:rgba(255,255,255,.85); line-height:1.7; margin:0 0 34px; }
.cqx-cta__btns{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:16px; }
.cqx-cta__btn{ display:inline-flex; align-items:center; gap:10px; font-family:var(--cq-font-head); font-weight:700; font-size:.95rem; padding:15px 26px; border-radius:12px; text-decoration:none; transition:transform .3s var(--cq-ease), box-shadow .3s var(--cq-ease); }
.cqx-cta__btn svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; }
.cqx-cta__btn--white{ background:#fff; color:var(--cq-blue); box-shadow:0 10px 24px rgba(0,0,0,.16); }
.cqx-cta__btn--white:hover{ transform:translateY(-2px); color:var(--cq-blue); box-shadow:0 16px 32px rgba(0,0,0,.22); }
.cqx-cta__btn--outline{ background:rgba(255,255,255,.08); color:#fff; border:1.5px solid rgba(255,255,255,.45); }
.cqx-cta__btn--outline:hover{ background:rgba(255,255,255,.18); transform:translateY(-2px); color:#fff; }

@media(max-width:640px){
  .cqx-cta{ padding:70px 16px; }
  .cqx-cta__banner{ padding:44px 24px; border-radius:24px; }
  .cqx-cta__btns{ flex-direction:column; align-items:stretch; }
  .cqx-cta__btn{ justify-content:center; width:100%; }
}

/* --- Final SVG size safety net (covers anything missed above) --- */
.cqx-glass-micon svg { width:24px; height:24px; stroke:currentColor; stroke-width:2; fill:none; flex-shrink:0; }
.cqx-tab-list svg { width:20px; height:20px; stroke:var(--cq-teal); stroke-width:2; fill:none; flex-shrink:0; margin-top:2px; }
.cqx-hex-icon svg { width:32px; height:32px; stroke:currentColor; stroke-width:1.5; fill:none; flex-shrink:0; }
.cqx-stats__playring svg { width:24px; height:24px; fill:#fff; flex-shrink:0; }
.cqx-matrix-table svg { fill:none; }
svg { max-width:100%; max-height:100%; }

/* ==========================================================================
   12. ISOMETRIC ZIG-ZAG TIMELINE
   ========================================================================== */
.cqx-iso-timeline {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  padding-bottom: 50px; /* Space for bottom text */
}

.cqx-iso-line-svg {
  display: block;
  width: 100%;
  height: auto;
}

.cqx-iso-item {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  animation: floatIso 4s ease-in-out infinite;
}

@keyframes floatIso {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

.cqx-iso-num {
  position: absolute;
  top: -25px;
  left: -15px;
  font-family: var(--cq-font-head);
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  z-index: 10;
  text-shadow: 3px 3px 0 #fff, -1px -1px 0 #fff;
}

.cqx-iso-node {
  position: relative;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
  margin-left: 30px; /* offset to align nicely with text below */
}

.cqx-iso-shape {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.4s var(--cq-ease);
}

.cqx-iso-node.glow-teal .cqx-iso-shape {
  box-shadow: 
    -1px 1px 0 #fcfcfc,
    -2px 2px 0 #f5f5f5,
    -3px 3px 0 #efefef,
    -4px 4px 0 #e9e9e9,
    -20px 25px 35px rgba(0, 156, 141, 0.4);
}
.cqx-iso-node.glow-blue .cqx-iso-shape {
  box-shadow: 
    -1px 1px 0 #fcfcfc,
    -2px 2px 0 #f5f5f5,
    -3px 3px 0 #efefef,
    -4px 4px 0 #e9e9e9,
    -20px 25px 35px rgba(0, 77, 136, 0.35);
}

.cqx-iso-icon {
  width: 30px;
  height: 30px;
  color: var(--cq-ink);
  transform: translateZ(15px); /* Lift icon in 3D space */
}

.cqx-iso-content {
  margin-top: 35px;
  width: 220px;
  text-align: left;
}

.cqx-iso-title {
  font-family: var(--cq-font-head);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cqx-iso-desc {
  font-size: 0.85rem;
  color: var(--cq-body);
  line-height: 1.5;
  margin: 0;
}

/* Hover effects */
.cqx-iso-item:hover .cqx-iso-shape {
  transform: translateZ(10px);
}
.cqx-iso-item:hover .glow-teal .cqx-iso-shape {
  box-shadow: 
    -1px 1px 0 #fcfcfc,
    -2px 2px 0 #f5f5f5,
    -3px 3px 0 #efefef,
    -4px 4px 0 #e9e9e9,
    -25px 30px 45px rgba(0, 156, 141, 0.6);
}
.cqx-iso-item:hover .glow-blue .cqx-iso-shape {
  box-shadow: 
    -1px 1px 0 #fcfcfc,
    -2px 2px 0 #f5f5f5,
    -3px 3px 0 #efefef,
    -4px 4px 0 #e9e9e9,
    -25px 30px 45px rgba(0, 77, 136, 0.55);
}

@media (max-width: 900px) {
  .cqx-iso-timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    margin: 40px auto;
  }
  .cqx-iso-line-svg {
    display: none;
  }
  .cqx-iso-item {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    flex-direction: row;
    align-items: flex-start;
    animation: none;
    margin-bottom: 40px;
  }
  .cqx-iso-item:last-child {
    margin-bottom: 0;
  }
  .cqx-iso-num {
    position: relative;
    top: 0;
    left: 0;
    margin-right: 15px;
    font-size: 1.8rem;
    text-shadow: none;
    margin-top: -5px;
  }
  .cqx-iso-node {
    margin-left: 0;
    margin-right: 25px;
    transform: rotateX(55deg) rotateZ(-45deg);
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .cqx-iso-icon {
    width: 24px;
    height: 24px;
  }
  .cqx-iso-content {
    margin-top: 0;
    width: 100%;
  }
  .cqx-iso-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 85px;
    width: 6px;
    background: #f0f0f0;
    border-radius: 4px;
  }
}

/* ==========================================================================
   PREMIUM REDESIGN CSS ADDITIONS (V2)
   ========================================================================== */

/* BACKGROUNDS */
.bg-white { background-color: #FFFFFF; }
.bg-surface { background-color: #F5F7F9; }
.bg-surface-2 { background-color: #F6FAF9; }

/* 1. GLASSMORPHISM BENTO GRID (.cqx-bento-glass) */
.cqx-bento-glass {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cqx-glass-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid var(--cq-line-light);
  box-shadow: var(--cq-shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cqx-glass-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0,151,157,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.cqx-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cq-shadow-md);
  border-color: rgba(0, 151, 157, 0.2);
}
.cqx-glass-card:hover .cqx-glass-sheen {
  opacity: 1;
}
.cqx-glass-icon {
  width: 48px; height: 48px;
  background: rgba(0,78,138,0.03);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,78,138,0.05);
}
.cqx-glass-icon svg { width: 22px; height: 22px; stroke: var(--cq-teal); stroke-width: 1.5px; fill: none; }
.cqx-glass-title { font-size: 1.2rem; color: var(--cq-blue); margin-bottom: 10px; font-weight: 700; }
.cqx-glass-desc { font-size: 0.92rem; color: var(--cq-body); line-height: 1.6; }
@media (max-width: 991px) {
  .cqx-bento-glass { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .cqx-bento-glass { grid-template-columns: 1fr; }
}

/* 2. AUTO-PLAY CAROUSEL (.cqx-carousel-section) */
/* Kept exactly as it was, since it wasn't mentioned for overhaul */
.cqx-carousel-wrapper {
  position: relative;
  border-radius: var(--cq-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,77,136,0.06);
  margin-top: 40px;
  background: var(--cq-white);
}
.cqx-carousel-track { display: flex; position: relative; height: 500px; }
.cqx-carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(0.98); display: flex; pointer-events: none;
}
.cqx-carousel-slide.active { opacity: 1; transform: scale(1); z-index: 2; pointer-events: auto; }
.cqx-carousel-image { width: 50%; position: relative; }
.cqx-carousel-image img { width: 100%; height: 100%; object-fit: cover; }
.cqx-carousel-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,40,80,0.3), transparent); }
.cqx-carousel-content { width: 50%; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.cqx-carousel-badge {
  display: inline-block; padding: 6px 16px; background: rgba(0,156,141,0.1); color: var(--cq-teal);
  border-radius: 20px; font-size: 0.8rem; font-weight: 700; align-self: flex-start; margin-bottom: 24px;
}
.cqx-carousel-title { font-size: 2.2rem; color: var(--cq-blue); margin-bottom: 20px; font-weight: 800; }
.cqx-carousel-desc { font-size: 1.05rem; color: var(--cq-muted); margin-bottom: 30px; line-height: 1.7; max-width: 90%; }
.cqx-carousel-list { list-style: none; padding: 0; margin: 0; }
.cqx-carousel-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; font-weight: 600; color: var(--cq-ink); }
.cqx-carousel-list svg { width: 20px; height: 20px; stroke: var(--cq-teal); stroke-width: 2.5; fill: none; }
.cqx-carousel-controls { position: absolute; bottom: 40px; right: 60px; display: flex; align-items: center; gap: 20px; z-index: 10; }
.cqx-carousel-prev, .cqx-carousel-next {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0,77,136,0.1);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.cqx-carousel-prev:hover, .cqx-carousel-next:hover { background: var(--cq-teal); border-color: var(--cq-teal); transform: translateY(-2px); }
.cqx-carousel-prev:hover svg, .cqx-carousel-next:hover svg { stroke: white; }
.cqx-carousel-prev svg, .cqx-carousel-next svg { width: 20px; height: 20px; stroke: var(--cq-blue); fill: none; stroke-width: 2; transition: stroke 0.3s ease; }
.cqx-carousel-indicators { display: flex; gap: 10px; }
.cqx-carousel-indicator { width: 40px; height: 4px; background: rgba(0,77,136,0.15); border-radius: 2px; overflow: hidden; cursor: pointer; }
.cqx-indicator-progress { height: 100%; width: 0%; background: var(--cq-teal); transition: width 0.1s linear; }
@media (max-width: 900px) {
  .cqx-carousel-track { height: auto; flex-direction: column; }
  .cqx-carousel-slide { position: relative; opacity: 1; transform: scale(1); display: none; flex-direction: column; }
  .cqx-carousel-slide.active { display: flex; }
  .cqx-carousel-image, .cqx-carousel-content { width: 100%; }
  .cqx-carousel-image { height: 250px; }
  .cqx-carousel-content { padding: 40px 30px 100px 30px; }
  .cqx-carousel-controls { right: 30px; bottom: 30px; }
}

/* 3. INTERACTIVE INFOGRAPHIC DASHBOARD (.cqx-dashboard-grid) */
.cqx-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.cqx-widget {
  background: #FFFFFF;
  border-radius: var(--cq-radius);
  padding: 34px 40px;
  border: 1px solid var(--cq-line-light);
  box-shadow: var(--cq-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cqx-widget:hover {
  transform: translateY(-4px);
  box-shadow: var(--cq-shadow-md);
  border-color: rgba(0, 156, 141, 0.2);
}
.cqx-widget-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  flex: 1.2;
  z-index: 1;
}
.cqx-widget-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(0, 156, 141, 0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--cq-teal);
  flex-shrink: 0;
}
.cqx-widget-icon svg {
  width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8;
}
.cqx-widget-title h4 { font-size: 1.25rem; color: var(--cq-blue); margin: 0 0 4px 0; font-weight: 700; }
.cqx-widget-title p { font-size: 0.85rem; color: var(--cq-teal); margin: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.cqx-widget-body {
  flex: 1;
  background: var(--cq-surface-2);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--cq-line-light);
  z-index: 1;
}
.cqx-widget-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cqx-widget-body li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--cq-body); font-weight: 500; }
.cqx-widget-body .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0, 156, 141, 0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cqx-widget-body .check::after {
  content: ''; width: 5px; height: 8px; border-bottom: 2px solid var(--cq-teal); border-right: 2px solid var(--cq-teal);
  transform: rotate(45deg); margin-top: -2px;
}
.cqx-widget-bg-icon {
  position: absolute;
  left: 20px; bottom: -30px;
  width: 130px; height: 130px;
  fill: rgba(0, 156, 141, 0.015);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cqx-widget { padding: 30px 24px; }
}
@media (max-width: 768px) {
  .cqx-dashboard-grid { grid-template-columns: 1fr; gap: 20px; }
  .cqx-widget { flex-direction: column; align-items: stretch; gap: 20px; }
  .cqx-widget-header { flex: none; }
  .cqx-widget-body { flex: none; width: 100%; }
}


/* 4. LINEAR WORKFLOW TIMELINE (.cqx-linear-timeline) */
.cqx-linear-timeline {
  position: relative;
  margin-top: 80px;
  padding-bottom: 60px;
}
.cqx-timeline-track {
  position: absolute;
  top: 18px; left: 0; width: 100%; height: 4px;
  background: rgba(0,77,136,0.06);
  border-radius: 2px;
  z-index: 0;
}
.cqx-timeline-progress {
  position: absolute;
  top: 0; left: 0; height: 100%; width: 0%; /* JS will control this */
  background: var(--cq-teal);
  border-radius: 2px;
  transition: width 1s ease-in-out;
}
.cqx-linear-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cqx-linear-node {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 180px; position: relative;
  cursor: default;
}
.cqx-lnode-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: #FFFFFF; border: 4px solid rgba(0,77,136,0.1);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.cqx-lnode-dot::after {
  content: ''; position: absolute; inset: 6px; border-radius: 50%; background: var(--cq-teal); opacity: 0; transition: opacity 0.3s ease;
}
.cqx-linear-node:hover .cqx-lnode-dot {
  border-color: rgba(0,156,141,0.2); transform: scale(1.1);
}
.cqx-linear-node:hover .cqx-lnode-dot::after { opacity: 1; }
.cqx-linear-node.active .cqx-lnode-dot { border-color: rgba(0,156,141,0.4); }
.cqx-linear-node.active .cqx-lnode-dot::after { opacity: 1; }

.cqx-lnode-num {
  font-size: 0.85rem; font-weight: 700; color: var(--cq-teal); display: block; margin-bottom: 8px; letter-spacing: 1px;
}
.cqx-lnode-content h4 { font-size: 1.15rem; color: var(--cq-blue); margin-bottom: 6px; transition: color 0.3s ease; }
.cqx-lnode-content p { font-size: 0.9rem; color: var(--cq-muted); margin: 0; }
.cqx-linear-node:hover .cqx-lnode-content h4, .cqx-linear-node.active .cqx-lnode-content h4 { color: var(--cq-teal); }
@media (max-width: 900px) {
  .cqx-linear-nodes { flex-direction: column; gap: 40px; }
  .cqx-timeline-track { left: 18px; top: 0; width: 4px; height: 100%; }
  .cqx-timeline-progress { width: 100%; height: 0%; transition: height 1s ease-in-out; }
  .cqx-linear-node { flex-direction: row; text-align: left; width: 100%; }
  .cqx-lnode-dot { margin-bottom: 0; margin-right: 30px; flex-shrink: 0; }
  .cqx-lnode-content { padding-top: 4px; }
}


/* 5. MASONRY GRID (.cqx-masonry-container) */
.cqx-masonry-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
  margin-top: 50px;
}
.cqx-masonry-item {
  background: #FFFFFF;
  border-radius: var(--cq-radius);
  padding: 32px;
  border: 1px solid var(--cq-line-light);
  box-shadow: var(--cq-shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.cqx-masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--cq-shadow-md);
  border-color: rgba(0, 151, 157, 0.2);
}
.cqx-masonry-icon {
  width: 52px; height: 52px; background: rgba(0,78,138,0.03); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 30px;
  border: 1px solid rgba(0,78,138,0.05);
}
.cqx-masonry-icon svg { width: 24px; height: 24px; stroke: var(--cq-teal); stroke-width: 1.5; fill: none; }
.cqx-masonry-item h4 { font-size: 1.3rem; color: var(--cq-blue); margin-bottom: 16px; font-weight: 700; }
.cqx-masonry-item p { font-size: 0.95rem; color: var(--cq-body); line-height: 1.7; margin: 0; }
.cqx-masonry-item.tall { grid-column: span 1; grid-row: span 2; }
.cqx-masonry-item.wide { grid-column: span 2; grid-row: span 1; }
.cqx-masonry-item.box { grid-column: span 1; grid-row: span 1; }
.cqx-masonry-item.highlight {
  background: linear-gradient(135deg, rgba(0,151,157,0.03), rgba(0,78,138,0.03));
  position: relative;
  overflow: hidden;
}
.cqx-masonry-border-glow {
  position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--cq-teal), var(--cq-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.text-gradient {
  background: linear-gradient(90deg, var(--cq-blue), var(--cq-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 900px) {
  .cqx-masonry-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cqx-masonry-item.tall, .cqx-masonry-item.wide, .cqx-masonry-item.box { grid-column: span 1; grid-row: span 1; }
}

/* TIMELINE WEEKS HIGHLIGHT */
.cqx-lnode-weeks {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cq-teal);
  background: var(--cq-grad-soft);
  border: 1px solid var(--cq-line);
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 8px;
  box-shadow: var(--cq-shadow-sm);
  transition: all 0.3s ease;
}
.cqx-linear-node:hover .cqx-lnode-weeks {
  background: var(--cq-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--cq-shadow-glow);
}

/* FLOATING CHATBOT WIDGET STYLES */
.cqv-chatbot {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
  font-family: var(--cq-font-body);
}

.cqv-chatbot-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cq-grad);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,78,138,0.3);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cqv-chatbot-bubble:hover {
  transform: scale(1.08);
}

.cqv-chatbot-bubble svg {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}

.cqv-chatbot-bubble .close-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.cqv-chatbot-bubble.open .chat-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.cqv-chatbot-bubble.open .close-icon {
  opacity: 1;
  transform: rotate(0);
}

.cqv-chatbot-notify {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff5a5f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,95,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,90,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,95,0); }
}

.cqv-chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  max-width: calc(100vw - 60px);
  height: 480px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cqv-chatbot-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cqv-chatbot-header {
  background: var(--cq-grad);
  padding: 16px 20px;
  color: #ffffff;
}

.cqv-chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cqv-chatbot-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cq-font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.cqv-chatbot-header-info h4 {
  margin: 0;
  font-family: var(--cq-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.cqv-chatbot-status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ffeb;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #00ffeb;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cqv-chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f7f9fc;
}

.chat-message {
  max-width: 82%;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.chat-message.bot {
  background: #ffffff;
  color: var(--cq-body);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--cq-line-light);
}

.chat-message.user {
  background: var(--cq-grad);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-message p {
  margin: 0;
}

.cqv-chatbot-quickreplies {
  padding: 12px 16px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--cq-line-light);
}

.quick-reply-btn {
  background: rgba(0,78,138,0.05);
  border: 1px solid rgba(0,78,138,0.1);
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--cq-blue);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.quick-reply-btn:hover {
  background: var(--cq-grad);
  border-color: transparent;
  color: #ffffff;
}

.quick-reply-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cqv-chatbot-footer {
  padding: 8px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--cq-line-light);
}

.cqv-chatbot-footer p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--cq-muted);
}

/* Typing Indicator Animation */
.typing-indicator span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cq-muted);
  animation: typing 1s infinite;
  margin: 0 1.5px;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media(max-width: 480px) {
  .cqv-chatbot {
    bottom: 90px;
    right: 20px;
  }
  .cqv-chatbot-window {
    width: calc(100vw - 40px);
    height: 420px;
  }
}


/* Extracted Curved Gallery CSS */
.curved-gallery-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1200px;
      padding: 60px 0;
      gap: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .curved-gallery-wrapper::-webkit-scrollbar { display: none; }
    
    .cg-card {
      position: relative;
      width: 180px;
      height: 320px;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform-style: preserve-3d;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(0,77,136,0.15);
      background: #000;
    }
    
    .cg-card:nth-child(1) { transform: rotateY(25deg) scale(0.9) translateZ(-40px); }
    .cg-card:nth-child(2) { transform: rotateY(15deg) scale(0.95) translateZ(-20px); }
    .cg-card:nth-child(3) { transform: rotateY(5deg) scale(1) translateZ(0); }
    .cg-card:nth-child(4) { transform: rotateY(-5deg) scale(1) translateZ(0); }
    .cg-card:nth-child(5) { transform: rotateY(-15deg) scale(0.95) translateZ(-20px); }
    .cg-card:nth-child(6) { transform: rotateY(-25deg) scale(0.9) translateZ(-40px); }
    
    .curved-gallery-wrapper:hover .cg-card {
      transform: rotateY(0) scale(0.95) translateZ(0);
      opacity: 0.5;
    }
    
    .curved-gallery-wrapper .cg-card:hover {
      transform: rotateY(0) scale(1.05) translateZ(20px) !important;
      opacity: 1 !important;
      z-index: 10;
      box-shadow: 0 20px 50px rgba(0,151,157,0.3);
    }
    
    .cg-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.6s ease;
      filter: brightness(0.65);
    }
    
    .cg-card:hover .cg-card-img {
      transform: scale(1.15);
      filter: brightness(0.25);
    }
    
    .cg-card-content {
      position: absolute;
      inset: 0;
      padding: 24px 16px 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      text-align: center;
      transition: all 0.5s ease;
    }
    
    .cg-card-content h3 {
      font-family: 'Plus Jakarta Sans', sans-serif !important;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
      transition: transform 0.4s ease;
      transform: translateY(10px);
    }
    
    .cg-card:hover .cg-card-content h3 {
      transform: translateY(0);
    }
    
    .cg-card-content p {
      font-family: 'Plus Jakarta Sans', sans-serif !important;
      color: rgba(255,255,255,0.95);
      font-size: 13.5px;
      line-height: 1.5;
      margin: 0;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(15px);
      transition: all 0.4s ease;
    }
    
    .cg-card:hover .cg-card-content p {
      opacity: 1;
      max-height: 400px;
      transform: translateY(0);
      margin-top: 12px;
    }
    
    @media (max-width: 991px) {
      .curved-gallery-wrapper {
        perspective: none;
        flex-wrap: wrap;
        gap: 20px;
      }
      .cg-card {
        width: calc(33.333% - 14px);
        transform: none !important;
      }
      .curved-gallery-wrapper:hover .cg-card {
        transform: none !important;
        opacity: 1;
      }
      .curved-gallery-wrapper .cg-card:hover {
        transform: translateY(-5px) !important;
      }
    }
    @media (max-width: 767px) {
      .cg-card { width: calc(50% - 10px); }
    }
    @media (max-width: 480px) {
      .cg-card { width: 100%; height: 260px; }
    }