/* =============================================================
   Scalivo — scvq-main.css
   Brand prefix: scvq
   Palette: charcoal #111218 bg, amber #D4952A accent, light #F5F4F1
   ============================================================= */

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
  --scvq-bg-dark:        #111218;
  --scvq-bg-dark-alt:    #1A1C24;
  --scvq-bg-light:       #F5F4F1;
  --scvq-bg-cream:       #ECEAE5;
  --scvq-bg-white:       #FFFFFF;

  --scvq-amber:          #D4952A;
  --scvq-amber-light:    #F0AF3F;
  --scvq-amber-muted:    #8C6019;
  --scvq-amber-on-light: #9A6A14;

  --scvq-green:          #2A7D5A;
  --scvq-red:            #B53D3D;

  --scvq-border-dark:    #2E3140;
  --scvq-border-light:   #D8D5CE;

  /* on-dark text */
  --scvq-on-dark-heading: #F5F3EE;
  --scvq-on-dark-body:    #C8C4BC;
  --scvq-on-dark-muted:   #7A7870;

  /* on-light text */
  --scvq-on-light-heading: #111218;
  --scvq-on-light-body:    #3A3830;
  --scvq-on-light-muted:   #6B6860;

  /* on-cream text */
  --scvq-on-cream-heading: #111218;
  --scvq-on-cream-body:    #3A3830;
  --scvq-on-cream-muted:   #7A7870;

  --scvq-container:      1200px;
  --scvq-radius:         4px;
  --scvq-radius-lg:      8px;

  --scvq-section-pad-v:  clamp(64px, 8vw, 112px);
  --scvq-section-pad-h:  clamp(16px, 5vw, 48px);

  --scvq-font-heading:   'DM Serif Display', Georgia, serif;
  --scvq-font-body:      'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --scvq-font-mono:      'IBM Plex Mono', 'Courier New', monospace;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--scvq-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--scvq-on-light-body);
  background: var(--scvq-bg-light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─── Typography Utilities ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--scvq-font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.scvq-label {
  font-family: var(--scvq-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Container ─────────────────────────────────────────────── */
.scvq-container {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

/* ─── Section Backgrounds ───────────────────────────────────── */
.scvq-section--dark     { background: var(--scvq-bg-dark); }
.scvq-section--dark-alt { background: var(--scvq-bg-dark-alt); }
.scvq-section--light    { background: var(--scvq-bg-light); }
.scvq-section--cream    { background: var(--scvq-bg-cream); }
.scvq-section--white    { background: var(--scvq-bg-white); }

.scvq-section {
  padding-block: var(--scvq-section-pad-v);
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.scvq-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.scvq-nav--transparent {
  background: transparent;
}

.scvq-nav--scrolled {
  background: var(--scvq-bg-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Light-top pages: nav starts transparent, but text needs to be visible on light bg */
body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) {
  background: rgba(245, 244, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--scvq-border-light);
}

body.scvq-page--light-top .scvq-nav--scrolled {
  background: var(--scvq-bg-dark);
}

.scvq-nav__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.scvq-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.scvq-nav__logo img {
  height: 32px;
  width: auto;
}

.scvq-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.scvq-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--scvq-on-dark-body);
  transition: color 0.2s;
  border-radius: var(--scvq-radius);
  white-space: nowrap;
}

.scvq-nav__link:hover { color: var(--scvq-on-dark-heading); }

.scvq-nav__link--active {
  color: var(--scvq-amber);
}

.scvq-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--scvq-amber);
  border-radius: 1px;
}

/* Light-top nav link colors when not scrolled */
body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__link {
  color: var(--scvq-on-light-body);
}

body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__link:hover {
  color: var(--scvq-on-light-heading);
}

body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__link--active {
  color: var(--scvq-amber-on-light);
}

body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__link--active::after {
  background: var(--scvq-amber-on-light);
}

/* Scrolled state: always dark background → light text */
.scvq-nav--scrolled .scvq-nav__link {
  color: var(--scvq-on-dark-body);
}

.scvq-nav--scrolled .scvq-nav__link:hover {
  color: var(--scvq-on-dark-heading);
}

.scvq-nav--scrolled .scvq-nav__link--active {
  color: var(--scvq-amber);
}

.scvq-nav--scrolled .scvq-nav__link--active::after {
  background: var(--scvq-amber);
}

/* Dropdown */
.scvq-nav__item { position: relative; }

.scvq-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--scvq-bg-dark-alt);
  border: 1px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius-lg);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(17,18,24,0.4);
}

.scvq-nav__item:hover .scvq-nav__dropdown,
.scvq-nav__item:focus-within .scvq-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scvq-nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--scvq-on-dark-body);
  transition: color 0.15s, background 0.15s;
}

.scvq-nav__dropdown-item:hover {
  color: var(--scvq-amber);
  background: rgba(212, 149, 42, 0.06);
}

/* Nav actions */
.scvq-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.scvq-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.scvq-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--scvq-on-dark-heading);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

/* light-top page hamburger */
body.scvq-page--light-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__hamburger span {
  background: var(--scvq-on-light-heading);
}

.scvq-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.scvq-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.scvq-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.scvq-nav__mobile {
  display: none;
  background: var(--scvq-bg-dark);
  border-top: 1px solid var(--scvq-border-dark);
  padding: 16px var(--scvq-section-pad-h) 24px;
}

.scvq-nav__mobile.is-open { display: block; }

.scvq-nav__mobile-links {
  list-style: none;
}

.scvq-nav__mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--scvq-on-dark-body);
  border-bottom: 1px solid var(--scvq-border-dark);
  transition: color 0.2s;
}

.scvq-nav__mobile-link:hover { color: var(--scvq-amber); }

.scvq-nav__mobile-submenu {
  list-style: none;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
}

.scvq-nav__mobile-submenu-link {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--scvq-on-dark-muted);
  transition: color 0.2s;
}

.scvq-nav__mobile-submenu-link:hover { color: var(--scvq-amber); }

.scvq-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.scvq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--scvq-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--scvq-radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.scvq-btn:hover { transform: translateY(-1px); }
.scvq-btn:active { transform: translateY(0); }

/* Primary (amber on dark) */
.scvq-btn--primary {
  background: var(--scvq-amber);
  color: #111218;
  border-color: var(--scvq-amber);
}

.scvq-btn--primary:hover {
  background: var(--scvq-amber-light);
  border-color: var(--scvq-amber-light);
  color: #111218;
}

/* Outline on dark */
.scvq-btn--outline-light {
  background: transparent;
  color: var(--scvq-on-dark-heading);
  border-color: var(--scvq-border-dark);
}

.scvq-btn--outline-light:hover {
  border-color: var(--scvq-on-dark-muted);
  color: var(--scvq-on-dark-heading);
}

/* Ghost on dark */
.scvq-btn--ghost-dark {
  background: transparent;
  color: var(--scvq-on-dark-body);
  border-color: transparent;
}

.scvq-btn--ghost-dark:hover {
  color: var(--scvq-on-dark-heading);
  background: rgba(255,255,255,0.06);
}

/* Outline dark (on light sections) */
.scvq-btn--outline-dark {
  background: transparent;
  color: var(--scvq-on-light-heading);
  border-color: var(--scvq-border-light);
}

.scvq-btn--outline-dark:hover {
  border-color: var(--scvq-on-light-muted);
  color: var(--scvq-on-light-heading);
}

/* Text link amber */
.scvq-btn--text-amber {
  background: transparent;
  color: var(--scvq-amber-on-light);
  border-color: transparent;
  padding-inline: 0;
}

.scvq-btn--text-amber:hover {
  color: var(--scvq-amber);
}

/* Full width */
.scvq-btn--full { width: 100%; }

