/* ═══════════════════════════════════════════════════════════════════
   QC WEBWORKS — site.css v4.0
   Single source of truth. All design tokens live here.
   No other file should redefine these variables.
   ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand purples */
  --p700: #4a0e8a;
  --p600: #5a14a0;
  --p500: #7c3aed;
  --p400: #9d3df5;
  --p300: #b266ff;
  --p200: #d4a8ff;
  --p100: #f0e3ff;
  /* Accent */
  --cyan:  #1ee6d6;
  --gold:  #f6b73c;
  /* Dark surfaces */
  --char:  #0d0d12;
  --char2: #13131a;
  --char3: #1a1a24;
  --char4: #22222e;
  /* Text */
  --ow:   #f2f0ed;
  --wg:   #c8c5bf;
  --wg2:  #8a8680;
  --wg3:  #5a5652;
  /* Utility */
  --border:       rgba(255,255,255,0.06);
  --border-md:    rgba(255,255,255,0.10);
  --border-hover: rgba(255,255,255,0.16);
  --surface:      rgba(255,255,255,0.03);
  --surface-2:    rgba(255,255,255,0.055);
  --glow:         rgba(124,58,237,0.28);
  --glow-lg:      rgba(124,58,237,0.14);
  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', monospace;
  /* Layout */
  --max-w:     1280px;
  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --tr:        0.2s ease;
  --tr-spring: 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── BASE ────────────────────────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--char);
  color: var(--wg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ow);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
}
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 12px; }
h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 18px;
}
h5 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ow); font-weight: 700; }

/* Gradient accent text */
em, .accent, h1 em, h2 em, .grad {
  font-style: normal;
  background: linear-gradient(135deg, var(--p300) 0%, var(--p400) 60%, #e0aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.qcw-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.wp-site-blocks { padding: 0 !important; margin: 0 !important; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.qcw-btn, .btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: transform var(--tr-spring), box-shadow var(--tr-spring), background var(--tr);
  background: linear-gradient(135deg, var(--p500), var(--p600));
  color: #fff !important;
  box-shadow: 0 4px 24px var(--glow);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.qcw-btn:hover, .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 40px var(--glow);
  opacity: 1;
}
.qcw-ghost, .btn-outline {
  background: transparent;
  color: var(--wg) !important;
  border: 1px solid var(--border-hover);
  box-shadow: none;
}
.qcw-ghost:hover, .btn-outline:hover {
  border-color: var(--border-md);
  color: var(--ow) !important;
  box-shadow: none;
  transform: translateY(-2px);
}
.btn-white { background: var(--ow); color: var(--char) !important; box-shadow: none; }
.btn-white:hover { background: #fff; transform: translateY(-2px); }

/* ── KICKER LABEL ────────────────────────────────────────────────── */
.qcw-kicker, .label, .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.qcw-kicker::before, .label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--p400), transparent);
  flex-shrink: 0;
}

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.site-nav, .qcw-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,18,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  animation: nav-in 0.5s ease-out both;
}
.nav-inner, .qcw-header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo, .qcw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ow) !important;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav-logo-accent, .nav-logo span, .qcw-logo span { color: var(--p300); }
.nav-links, .qcw-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a, .qcw-menu a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wg2) !important;
  transition: color var(--tr);
  text-decoration: none !important;
}
.nav-links a:hover, .qcw-menu a:hover { color: var(--ow) !important; opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ow);
  border-radius: 2px;
  transition: all var(--tr);
}
.mobile-menu {
  display: none;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--char2);
}
.mobile-menu ul { list-style: none; margin-bottom: 20px; }
.mobile-menu ul li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu ul li a { font-size: 1rem; font-weight: 500; color: var(--wg) !important; }
.mobile-menu.is-open { display: block; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; margin-left: 4px; opacity: 0.4; transition: transform 0.2s ease; display: inline-block; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 420px;
  background: var(--char3);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1001;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background var(--tr);
}
.nav-dropdown-item:hover { background: var(--surface-2); }
.nav-dropdown-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ow) !important;
}
.nav-dropdown-item span {
  font-size: 0.78rem;
  color: var(--wg2) !important;
}
.nav-dropdown-all {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p300) !important;
}
.nav-dropdown-all:hover { color: var(--p200) !important; }

/* Mobile accordion */
.mobile-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-arrow { font-size: 0.7rem; transition: transform 0.25s ease; opacity: 0.4; }
.mobile-accordion.is-open .mobile-arrow { transform: rotate(180deg); }
.mobile-accordion-list { display: none; padding-left: 16px; margin-top: 8px; list-style: none; }
.mobile-accordion.is-open .mobile-accordion-list { display: block; }
.mobile-accordion-list li { padding: 8px 0 !important; border-bottom: 1px solid var(--border) !important; }
.mobile-accordion-list a { font-size: 0.9rem !important; color: var(--wg) !important; }
.mobile-accordion-list a:hover { color: var(--p300) !important; }