/* Large */
.scvq-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ─── HERO — INDEX ────────────────────────────────────────────── */
.scvq-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--scvq-bg-dark);
  overflow: hidden;
  padding-top: 68px;
}

.scvq-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scvq-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scvq-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,18,24,0.9) 0%,
    rgba(17,18,24,0.65) 55%,
    rgba(17,18,24,0.3) 100%
  );
}

.scvq-hero__bg-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--scvq-bg-dark));
  z-index: 1;
}

.scvq-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--scvq-section-pad-h);
  width: 100%;
}

.scvq-hero__eyebrow {
  display: inline-block;
  font-family: var(--scvq-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--scvq-amber);
  margin-bottom: 20px;
}

.scvq-hero__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--scvq-on-dark-heading);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 24px;
}

.scvq-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--scvq-on-dark-body);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.scvq-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ─── COMPACT HERO (sub-pages) ────────────────────────────────── */
.scvq-page-hero {
  background: var(--scvq-bg-dark);
  padding-top: calc(68px + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.scvq-page-hero__ornament {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
}

.scvq-page-hero__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--scvq-on-dark-muted);
  margin-bottom: 20px;
}

.scvq-page-hero__breadcrumb a {
  color: var(--scvq-on-dark-muted);
  transition: color 0.2s;
}

.scvq-page-hero__breadcrumb a:hover { color: var(--scvq-amber); }

.scvq-page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber);
  margin-bottom: 16px;
  display: block;
}

.scvq-page-hero__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--scvq-on-dark-heading);
  max-width: 700px;
  margin-bottom: 20px;
}

.scvq-page-hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--scvq-on-dark-body);
  max-width: 580px;
  line-height: 1.65;
}

/* ─── LIGHT-TOP PAGE HERO (sub-pages on light bg) ───────────── */
.scvq-light-hero {
  background: var(--scvq-bg-light);
  padding-top: calc(68px + 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--scvq-border-light);
  position: relative;
  overflow: hidden;
}

.scvq-light-hero__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 48px;
}

.scvq-light-hero__text {}

.scvq-light-hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 16px;
}

.scvq-light-hero__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 16px;
}

.scvq-light-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--scvq-on-light-body);
  max-width: 540px;
  line-height: 1.65;
}

/* Visual anchor for light-top hero */
.scvq-light-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SIGNAL EXPLAINER ───────────────────────────────────────── */
.scvq-signal {
  background: var(--scvq-bg-dark-alt);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-signal__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-signal__header {
  text-align: center;
  margin-bottom: 64px;
}

.scvq-signal__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber);
  margin-bottom: 12px;
}

.scvq-signal__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--scvq-on-dark-heading);
  margin-bottom: 12px;
}

.scvq-signal__subhead {
  font-size: 1rem;
  color: var(--scvq-on-dark-body);
  max-width: 520px;
  margin: 0 auto;
}

.scvq-signal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scvq-signal__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
}

.scvq-signal__card:hover {
  border-color: rgba(212,149,42,0.3);
  background: rgba(212,149,42,0.04);
}

.scvq-signal__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,149,42,0.12);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--scvq-amber);
}

.scvq-signal__card-title {
  font-family: var(--scvq-font-heading);
  font-size: 1.25rem;
  color: var(--scvq-on-dark-heading);
  margin-bottom: 10px;
}

.scvq-signal__card-desc {
  font-size: 0.9rem;
  color: var(--scvq-on-dark-body);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.scvq-steps {
  background: var(--scvq-bg-light);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-steps__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-steps__header {
  max-width: 560px;
  margin-bottom: 64px;
}

.scvq-steps__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-steps__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--scvq-on-light-heading);
}

.scvq-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
}

.scvq-steps__item {
  padding: 36px 28px;
  border-right: 1px solid var(--scvq-border-light);
  background: var(--scvq-bg-white);
  transition: background 0.2s;
}

.scvq-steps__item:last-child { border-right: none; }

.scvq-steps__item:hover { background: var(--scvq-bg-cream); }

.scvq-steps__num {
  font-family: var(--scvq-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.scvq-steps__step-title {
  font-family: var(--scvq-font-heading);
  font-size: 1.15rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 12px;
}

.scvq-steps__step-desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.6;
}

/* ─── PRODUCT PREVIEW ────────────────────────────────────────── */
.scvq-preview {
  background: var(--scvq-bg-cream);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-preview__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-preview__header {
  max-width: 640px;
  margin-bottom: 48px;
}

.scvq-preview__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-preview__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--scvq-on-cream-heading);
  margin-bottom: 14px;
}

.scvq-preview__subhead {
  font-size: 1rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
}

.scvq-preview__frame {
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17,18,24,0.18);
  border: 1px solid var(--scvq-border-light);
}

.scvq-preview__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.scvq-testimonials {
  background: var(--scvq-bg-light);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-testimonials__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.scvq-testimonials__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-testimonials__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--scvq-on-light-heading);
}

.scvq-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scvq-testimonial {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 36px 32px;
  position: relative;
}

.scvq-testimonial::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--scvq-font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--scvq-amber);
  opacity: 0.25;
  pointer-events: none;
}

.scvq-testimonial__quote {
  font-size: 1rem;
  color: var(--scvq-on-light-body);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 16px;
  font-weight: 300;
  font-style: italic;
}

.scvq-testimonial__meta {}

.scvq-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 2px;
}

.scvq-testimonial__role {
  font-size: 0.85rem;
  color: var(--scvq-on-light-muted);
}

/* ─── INTEGRATION LOGOS STRIP ────────────────────────────────── */
.scvq-integrations-strip {
  background: var(--scvq-bg-cream);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-integrations-strip__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  text-align: center;
}

.scvq-integrations-strip__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-integrations-strip__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--scvq-on-cream-heading);
  margin-bottom: 40px;
}

.scvq-integrations-strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.scvq-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1.5px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--scvq-on-cream-body);
  background: var(--scvq-bg-white);
  transition: border-color 0.2s, color 0.2s;
}

.scvq-badge:hover {
  border-color: var(--scvq-amber);
  color: var(--scvq-amber-on-light);
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.scvq-cta-band {
  background: var(--scvq-bg-dark);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-cta-band__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  text-align: center;
}

.scvq-cta-band__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber);
  margin-bottom: 16px;
}

.scvq-cta-band__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--scvq-on-dark-heading);
  margin-bottom: 16px;
}

.scvq-cta-band__subhead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--scvq-on-dark-body);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.scvq-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ─── SECTION HEADER UTILITY ─────────────────────────────────── */
.scvq-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.scvq-section-header--center {
  text-align: center;
}

.scvq-section-header__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.scvq-section--dark .scvq-section-header__label,
.scvq-section--dark-alt .scvq-section-header__label {
  color: var(--scvq-amber);
}

.scvq-section--light .scvq-section-header__label,
.scvq-section--cream .scvq-section-header__label,
.scvq-section--white .scvq-section-header__label {
  color: var(--scvq-amber-on-light);
}

.scvq-section-header__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.scvq-section--dark .scvq-section-header__title,
.scvq-section--dark-alt .scvq-section-header__title {
  color: var(--scvq-on-dark-heading);
}

.scvq-section--light .scvq-section-header__title {
  color: var(--scvq-on-light-heading);
}

.scvq-section--cream .scvq-section-header__title {
  color: var(--scvq-on-cream-heading);
}

.scvq-section--white .scvq-section-header__title {
  color: var(--scvq-on-light-heading);
}

.scvq-section-header__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 560px;
}

.scvq-section-header--center .scvq-section-header__sub {
  margin: 0 auto;
}

.scvq-section--dark .scvq-section-header__sub,
.scvq-section--dark-alt .scvq-section-header__sub {
  color: var(--scvq-on-dark-body);
}

.scvq-section--light .scvq-section-header__sub {
  color: var(--scvq-on-light-body);
}

.scvq-section--cream .scvq-section-header__sub {
  color: var(--scvq-on-cream-body);
}

.scvq-section--white .scvq-section-header__sub {
  color: var(--scvq-on-light-body);
}

/* ─── FEATURE GRID ───────────────────────────────────────────── */
.scvq-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scvq-feature-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.scvq-feature-card:hover {
  border-color: rgba(212,149,42,0.4);
  transform: translateY(-2px);
}

.scvq-feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(212,149,42,0.1);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--scvq-amber-on-light);
  font-size: 1.1rem;
}

.scvq-feature-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.15rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 10px;
}

.scvq-feature-card__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
}

/* Feature card on dark bg (dark-alt section) */
.scvq-feature-card--dark {
  background: rgba(255,255,255,0.03);
  border-color: var(--scvq-border-dark);
}

.scvq-feature-card--dark:hover {
  border-color: rgba(212,149,42,0.3);
}

.scvq-feature-card--dark .scvq-feature-card__icon {
  background: rgba(212,149,42,0.12);
  color: var(--scvq-amber);
}

.scvq-feature-card--dark .scvq-feature-card__title {
  color: var(--scvq-on-dark-heading);
}

.scvq-feature-card--dark .scvq-feature-card__desc {
  color: var(--scvq-on-dark-body);
}

/* ─── INLINE SVG CHARTS ──────────────────────────────────────── */
.scvq-chart-container {
  background: var(--scvq-bg-dark-alt);
  border: 1px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius-lg);
  padding: 32px;
  overflow: hidden;
}

.scvq-chart-container--light {
  background: var(--scvq-bg-white);
  border-color: var(--scvq-border-light);
}

/* ─── STAT BAND ──────────────────────────────────────────────── */
.scvq-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
}

.scvq-stat {
  padding: 36px 32px;
  border-right: 1px solid var(--scvq-border-dark);
  text-align: center;
}

.scvq-stat:last-child { border-right: none; }

.scvq-stat__value {
  font-family: var(--scvq-font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--scvq-amber);
  line-height: 1;
  margin-bottom: 8px;
}

.scvq-stat__label {
  font-size: 0.875rem;
  color: var(--scvq-on-dark-body);
  font-weight: 400;
}

.scvq-stat__sub {
  font-size: 0.8rem;
  color: var(--scvq-on-dark-muted);
  margin-top: 4px;
}

/* ─── PRICING TIERS ──────────────────────────────────────────── */
.scvq-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.scvq-pricing-tier {
  background: var(--scvq-bg-white);
  border: 1.5px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.scvq-pricing-tier:hover {
  border-color: rgba(212,149,42,0.4);
  transform: translateY(-2px);
}

.scvq-pricing-tier--featured {
  border-color: var(--scvq-amber);
  box-shadow: 0 0 0 1px rgba(212,149,42,0.3);
}

.scvq-pricing-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--scvq-amber);
  color: var(--scvq-bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.scvq-pricing-tier__name {
  font-family: var(--scvq-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 8px;
}

.scvq-pricing-tier__tagline {
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.scvq-pricing-tier__price {
  margin-bottom: 8px;
}

.scvq-pricing-tier__amount {
  font-family: var(--scvq-font-heading);
  font-size: 2.5rem;
  color: var(--scvq-on-light-heading);
  line-height: 1;
}

.scvq-pricing-tier__period {
  font-size: 0.85rem;
  color: var(--scvq-on-light-muted);
  margin-top: 4px;
}

.scvq-pricing-tier__custom {
  font-family: var(--scvq-font-heading);
  font-size: 1.5rem;
  color: var(--scvq-on-light-heading);
}

.scvq-pricing-tier__cap {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  background: rgba(154,106,20,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--scvq-font-mono);
}

.scvq-pricing-tier__divider {
  height: 1px;
  background: var(--scvq-border-light);
  margin-bottom: 28px;
}

.scvq-pricing-tier__features {
  list-style: none;
  margin-bottom: 32px;
}

.scvq-pricing-tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  border-bottom: 1px solid rgba(216,213,206,0.4);
}

.scvq-pricing-tier__feature:last-child { border-bottom: none; }

.scvq-pricing-tier__feature i {
  color: var(--scvq-green);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.scvq-faq {
  background: var(--scvq-bg-cream);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-faq__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-faq__header {
  max-width: 560px;
  margin-bottom: 48px;
}

.scvq-faq__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-faq__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--scvq-on-cream-heading);
}

.scvq-faq__list {
  max-width: 760px;
}

.scvq-faq__item {
  border-bottom: 1px solid var(--scvq-border-light);
}

.scvq-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--scvq-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--scvq-on-cream-heading);
  transition: color 0.2s;
}

.scvq-faq__question:hover { color: var(--scvq-amber-on-light); }

.scvq-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--scvq-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--scvq-on-cream-muted);
  transition: transform 0.25s, border-color 0.2s;
}

.scvq-faq__item.is-open .scvq-faq__icon {
  transform: rotate(45deg);
  border-color: var(--scvq-amber-on-light);
  color: var(--scvq-amber-on-light);
}

.scvq-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.scvq-faq__item.is-open .scvq-faq__answer {
  max-height: 400px;
}

.scvq-faq__answer-inner {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── BLOG CARDS ─────────────────────────────────────────────── */
.scvq-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scvq-blog-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.scvq-blog-card:hover {
  border-color: rgba(212,149,42,0.4);
  transform: translateY(-2px);
  color: inherit;
}

.scvq-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--scvq-bg-cream);
}

.scvq-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.scvq-blog-card:hover .scvq-blog-card__img {
  transform: scale(1.03);
}

.scvq-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scvq-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.scvq-blog-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
}

.scvq-blog-card__date {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
}

.scvq-blog-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.15rem;
  color: var(--scvq-on-light-heading);
  line-height: 1.35;
  margin-bottom: 12px;
}

.scvq-blog-card__summary {
  font-size: 0.875rem;
  color: var(--scvq-on-light-body);
  line-height: 1.6;
  flex: 1;
}

.scvq-blog-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--scvq-border-light);
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
}

/* Featured article */
.scvq-blog-featured {
  background: var(--scvq-bg-white);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-blog-featured__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
  padding: 48px;
}

.scvq-blog-featured__img-wrap {
  border-radius: var(--scvq-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.scvq-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scvq-blog-featured__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-blog-featured__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 16px;
  line-height: 1.25;
}

.scvq-blog-featured__summary {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.scvq-blog-featured__meta {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 24px;
}

/* ─── ARTICLE PAGE ───────────────────────────────────────────── */
.scvq-article-hero {
  background: var(--scvq-bg-light);
  padding-top: calc(68px + 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--scvq-border-light);
}

.scvq-article-hero__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 28px;
  transition: color 0.2s;
}

.scvq-article-hero__back:hover { color: var(--scvq-amber-on-light); }

.scvq-article-hero__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 16px;
}

.scvq-article-hero__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--scvq-on-light-heading);
  max-width: 760px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.scvq-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
  padding-bottom: 0;
}

.scvq-article-hero__author {
  font-weight: 500;
  color: var(--scvq-on-light-body);
}