@media (max-width: 1100px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .qcw-menu { display: none; }
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer, .qcw-footer {
  background: var(--char2);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.footer-grid, .qcw-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 0.88rem; color: var(--wg2); line-height: 1.7; max-width: 260px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.social-link:hover { background: var(--p500); border-color: var(--p500); opacity: 1; }
.social-icon { display: block; width: 15px; height: 15px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.social-icon[data-icon="li"] { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23c8c5bf' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="fb"] { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23c8c5bf' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E"); }
.social-link:hover .social-icon[data-icon="li"] { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E"); }
.social-link:hover .social-icon[data-icon="fb"] { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E"); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ow);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--wg2); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--ow); opacity: 1; }
.footer-contact .footer-phone,
.footer-contact .footer-email { display: block; font-size: 0.86rem; color: var(--p300); margin-bottom: 6px; }
.footer-contact .footer-phone:hover,
.footer-contact .footer-email:hover { color: var(--p200); opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--wg3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--wg3); }
.footer-legal a:hover { color: var(--wg); }
/* Old footer columns fallback */
.qcw-footer h4 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ow); margin-bottom: 14px; }
.qcw-footer a { display: block; color: var(--wg2) !important; text-decoration: none !important; margin: 8px 0; font-size: 0.86rem; }
.qcw-footer a:hover { color: var(--ow) !important; }

@media (max-width: 960px) { .footer-grid, .qcw-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid, .qcw-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ── QCW SECTIONS ────────────────────────────────────────────────── */
.qcw-section { padding: 100px 0; }
.qcw-section.qcw-dark {
  background: var(--char2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.qcw-section.qcw-darker { background: var(--char3); }

/* Section head pattern */
.qcw-head {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.qcw-head > p { color: var(--wg2); font-size: 1rem; line-height: 1.8; }
@media (max-width: 860px) { .qcw-head { grid-template-columns: 1fr; gap: 16px; } }

/* ── QCW GRIDS ───────────────────────────────────────────────────── */
.qcw-grid { display: grid; gap: 20px; }
.qcw-services { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.qcw-services > div, .qcw-services > article {
  background: var(--char2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--tr-spring), transform var(--tr-spring), box-shadow var(--tr-spring);
}
.qcw-services > div:hover, .qcw-services > article:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.1);
}
.qcw-services > div > small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 14px;
  display: block;
}
.qcw-services > div > strong, .qcw-services > article > h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ow);
  margin-bottom: 12px;
  display: block;
}
.qcw-services > div > p { color: var(--wg); font-size: 0.9rem; line-height: 1.72; margin-bottom: 20px; }
.qcw-services > div > a, .qcw-services > article > a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.qcw-services > div > a:hover { gap: 12px; color: var(--p400); }

/* Industries grid */
.qcw-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qcw-industries > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wg) !important;
  transition: all 0.2s ease;
}
.qcw-industries > a:hover {
  background: var(--surface-2);
  border-color: var(--border-md);
  color: var(--ow) !important;
  transform: translateY(-1px);
}

/* Split layout */
.qcw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .qcw-split { grid-template-columns: 1fr; gap: 40px; } }

/* Steps */
.qcw-steps { display: flex; flex-direction: column; gap: 0; }
.qcw-steps > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.qcw-steps > div:last-child { border-bottom: none; }
.qcw-steps > div > b, .qcw-steps > div > strong {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--p300);
  padding-top: 3px;
  font-weight: 400;
}
.qcw-steps > div > h3 { font-size: 1.05rem; font-weight: 700; color: var(--ow); margin-bottom: 6px; }
.qcw-steps > div > p { color: var(--wg); font-size: 0.9rem; line-height: 1.72; }
.qcw-steps > div > div > h3 { font-size: 1.05rem; font-weight: 700; color: var(--ow); margin-bottom: 6px; }
.qcw-steps > div > div > p { color: var(--wg); font-size: 0.9rem; line-height: 1.72; }

/* Offer card */
.qcw-offer { padding: 100px 0; background: var(--char); }
.qcw-offer-card {
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  gap: 40px;
  align-items: center;
  background: var(--char2);
  border: 1px solid var(--border-md);
  border-radius: 32px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.qcw-offer-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.09), transparent 60%);
  pointer-events: none;
}
@media (max-width: 768px) { .qcw-offer-card { grid-template-columns: 1fr; padding: 32px; } }

/* Price */
.qcw-price {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--ow);
  line-height: 1;
  margin-bottom: 20px;
}
.qcw-price span { font-size: 1.1rem; color: var(--wg2); font-weight: 400; letter-spacing: 0; }

/* Final CTA */
.qcw-final {
  text-align: center;
  padding: 120px 0;
  background: var(--char);
  position: relative;
  overflow: hidden;
}
.qcw-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.07), transparent 60%);
  pointer-events: none;
}
.qcw-final h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; position: relative; }
.qcw-final p { max-width: 540px; margin: 0 auto 36px; color: var(--wg); font-size: 1.05rem; line-height: 1.78; position: relative; }