.scvq-article-body-section {
  background: var(--scvq-bg-white);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-article-layout {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.scvq-article__cover-wrap {
  margin-bottom: 40px;
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
}

.scvq-article__cover {
  width: 100%;
  height: auto;
  display: block;
}

body.scvq-page--light-top .scvq-blog-article__body {
  max-width: 100%;
}

body.scvq-page--light-top .scvq-blog-article__body h2 {
  font-family: var(--scvq-font-heading);
  font-size: 1.7rem;
  color: var(--scvq-on-light-heading);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

body.scvq-page--light-top .scvq-blog-article__body h3 {
  font-family: var(--scvq-font-heading);
  font-size: 1.3rem;
  color: var(--scvq-on-light-heading);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

body.scvq-page--light-top .scvq-blog-article__body p {
  font-size: 1rem;
  color: var(--scvq-on-light-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

body.scvq-page--light-top .scvq-blog-article__body ul,
body.scvq-page--light-top .scvq-blog-article__body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--scvq-on-light-body);
}

body.scvq-page--light-top .scvq-blog-article__body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 0.975rem;
}

body.scvq-page--light-top .scvq-blog-article__body blockquote {
  border-left: 3px solid var(--scvq-amber);
  padding-left: 1.5rem;
  margin-block: 1.5rem;
  font-style: italic;
  color: var(--scvq-on-light-muted);
}

body.scvq-page--light-top .scvq-blog-article__body a {
  color: var(--scvq-amber-on-light);
  text-decoration: underline;
}

.scvq-article-sidebar {
  position: sticky;
  top: 88px;
}

.scvq-article-sidebar__card {
  background: var(--scvq-bg-light);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.scvq-article-sidebar__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scvq-on-light-muted);
  margin-bottom: 16px;
}

.scvq-article-sidebar__list {
  list-style: none;
}

.scvq-article-sidebar__list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--scvq-border-light);
}

.scvq-article-sidebar__list li:last-child { border-bottom: none; }

.scvq-article-sidebar__list a {
  font-size: 0.875rem;
  color: var(--scvq-on-light-body);
  transition: color 0.2s;
}

.scvq-article-sidebar__list a:hover { color: var(--scvq-amber-on-light); }

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.scvq-form {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 48px;
}

.scvq-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.scvq-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scvq-form__group--full {
  grid-column: 1 / -1;
}

.scvq-form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--scvq-on-light-heading);
}

.scvq-form__input,
.scvq-form__select,
.scvq-form__textarea {
  padding: 12px 16px;
  background: var(--scvq-bg-light);
  border: 1.5px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}

.scvq-form__input:focus,
.scvq-form__select:focus,
.scvq-form__textarea:focus {
  border-color: var(--scvq-amber);
  box-shadow: 0 0 0 3px rgba(212,149,42,0.12);
}

.scvq-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ─── AUTH PAGES ─────────────────────────────────────────────── */
.scvq-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--scvq-bg-dark);
}

.scvq-auth-side-panel {
  background: var(--scvq-bg-dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scvq-auth-side-panel__ornament {
  position: absolute;
  bottom: -80px;
  right: -60px;
  opacity: 0.06;
  pointer-events: none;
}

.scvq-auth-side-panel__logo {
  margin-bottom: 64px;
}

.scvq-auth-side-panel__logo img {
  height: 36px;
  width: auto;
}

.scvq-auth-side-panel__headline {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--scvq-on-dark-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.scvq-auth-side-panel__desc {
  font-size: 1rem;
  color: var(--scvq-on-dark-body);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}

.scvq-auth-side-panel__points {
  list-style: none;
}

.scvq-auth-side-panel__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--scvq-border-dark);
}

.scvq-auth-side-panel__point:last-child { border-bottom: none; }

.scvq-auth-side-panel__point i {
  color: var(--scvq-amber);
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.scvq-auth-side-panel__point span {
  font-size: 0.9rem;
  color: var(--scvq-on-dark-body);
}

.scvq-auth-form-panel {
  background: var(--scvq-bg-dark-alt);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scvq-auth-form {
  max-width: 420px;
  width: 100%;
}

.scvq-auth-form__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.8rem;
  color: var(--scvq-on-dark-heading);
  margin-bottom: 8px;
}

.scvq-auth-form__sub {
  font-size: 0.9rem;
  color: var(--scvq-on-dark-muted);
  margin-bottom: 36px;
}

.scvq-auth-form__group {
  margin-bottom: 18px;
}

.scvq-auth-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--scvq-on-dark-body);
  margin-bottom: 8px;
}

.scvq-auth-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.95rem;
  color: var(--scvq-on-dark-heading);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.scvq-auth-form__input:focus {
  border-color: var(--scvq-amber);
  box-shadow: 0 0 0 3px rgba(212,149,42,0.15);
}

.scvq-auth-form__input::placeholder {
  color: var(--scvq-on-dark-muted);
}

.scvq-auth-form__select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.95rem;
  color: var(--scvq-on-dark-heading);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}

.scvq-auth-form__select:focus {
  border-color: var(--scvq-amber);
}

.scvq-auth-form__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.scvq-auth-form__link {
  font-size: 0.85rem;
  color: var(--scvq-on-dark-muted);
  transition: color 0.2s;
}

.scvq-auth-form__link:hover { color: var(--scvq-amber); }

/* ─── CHANGELOG ──────────────────────────────────────────────── */
.scvq-changelog {
  background: var(--scvq-bg-white);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-changelog__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-changelog__timeline {
  position: relative;
  padding-left: 40px;
}

.scvq-changelog__timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--scvq-border-light);
}

.scvq-changelog__entry {
  position: relative;
  margin-bottom: 48px;
}

.scvq-changelog__entry::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--scvq-amber);
  border: 2px solid var(--scvq-bg-white);
  box-shadow: 0 0 0 2px var(--scvq-border-light);
}

.scvq-changelog__version-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.scvq-changelog__version {
  font-family: var(--scvq-font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  background: rgba(154,106,20,0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

.scvq-changelog__date {
  font-size: 0.85rem;
  color: var(--scvq-on-light-muted);
  font-family: var(--scvq-font-mono);
}

.scvq-changelog__type-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.scvq-changelog__type-badge--feature {
  background: rgba(42,125,90,0.12);
  color: var(--scvq-green);
}

.scvq-changelog__type-badge--improvement {
  background: rgba(212,149,42,0.1);
  color: var(--scvq-amber-on-light);
}

.scvq-changelog__type-badge--fix {
  background: rgba(181,61,61,0.1);
  color: var(--scvq-red);
}

.scvq-changelog__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.3rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 12px;
}

.scvq-changelog__desc {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.scvq-changelog__items {
  list-style: none;
  border-left: 3px solid var(--scvq-border-light);
  padding-left: 20px;
}

.scvq-changelog__item {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  padding: 6px 0;
  border-bottom: 1px solid rgba(216,213,206,0.4);
}

.scvq-changelog__item:last-child { border-bottom: none; }

.scvq-changelog__item::before {
  content: '— ';
  color: var(--scvq-on-light-muted);
}

/* ─── SECURITY PAGE ──────────────────────────────────────────── */
.scvq-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scvq-security-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}

.scvq-security-card:hover { border-color: rgba(212,149,42,0.4); }

.scvq-security-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,149,42,0.1);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--scvq-amber-on-light);
  font-size: 1.2rem;
}

.scvq-security-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.15rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 10px;
}

.scvq-security-card__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
}

.scvq-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scvq-compliance-item {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.scvq-compliance-item__icon {
  font-size: 2rem;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
}

.scvq-compliance-item__title {
  font-family: var(--scvq-font-heading);
  font-size: 1rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 8px;
}

.scvq-compliance-item__note {
  font-size: 0.8rem;
  color: var(--scvq-on-cream-muted);
  line-height: 1.5;
}

/* ─── TEAM ───────────────────────────────────────────────────── */
.scvq-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scvq-team-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.scvq-team-card:hover { border-color: rgba(212,149,42,0.4); }

.scvq-team-card__photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--scvq-bg-cream);
}

.scvq-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.scvq-team-card__body {
  padding: 24px;
}

.scvq-team-card__name {
  font-family: var(--scvq-font-heading);
  font-size: 1.2rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 4px;
}

.scvq-team-card__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.scvq-team-card__bio {
  font-size: 0.875rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── LEGAL CONTENT ──────────────────────────────────────────── */
body.scvq-page--light-top .scvq-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

body.scvq-page--light-top .scvq-legal-content .legal-article {
  padding-block: var(--scvq-section-pad-v);
}

body.scvq-page--light-top .scvq-legal-content .legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--scvq-border-light);
}

body.scvq-page--light-top .scvq-legal-content h1 {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 12px;
}

body.scvq-page--light-top .scvq-legal-content .legal-meta {
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 4px;
}

body.scvq-page--light-top .scvq-legal-content h2 {
  font-family: var(--scvq-font-heading);
  font-size: 1.5rem;
  color: var(--scvq-on-light-heading);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

body.scvq-page--light-top .scvq-legal-content h3 {
  font-family: var(--scvq-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--scvq-on-light-heading);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

body.scvq-page--light-top .scvq-legal-content p {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

body.scvq-page--light-top .scvq-legal-content ul,
body.scvq-page--light-top .scvq-legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--scvq-on-light-body);
}

body.scvq-page--light-top .scvq-legal-content li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

body.scvq-page--light-top .scvq-legal-content a {
  color: var(--scvq-amber-on-light);
  text-decoration: underline;
}

body.scvq-page--light-top .scvq-legal-content address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--scvq-on-light-muted);
  line-height: 1.8;
  background: var(--scvq-bg-light);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius);
  padding: 16px 20px;
  display: inline-block;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--scvq-on-light-body);
}

.legal-table th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  background: var(--scvq-bg-light);
  border: 1px solid var(--scvq-border-light);
  color: var(--scvq-on-light-heading);
}

.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--scvq-border-light);
  vertical-align: top;
}

/* ─── CASE STUDIES / CUSTOMERS ────────────────────────────────── */
.scvq-case-study {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}

.scvq-case-study:hover { border-color: rgba(212,149,42,0.4); }

.scvq-case-study__company-name {
  font-family: var(--scvq-font-heading);
  font-size: 1.5rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 6px;
}

.scvq-case-study__industry {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--scvq-amber-on-light);
  margin-bottom: 16px;
}

.scvq-case-study__desc {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.7;
  font-weight: 300;
}

.scvq-case-study__outcome {
  background: rgba(154,106,20,0.06);
  border: 1px solid rgba(154,106,20,0.2);
  border-radius: var(--scvq-radius);
  padding: 20px 24px;
  min-width: 220px;
  flex-shrink: 0;
}

.scvq-case-study__outcome-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  margin-bottom: 8px;
}

.scvq-case-study__outcome-text {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.5;
}

/* ─── PAIN POINTS ────────────────────────────────────────────── */
.scvq-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scvq-pain-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-left: 3px solid var(--scvq-red);
  border-radius: var(--scvq-radius-lg);
  padding: 28px 24px;
}

.scvq-pain-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 10px;
}

.scvq-pain-card__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
}

/* Solutions "how we help" */
.scvq-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scvq-help-card {
  padding: 28px 24px;
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  background: var(--scvq-bg-white);
  transition: border-color 0.2s;
}

.scvq-help-card:hover { border-color: rgba(212,149,42,0.4); }

.scvq-help-card__step {
  font-family: var(--scvq-font-mono);
  font-size: 0.72rem;
  color: var(--scvq-amber-on-light);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.scvq-help-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 10px;
}

.scvq-help-card__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── INTEGRATIONS PAGE ──────────────────────────────────────── */
.scvq-integration-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scvq-integration-item {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.scvq-integration-item:hover {
  border-color: rgba(212,149,42,0.4);
  transform: translateY(-2px);
}

.scvq-integration-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--scvq-radius);
  background: var(--scvq-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--scvq-on-light-muted);
}

.scvq-integration-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 4px;
}

.scvq-integration-item__type {
  font-size: 0.75rem;
  color: var(--scvq-on-light-muted);
}

/* ─── INLINE SVG CONFIDENCE CHART ────────────────────────────── */
.scvq-confidence-chart {
  width: 100%;
  height: 320px;
  font-family: var(--scvq-font-mono);
}

/* ─── CONTACT INFO CARDS ─────────────────────────────────────── */
.scvq-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scvq-contact-info-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 28px 24px;
}

.scvq-contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(212,149,42,0.1);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--scvq-amber-on-light);
  font-size: 1.1rem;
}

.scvq-contact-info-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 8px;
}

.scvq-contact-info-card__value {
  font-size: 0.9rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.55;
}

.scvq-contact-info-card__value a {
  color: var(--scvq-amber-on-light);
  transition: color 0.2s;
}

.scvq-contact-info-card__value a:hover { color: var(--scvq-amber); }

/* ─── VALUES SECTION ─────────────────────────────────────────── */
.scvq-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scvq-value-card {
  padding: 32px 28px;
  border-top: 3px solid var(--scvq-amber);
  background: var(--scvq-bg-white);
  border-radius: 0 0 var(--scvq-radius-lg) var(--scvq-radius-lg);
}

.scvq-value-card__name {
  font-family: var(--scvq-font-heading);
  font-size: 1.2rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 12px;
}

.scvq-value-card__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.scvq-footer {
  background: var(--scvq-bg-dark);
  padding-top: 80px;
}

.scvq-footer__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-footer__columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--scvq-border-dark);
}

.scvq-footer__brand {}

.scvq-footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.scvq-footer__tagline {
  font-size: 0.875rem;
  color: var(--scvq-on-dark-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.scvq-footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scvq-on-dark-heading);
  margin-bottom: 20px;
}

.scvq-footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scvq-footer__col-link {
  font-size: 0.875rem;
  color: var(--scvq-on-dark-muted);
  transition: color 0.2s;
}

.scvq-footer__col-link:hover { color: var(--scvq-amber); }

.scvq-footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.scvq-footer__copyright {
  font-size: 0.8rem;
  color: var(--scvq-on-dark-muted);
}

.scvq-footer__legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.scvq-footer__legal-link {
  font-size: 0.8rem;
  color: var(--scvq-on-dark-muted);
  transition: color 0.2s;
}

.scvq-footer__legal-link:hover { color: var(--scvq-amber); }

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--scvq-bg-dark-alt);
  border-top: 1px solid var(--scvq-border-dark);
  box-shadow: 0 -4px 24px rgba(17,18,24,0.4);
}

.cookie-banner__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding: 16px var(--scvq-section-pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--scvq-on-dark-body);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--scvq-amber);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner__btn--primary {
  background: var(--scvq-amber);
  color: var(--scvq-bg-dark);
  border-color: var(--scvq-amber);
}

.cookie-banner__btn--primary:hover {
  background: var(--scvq-amber-light);
  border-color: var(--scvq-amber-light);
  color: var(--scvq-bg-dark);
}

/* ─── FADE IN ANIMATION ──────────────────────────────────────── */
.scvq-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scvq-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .scvq-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scvq-steps__item {
    border-right: none;
    border-bottom: 1px solid var(--scvq-border-light);
  }

  .scvq-steps__item:last-child { border-bottom: none; }

  .scvq-blog-grid { grid-template-columns: repeat(2, 1fr); }

  .scvq-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .scvq-auth { grid-template-columns: 1fr; }
  .scvq-auth-side-panel { display: none; }
  .scvq-auth-form-panel { padding: 40px 32px; justify-content: flex-start; padding-top: 100px; }

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

  .scvq-article-layout { grid-template-columns: 1fr; }
  .scvq-article-sidebar { position: static; }

  .scvq-light-hero__inner { grid-template-columns: 1fr; }
  .scvq-light-hero__visual { display: none; }
}