/* Actions group */
.qcw-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Proof bar */
.qcw-proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.qcw-proof > span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--wg2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.qcw-proof > span > strong {
  color: var(--ow);
  font-size: 1.05rem;
  font-weight: 900;
  font-family: var(--font-head);
  letter-spacing: -0.04em;
}

/* ── HOMEPAGE HERO (qcw-hero) ────────────────────────────────────── */
.qcw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--char);
  overflow: hidden;
}
.qcw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}
.qcw-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 700px at 80% -10%, rgba(124,58,237,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 600px 500px at -5% 70%, rgba(74,14,138,0.07) 0%, transparent 50%);
}
.qcw-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.qcw-hero-content h1 { margin-bottom: 22px; }
.qcw-hero-content .qcw-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--wg);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 34px;
}

/* Stage card (hero visual) */
.qcw-stage {
  position: relative;
  min-height: 420px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  overflow: hidden;
}
.qcw-stage::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--p300), var(--p500), var(--p700), var(--cyan), var(--p300));
  filter: blur(10px);
  animation: qcw-spin 14s linear infinite;
}
.qcw-stage-core {
  position: absolute;
  inset: 116px;
  border-radius: 50%;
  background: var(--char);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--ow);
  line-height: 1.15;
}
.qcw-stage-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  color: var(--char);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  min-width: 100px;
}
.qcw-stage-card b { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; }
.qcw-stage-card small { display: block; color: #5a6072; font-weight: 600; font-size: 0.75rem; margin-top: 2px; }
.qcw-a { left: 18px; top: 28px; }
.qcw-b { right: 18px; top: 130px; }
.qcw-c { left: 36px; bottom: 36px; }

/* ── CREATIVE UTILITIES ──────────────────────────────────────────── */

/* Scroll reveal */
.qcw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.qcw-reveal.is-visible { opacity: 1; transform: translateY(0); }
.qcw-reveal[data-delay="1"] { transition-delay: 0.1s; }
.qcw-reveal[data-delay="2"] { transition-delay: 0.2s; }
.qcw-reveal[data-delay="3"] { transition-delay: 0.3s; }
.qcw-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Stat numbers */
.qcw-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--p300), var(--p400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.qcw-stat small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wg2);
}

/* Ticker */
.qcw-ticker-band {
  overflow: hidden;
  background: var(--char2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.qcw-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: qcw-ticker 32s linear infinite;
}
.qcw-ticker-track > span {
  flex-shrink: 0;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wg2);
}
.qcw-ticker-track > span b { color: var(--p300); margin-right: 8px; }

/* Status badge */
.qcw-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p300);
}
.qcw-badge .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--p400);
  animation: qcw-pulse 2.2s ease infinite;
  flex-shrink: 0;
}

/* Card base */
.card-base {
  background: var(--char2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform var(--tr-spring), border-color var(--tr), box-shadow var(--tr-spring);
}
.card-base:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.22);
  box-shadow: 0 16px 48px rgba(124,58,237,0.09);
}

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p300);
  transition: gap 0.2s ease, color 0.2s ease;
}
.arrow-link:hover { gap: 12px; color: var(--p400); }

/* Section divider line */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.2) 40%, rgba(178,102,255,0.35) 50%, rgba(124,58,237,0.2) 60%, transparent);
}

/* Mesh background radial */
.qcw-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(124,58,237,0.055), transparent),
    radial-gradient(ellipse 600px 500px at 85% 75%, rgba(74,14,138,0.04), transparent);
  pointer-events: none;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes nav-in { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes qcw-spin { to { transform: rotate(360deg); } }
@keyframes qcw-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes qcw-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }
@keyframes qcw-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes qcw-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── SCROLLBAR ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--char); }
::-webkit-scrollbar-thumb { background: var(--char4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.35); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .qcw-section { padding: 72px 0; }
  .qcw-hero { padding: 100px 0 60px; min-height: auto; }
  .qcw-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .qcw-stage { min-height: 340px; }
  .qcw-stage-core { inset: 90px; font-size: 1.2rem; }
  .qcw-stage::before { inset: 50px; }
  .qcw-stage-card { position: relative; inset: auto !important; display: inline-block; margin: 12px 10px 0 0; }
  .qcw-services { grid-template-columns: 1fr 1fr; }
  .qcw-offer-card { grid-template-columns: 1fr; }
  .qcw-final { padding: 80px 0; }
}
@media (max-width: 600px) {
  .qcw-wrap, .container { padding: 0 20px; }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
  .qcw-services { grid-template-columns: 1fr; }
  .qcw-proof { gap: 16px; }
  .qcw-price { font-size: 3.5rem; }
  .qcw-actions { flex-direction: column; }
  .qcw-actions .qcw-btn, .qcw-actions .qcw-ghost { width: 100%; justify-content: center; }
}