@media (max-width: 768px) {
  :root {
    --scvq-section-pad-v: 64px;
  }

  .scvq-nav__links,
  .scvq-nav__actions {
    display: none;
  }

  .scvq-nav__hamburger {
    display: flex;
  }

  .scvq-signal__grid { grid-template-columns: 1fr; }
  .scvq-features { grid-template-columns: 1fr; }
  .scvq-pricing-grid { grid-template-columns: 1fr; }
  .scvq-testimonials__grid { grid-template-columns: 1fr; }
  .scvq-team-grid { grid-template-columns: 1fr; }
  .scvq-values-grid { grid-template-columns: 1fr; }
  .scvq-blog-grid { grid-template-columns: 1fr; }
  .scvq-blog-featured__card { grid-template-columns: 1fr; padding: 28px; }
  .scvq-pain-grid { grid-template-columns: 1fr; }
  .scvq-help-grid { grid-template-columns: 1fr; }
  .scvq-security-grid { grid-template-columns: 1fr; }
  .scvq-compliance-grid { grid-template-columns: 1fr; }
  .scvq-contact-info-grid { grid-template-columns: 1fr; }
  .scvq-integration-catalog { grid-template-columns: repeat(2, 1fr); }
  .scvq-stat-band { grid-template-columns: 1fr; }
  .scvq-stat { border-right: none; border-bottom: 1px solid var(--scvq-border-dark); }
  .scvq-stat:last-child { border-bottom: none; }

  .scvq-case-study { grid-template-columns: 1fr; gap: 24px; }

  .scvq-footer__columns { grid-template-columns: 1fr 1fr; gap: 28px; }
  .scvq-footer__bottom { flex-direction: column; align-items: flex-start; }

  .scvq-form__grid { grid-template-columns: 1fr; }
  .scvq-form__group--full { grid-column: 1; }

  .scvq-hero__cta-group { flex-direction: column; align-items: flex-start; }

  .scvq-page-hero { padding-top: calc(68px + 48px); padding-bottom: 48px; }
  .scvq-light-hero { padding-top: calc(68px + 48px); padding-bottom: 48px; }
  .scvq-article-hero { padding-top: calc(68px + 48px); padding-bottom: 48px; }

  .scvq-cookie-banner__inner { flex-direction: column; align-items: stretch; }
}

/* ─── CASE STUDY CARDS (customers.html) ────────────────────── */
.scvq-case-studies {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.scvq-case-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 40px;
  transition: border-color 0.2s;
}

.scvq-case-card:hover { border-color: rgba(212,149,42,0.4); }

.scvq-case-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.scvq-case-card__company {
  font-family: var(--scvq-font-heading);
  font-size: 1.3rem;
  color: var(--scvq-on-light-heading);
}

.scvq-case-card__sector {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  background: rgba(154,106,20,0.08);
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--scvq-font-mono);
}

.scvq-case-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.4rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.scvq-case-card__quote {
  font-size: 0.975rem;
  color: var(--scvq-on-light-body);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  border-left: 3px solid var(--scvq-amber);
  padding-left: 20px;
  margin-bottom: 12px;
}

.scvq-case-card__attribution {
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 24px;
}

.scvq-case-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--scvq-border-light);
}

.scvq-case-card__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}

.scvq-case-card__metric-value {
  font-family: var(--scvq-font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
}

.scvq-case-card__metric-label {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  line-height: 1.4;
}

/* ─── TESTIMONIALS (customers.html) ────────────────────────── */
.scvq-testimonial__text {
  font-size: 1rem;
  color: var(--scvq-on-light-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
  font-style: italic;
  padding-top: 20px;
}

.scvq-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scvq-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--scvq-on-light-heading);
}

.scvq-testimonial__company {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
}

/* ─── AUTH SPLIT LAYOUT (login pages) ─────────────────────── */
.scvq-page--auth {
  overflow: hidden;
}

.scvq-auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.scvq-auth-split__panel--brand {
  position: relative;
  background: var(--scvq-bg-dark);
  overflow: hidden;
}

.scvq-auth-brand__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scvq-auth-brand__content {
  position: relative;
  z-index: 2;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100vh;
}

.scvq-auth-brand__logo-link img {
  height: 36px;
  width: auto;
}

.scvq-auth-brand__quote {
  font-family: var(--scvq-font-heading);
  font-size: 1.4rem;
  color: var(--scvq-on-dark-heading);
  line-height: 1.4;
  max-width: 360px;
  font-style: italic;
}

.scvq-auth-brand__quote footer {
  font-family: var(--scvq-font-body);
  font-size: 0.875rem;
  color: var(--scvq-on-dark-muted);
  margin-top: 12px;
  font-style: normal;
}

.scvq-auth-brand__checklist-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scvq-amber);
  margin-bottom: 16px;
}

.scvq-auth-brand__checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scvq-auth-brand__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--scvq-on-dark-body);
  line-height: 1.5;
}

.scvq-auth-brand__checklist li i {
  color: var(--scvq-amber);
  margin-top: 3px;
  flex-shrink: 0;
}

.scvq-auth-split__panel--form {
  background: var(--scvq-bg-dark-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
  min-height: 100vh;
}

.scvq-auth-form-wrap {
  width: 100%;
  max-width: 440px;
}

.scvq-auth-form-wrap__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--scvq-on-dark-muted);
  margin-bottom: 40px;
  transition: color 0.2s;
}

.scvq-auth-form-wrap__back:hover { color: var(--scvq-amber); }

.scvq-auth-form-wrap__title {
  font-family: var(--scvq-font-heading);
  font-size: 2rem;
  color: var(--scvq-on-dark-heading);
  margin-bottom: 8px;
}

.scvq-auth-form-wrap__sub {
  font-size: 0.9rem;
  color: var(--scvq-on-dark-muted);
  margin-bottom: 36px;
}

.scvq-auth-form-wrap__sub a {
  color: var(--scvq-amber);
}

.scvq-auth-form-wrap__sub a:hover {
  text-decoration: underline;
}

/* Auth form fields */
.scvq-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scvq-auth-form .scvq-form-field {
  margin-bottom: 18px;
}

.scvq-auth-form__disclaimer {
  font-size: 0.8rem;
  color: var(--scvq-on-dark-muted);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.scvq-auth-form__disclaimer a {
  color: var(--scvq-amber);
}

/* Auth centered (reset password) */
.scvq-auth-centered {
  min-height: 100vh;
  background: var(--scvq-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--scvq-section-pad-h);
}

.scvq-auth-centered__card {
  width: 100%;
  max-width: 420px;
  background: var(--scvq-bg-dark-alt);
  border: 1px solid var(--scvq-border-dark);
  border-radius: var(--scvq-radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.scvq-auth-centered__logo-link {
  display: inline-block;
  margin-bottom: 32px;
}

.scvq-auth-centered__logo-link img {
  height: 32px;
  width: auto;
}

.scvq-auth-centered__card .scvq-auth-form-wrap__title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.scvq-auth-centered__card .scvq-auth-form-wrap__sub {
  margin-bottom: 28px;
}

.scvq-auth-centered__links {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--scvq-on-dark-muted);
}

.scvq-auth-centered__links a {
  color: var(--scvq-amber);
  transition: color 0.2s;
}

.scvq-auth-centered__links a:hover {
  color: var(--scvq-amber-light);
}

/* ─── GENERIC FORM UTILITIES (contact, auth) ───────────────── */
.scvq-form-row {
  margin-bottom: 18px;
}

.scvq-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scvq-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scvq-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--scvq-on-dark-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.scvq-page--light-top .scvq-form-label {
  color: var(--scvq-on-light-heading);
}

.scvq-form-label__link {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--scvq-amber);
}

.scvq-form-input,
.scvq-form-select,
.scvq-form-textarea {
  padding: 12px 16px;
  background: var(--scvq-bg-light);
  border: 1.5px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius);
  font-family: var(--scvq-font-body);
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}

.scvq-form-input--dark,
.scvq-form-select--dark {
  background: rgba(255,255,255,0.06);
  border-color: var(--scvq-border-dark);
  color: var(--scvq-on-dark-heading);
}

.scvq-form-input--dark::placeholder { color: var(--scvq-on-dark-muted); }

.scvq-form-input:focus,
.scvq-form-select:focus,
.scvq-form-textarea:focus {
  border-color: var(--scvq-amber);
  box-shadow: 0 0 0 3px rgba(212,149,42,0.12);
}

.scvq-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.scvq-form-feedback {
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--scvq-radius);
  margin-bottom: 16px;
  display: none;
}

.scvq-form-feedback.is-visible { display: block; }

.scvq-form-feedback--demo {
  background: rgba(212,149,42,0.12);
  border: 1px solid rgba(212,149,42,0.3);
  color: var(--scvq-amber);
}

.scvq-form-feedback--success {
  background: rgba(42,125,90,0.12);
  border: 1px solid rgba(42,125,90,0.3);
  color: var(--scvq-green);
}

/* ─── CONTACT PAGE LAYOUT ──────────────────────────────────── */
.scvq-contact-section {
  background: var(--scvq-bg-white);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-contact-section__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.scvq-contact-form-wrap {
  background: var(--scvq-bg-light);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 48px;
}

.scvq-contact-form-wrap__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.6rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 32px;
}

.scvq-contact-form {
  display: flex;
  flex-direction: column;
}

.scvq-contact-form .scvq-form-label { color: var(--scvq-on-light-heading); }

.scvq-contact-info {
  padding-top: 8px;
}

.scvq-contact-info__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.4rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 32px;
}

.scvq-contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.scvq-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.scvq-contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(154,106,20,0.1);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scvq-amber-on-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.scvq-contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scvq-on-light-muted);
  margin-bottom: 4px;
}

.scvq-contact-info__value {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.55;
  font-style: normal;
}

.scvq-contact-info__value a {
  color: var(--scvq-amber-on-light);
  transition: color 0.2s;
}

.scvq-contact-info__value a:hover { color: var(--scvq-amber); }

.scvq-contact-info__response {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
  background: var(--scvq-bg-cream);
  border-radius: var(--scvq-radius);
  padding: 14px 18px;
  line-height: 1.5;
}

.scvq-contact-info__response i {
  color: var(--scvq-amber-on-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── ABOUT MISSION LAYOUT ─────────────────────────────────── */
.scvq-about-mission {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.scvq-about-mission__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 24px;
  line-height: 1.25;
}

.scvq-about-mission__body {
  font-size: 1rem;
  color: var(--scvq-on-light-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.scvq-about-mission__stat-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
}

.scvq-about-mission__stat {
  padding: 24px 20px;
  border-bottom: 1px solid var(--scvq-border-light);
  background: var(--scvq-bg-white);
}

.scvq-about-mission__stat:last-child { border-bottom: none; }

.scvq-about-mission__stat-num {
  display: block;
  font-family: var(--scvq-font-mono);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  margin-bottom: 4px;
}

.scvq-about-mission__stat-label {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  line-height: 1.5;
}

/* ─── VALUES GRID WITH ICON (about.html) ───────────────────── */
.scvq-value-item {
  padding: 28px 24px;
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  transition: border-color 0.2s;
}

.scvq-value-item:hover { border-color: rgba(212,149,42,0.4); }

.scvq-value-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(154,106,20,0.1);
  border-radius: var(--scvq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--scvq-amber-on-light);
  font-size: 1.1rem;
}

.scvq-value-item__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 10px;
}

.scvq-value-item__desc {
  font-size: 0.9rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── TEAM CARD (updated from earlier definition) ─────────── */
.scvq-team-card__name {
  font-family: var(--scvq-font-heading);
  font-size: 1.2rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 4px;
  padding: 0 24px;
  padding-top: 24px;
}

.scvq-team-card__role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  padding: 0 24px;
}

.scvq-team-card__bio {
  font-size: 0.875rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
  padding: 0 24px 24px;
}

/* ─── BLOG FEATURED (updated structure) ──────────────────── */
.scvq-blog-featured {
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  overflow: hidden;
  background: var(--scvq-bg-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: border-color 0.2s;
}

.scvq-blog-featured:hover { border-color: rgba(212,149,42,0.4); }

.scvq-blog-featured__img-link {
  display: block;
  overflow: hidden;
}

.scvq-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.scvq-blog-featured:hover .scvq-blog-featured__img {
  transform: scale(1.03);
}

.scvq-blog-featured__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scvq-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.scvq-blog-featured__date,
.scvq-blog-featured__author {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
}

.scvq-blog-featured__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 16px;
  line-height: 1.25;
}

.scvq-blog-featured__title a {
  color: inherit;
  transition: color 0.2s;
}

.scvq-blog-featured__title a:hover { color: var(--scvq-amber-on-light); }

.scvq-blog-featured__summary {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
  flex: 1;
}

.scvq-blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--scvq-amber-on-light);
  transition: gap 0.2s, color 0.2s;
}

.scvq-blog-featured__cta:hover {
  gap: 12px;
  color: var(--scvq-amber);
}

/* Blog card link wrapper */
.scvq-blog-card__img-link {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--scvq-bg-cream);
}

/* Blog category pill */
.scvq-blog-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scvq-amber-on-light);
  background: rgba(154,106,20,0.08);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.scvq-blog-card__meta {
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  margin-top: auto;
  padding-top: 12px;
}

.scvq-blog-card__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-light-heading);
  line-height: 1.35;
  margin-bottom: 8px;
}

.scvq-blog-card__title a {
  color: inherit;
  transition: color 0.2s;
}

.scvq-blog-card__title a:hover { color: var(--scvq-amber-on-light); }

/* ─── ARTICLE HEADER (article template) ────────────────────── */
.scvq-article-header {
  background: var(--scvq-bg-light);
  padding-top: calc(68px + 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--scvq-border-light);
}

.scvq-article-header__inner {
  max-width: 860px;
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-article-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 24px;
}

.scvq-article-header__breadcrumb a {
  color: var(--scvq-on-light-muted);
  transition: color 0.2s;
}

.scvq-article-header__breadcrumb a:hover { color: var(--scvq-amber-on-light); }

.scvq-article-header__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--scvq-on-light-heading);
  max-width: 760px;
  margin-bottom: 20px;
  margin-top: 12px;
  line-height: 1.2;
}

.scvq-article-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--scvq-on-light-muted);
}

.scvq-article-header__author { font-weight: 500; color: var(--scvq-on-light-body); }

/* Article body */
.scvq-article__body {
  background: var(--scvq-bg-white);
  padding-block: var(--scvq-section-pad-v);
}

.scvq-article__body-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: var(--scvq-section-pad-h);
}

.scvq-article__cover-wrap {
  padding-block: 40px 0;
  background: var(--scvq-bg-white);
}

.scvq-article__cover-wrap .scvq-container {
  max-width: 860px;
}

.scvq-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--scvq-radius-lg);
  display: block;
}

/* ─── LEGAL PAGE WRAPPER ────────────────────────────────────── */
.scvq-legal-page {
  background: var(--scvq-bg-white);
  padding-top: 68px;
}

.scvq-legal-page__inner {
  max-width: var(--scvq-container);
  margin: 0 auto;
}

/* ─── CHANGELOG ENTRY (updated) ───────────────────────────── */
.scvq-changelog-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--scvq-border-light);
  margin-bottom: 0;
}

.scvq-changelog-entry:last-child { border-bottom: none; }

.scvq-changelog-entry__aside {
  text-align: right;
  padding-top: 4px;
}

.scvq-changelog-entry__date {
  display: block;
  font-family: var(--scvq-font-mono);
  font-size: 0.8rem;
  color: var(--scvq-on-light-muted);
  margin-bottom: 6px;
}

.scvq-changelog-entry__version {
  display: inline-block;
  font-family: var(--scvq-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  background: rgba(154,106,20,0.08);
  padding: 3px 8px;
  border-radius: 3px;
}

.scvq-changelog-entry__body {}

.scvq-changelog-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.scvq-changelog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.scvq-changelog-tag--new {
  background: rgba(42,125,90,0.1);
  color: var(--scvq-green);
}

.scvq-changelog-tag--improvement {
  background: rgba(154,106,20,0.1);
  color: var(--scvq-amber-on-light);
}

.scvq-changelog-tag--fix {
  background: rgba(181,61,61,0.1);
  color: var(--scvq-red);
}

.scvq-changelog-entry__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.3rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 12px;
}

.scvq-changelog-entry__desc {
  font-size: 0.95rem;
  color: var(--scvq-on-light-body);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.scvq-changelog-entry__items {
  list-style: none;
  border-left: 3px solid var(--scvq-border-light);
  padding-left: 20px;
}

.scvq-changelog-entry__items li {
  font-size: 0.875rem;
  color: var(--scvq-on-light-body);
  padding: 5px 0;
  border-bottom: 1px solid rgba(216,213,206,0.4);
}

.scvq-changelog-entry__items li:last-child { border-bottom: none; }

.scvq-changelog-entry__items li::before {
  content: '— ';
  color: var(--scvq-on-light-muted);
}

/* ─── COMPLIANCE BADGES ─────────────────────────────────────── */
.scvq-compliance-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.scvq-compliance-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.scvq-compliance-badge--active {
  background: rgba(42,125,90,0.1);
  color: var(--scvq-green);
}

.scvq-compliance-badge--in-progress {
  background: rgba(212,149,42,0.1);
  color: var(--scvq-amber-on-light);
}

.scvq-compliance-item__name {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-cream-heading);
}

.scvq-compliance-item__desc {
  font-size: 0.875rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
}

.scvq-security-contact {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius);
  font-size: 0.9rem;
  color: var(--scvq-on-cream-body);
}

.scvq-security-contact a {
  color: var(--scvq-amber-on-light);
}

/* ─── INTEGRATIONS CATALOG (integrations.html) ─────────────── */
.scvq-int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scvq-int-card {
  background: var(--scvq-bg-white);
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.scvq-int-card:hover {
  border-color: rgba(212,149,42,0.4);
  transform: translateY(-2px);
}

.scvq-int-card__type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.scvq-int-card__type-badge--crm {
  background: rgba(42,125,90,0.1);
  color: var(--scvq-green);
}

.scvq-int-card__type-badge--data {
  background: rgba(42,80,180,0.1);
  color: #3050B4;
}

.scvq-int-card__type-badge--notify {
  background: rgba(180,80,42,0.1);
  color: #803020;
}

.scvq-int-card__type-badge--export {
  background: rgba(80,150,42,0.1);
  color: #3A7A10;
}

.scvq-int-card__name {
  font-family: var(--scvq-font-heading);
  font-size: 1.2rem;
  color: var(--scvq-on-light-heading);
  margin-bottom: 10px;
}

.scvq-int-card__desc {
  font-size: 0.875rem;
  color: var(--scvq-on-light-body);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.scvq-int-card__status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 3px;
}

.scvq-int-card__status--ga {
  background: rgba(42,125,90,0.1);
  color: var(--scvq-green);
}

.scvq-int-card__status--beta {
  background: rgba(212,149,42,0.1);
  color: var(--scvq-amber-on-light);
}

/* ─── DATA MODEL STEPS ──────────────────────────────────────── */
.scvq-data-model-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scvq-dm-step {
  padding: 28px;
  border: 1px solid var(--scvq-border-light);
  border-radius: var(--scvq-radius-lg);
  background: var(--scvq-bg-white);
  position: relative;
}

.scvq-dm-step__num {
  font-family: var(--scvq-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--scvq-amber-on-light);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.scvq-dm-step__title {
  font-family: var(--scvq-font-heading);
  font-size: 1.1rem;
  color: var(--scvq-on-cream-heading);
  margin-bottom: 10px;
}

.scvq-dm-step__desc {
  font-size: 0.875rem;
  color: var(--scvq-on-cream-body);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 1024px) {
  .scvq-auth-split { grid-template-columns: 1fr; }
  .scvq-auth-split__panel--brand { display: none; }
  .scvq-auth-split__panel--form { justify-content: flex-start; padding-top: 80px; }
  .scvq-about-mission { grid-template-columns: 1fr; }
  .scvq-contact-section__inner { grid-template-columns: 1fr; }
  .scvq-changelog-entry { grid-template-columns: 1fr; }
  .scvq-changelog-entry__aside { text-align: left; }
  .scvq-int-grid { grid-template-columns: repeat(2, 1fr); }
  .scvq-data-model-steps { grid-template-columns: 1fr; }
  .scvq-blog-featured { grid-template-columns: 1fr; }
  .scvq-blog-featured__img-link { aspect-ratio: 16/9; height: 280px; }
}

@media (max-width: 768px) {
  .scvq-form-row--2 { grid-template-columns: 1fr; }
  .scvq-case-card { padding: 28px 20px; }
  .scvq-case-card__header { flex-direction: column; gap: 8px; }
  .scvq-case-card__metrics { flex-direction: column; }
  .scvq-int-grid { grid-template-columns: 1fr; }
  .scvq-contact-form-wrap { padding: 28px 20px; }
  .scvq-auth-split__panel--form { padding: 40px 24px; }
  .scvq-auth-centered__card { padding: 40px 28px; }
}

/* ─── ORPHAN FIXES ──────────────────────────────────────────── */

/* scvq-page--dark-top: dark nav variant — body pages with dark hero */
.scvq-page--dark-top .scvq-nav:not(.scvq-nav--scrolled) {
  background: transparent;
}
.scvq-page--dark-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__link,
.scvq-page--dark-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-nav__logo-img,
.scvq-page--dark-top .scvq-nav:not(.scvq-nav--scrolled) .scvq-btn--ghost-dark {
  color: var(--scvq-on-dark-heading);
}

/* scvq-nav__logo-img: the logo <img> inside nav (presentation only) */
.scvq-nav__logo-img {
  display: block;
  height: 32px;
  width: auto;
}

/* scvq-about-mission__text: text wrapper inside mission section */
.scvq-about-mission__text {}

/* scvq-article-header__date: time element in article header meta */
.scvq-article-header__date {
  color: var(--scvq-on-light-muted);
  font-size: 0.875rem;
}

/* scvq-auth-split__panel: base panel class (each side of auth split) */
.scvq-auth-split__panel {
  min-height: 100vh;
}

/* scvq-blog-grid--3: 3-column variant of blog grid (related articles) */
.scvq-blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* scvq-nav__mobile-parent: mobile nav link with nested children */
.scvq-nav__mobile-parent {
  font-weight: 600;
}

/* scvq-testimonials__title: testimonials section heading */
.scvq-testimonials__title {
  font-family: var(--scvq-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--scvq-on-light-heading);
  margin-bottom: 40px;
  text-align: center;
}
