/* apv-pages.css — page-specific overrides */

/* ═══════════════════════════════════════
   HERO (index.html — dark-top)
═══════════════════════════════════════ */
.apv-hero {
  background: var(--apv-bg-dark);
  padding-top: calc(var(--apv-nav-height) + 5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.apv-hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.apv-hero__inner {
  max-width: var(--apv-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4rem;
  align-items: center;
}

.apv-hero__content h1 {
  color: var(--apv-fg-dark-1);
  margin-bottom: 1.25rem;
}

.apv-hero__content h1 .apv-hero__accent {
  color: var(--apv-blue-aa-dark);
}

.apv-hero__sub {
  font-size: 1.125rem;
  color: var(--apv-fg-dark-2);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.apv-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.apv-hero__trust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--apv-fg-dark-2);
}

.apv-hero__trust i {
  color: #4ade80;
}

@media (max-width: 900px) {
  .apv-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .apv-hero {
    padding-top: calc(var(--apv-nav-height) + 3rem);
    padding-bottom: 3rem;
  }

  .apv-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero dashboard mock */
.apv-hero__mock-wrap {
  position: relative;
}

.apv-hero__mock-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: var(--apv-blue);
  opacity: 0.06;
  z-index: 0;
}

.apv-hero__mock-wrap .apv-mock {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF STRIP (dark-alt section)
═══════════════════════════════════════ */
.apv-proof-strip {
  padding: 2.5rem 0;
}

.apv-proof-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--apv-fg-dark-2);
  text-align: center;
  margin-bottom: 1.25rem;
}

.apv-proof-strip__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   INTEGRATIONS TEASER (dark section on index)
═══════════════════════════════════════ */
.apv-erp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.apv-erp-name {
  padding: 0.875rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--apv-fg-dark-2);
  letter-spacing: -0.01em;
  transition: background var(--apv-dur-fast), color var(--apv-dur-fast);
}

.apv-erp-name:hover {
  background: rgba(255,255,255,0.1);
  color: var(--apv-fg-dark-1);
}

/* ═══════════════════════════════════════
   SUBHERO (light-top and dark-top sub-pages)
═══════════════════════════════════════ */
.apv-subhero {
  padding-top: calc(var(--apv-nav-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.apv-subhero__inner {
  max-width: var(--apv-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.apv-subhero--dark {
  background: var(--apv-bg-dark);
}

.apv-subhero--dark .apv-subhero__eyebrow {
  color: var(--apv-blue-aa-dark);
}

.apv-subhero--dark h1 {
  color: var(--apv-fg-dark-1);
}

.apv-subhero--dark .apv-subhero__sub {
  color: var(--apv-fg-dark-2);
}

.apv-subhero--light {
  background: var(--apv-bg-light);
  border-bottom: 1px solid var(--apv-border-light);
}

.apv-subhero--light .apv-subhero__eyebrow {
  color: var(--apv-blue-aa-light);
}

.apv-subhero--light h1 {
  color: var(--apv-fg-light-1);
}

.apv-subhero--light .apv-subhero__sub {
  color: var(--apv-fg-light-2);
}

.apv-subhero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.apv-subhero h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 740px;
  margin-bottom: 1rem;
}

.apv-subhero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* Split subhero variant */
.apv-subhero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .apv-subhero {
    padding-top: calc(var(--apv-nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .apv-subhero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════
   CTA BANDS (dark)
═══════════════════════════════════════ */
.apv-cta-band {
  background: var(--apv-bg-dark);
  text-align: center;
  padding: 5rem 0;
}

.apv-cta-band--navy-alt {
  background: var(--apv-bg-dark-alt);
}

.apv-cta-band h2 {
  color: var(--apv-fg-dark-1);
  margin-bottom: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apv-cta-band p {
  color: var(--apv-fg-dark-2);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.apv-cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.apv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.apv-contact-info {
  padding-top: 0.5rem;
}

.apv-contact-info h3 {
  font-size: 1.25rem;
  color: var(--apv-fg-light-1);
  margin-bottom: 1.5rem;
}

.apv-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.apv-contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(45,107,228,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apv-blue-aa-light);
  flex-shrink: 0;
}

.apv-contact-info-item__text {
  flex: 1;
}

.apv-contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--apv-fg-light-3);
  margin-bottom: 0.125rem;
}

.apv-contact-info-item__value {
  font-size: 0.9375rem;
  color: var(--apv-fg-light-1);
}

.apv-contact-info-item__value a {
  color: var(--apv-blue-aa-light);
}

@media (max-width: 768px) {
  .apv-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════
   SECURITY PAGE
═══════════════════════════════════════ */
.apv-security-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.apv-security-pillar {
  background: var(--apv-bg-white);
  border: 1px solid var(--apv-border-light);
  border-radius: var(--apv-radius-card);
  padding: 2rem;
  box-shadow: var(--apv-shadow-card);
}

.apv-security-pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(45,107,228,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apv-blue-aa-light);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.apv-security-pillar h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--apv-fg-light-1);
  margin-bottom: 0.5rem;
}

.apv-security-pillar p {
  font-size: 0.9375rem;
  color: var(--apv-fg-light-2);
  line-height: 1.65;
}

.apv-security-pillar ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.apv-security-pillar ul li {
  font-size: 0.875rem;
  color: var(--apv-fg-light-2);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.apv-security-pillar ul li i {
  color: var(--apv-green-aa);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .apv-security-pillars {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   RESET PASSWORD (centered card)
═══════════════════════════════════════ */
.apv-reset-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--apv-bg-light);
  padding: calc(var(--apv-nav-height) + 2rem) 1.5rem 2rem;
}

.apv-reset-card {
  background: var(--apv-bg-white);
  border: 1px solid var(--apv-border-light);
  border-radius: var(--apv-radius-card);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--apv-shadow-card);
}

.apv-reset-card__logo {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.apv-reset-card__logo img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.apv-reset-card h1 {
  font-size: 1.5rem;
  color: var(--apv-fg-light-1);
  text-align: center;
  margin-bottom: 0.5rem;
}

.apv-reset-card p {
  font-size: 0.9375rem;
  color: var(--apv-fg-light-3);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   STATUS INDICATOR STRIP
═══════════════════════════════════════ */
.apv-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--apv-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--apv-green-aa);
}

.apv-status-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apv-green-aa);
  animation: apv-pulse 2s infinite;
}

@keyframes apv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ═══════════════════════════════════════
   MOBILE SECTION TOGGLE (mobile nav state)
═══════════════════════════════════════ */
.apv-mobile-section-toggle {
  display: none;
  width: 100%;
  background: none;
  border: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--apv-fg-dark-1);
  text-align: left;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   HERO VARIANTS (sub-page heroes)
═══════════════════════════════════════ */
.apv-hero--security {
  background: linear-gradient(160deg, var(--apv-bg-dark) 0%, #0B2042 100%);
}

.apv-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--apv-blue-aa-dark);
  display: block;
  margin-bottom: 0.875rem;
}

.apv-hero__visual {
  position: relative;
}

.apv-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--apv-fg-dark-2);
  margin-bottom: 1.5rem;
  font-weight: 500;
  transition: color var(--apv-dur-fast);
}

.apv-hero__back:hover { color: var(--apv-fg-dark-1); }

/* ═══════════════════════════════════════
   SECTION HEADER (dark sections)
═══════════════════════════════════════ */
.apv-section-header--dark {
  text-align: center;
  margin-bottom: 3rem;
}

.apv-section-header--dark h2 {
  color: var(--apv-fg-dark-1);
}

.apv-section-header--dark p {
  color: var(--apv-fg-dark-2);
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1.0625rem;
}

/* ═══════════════════════════════════════
   STAT GRID (dark hero tiles)
═══════════════════════════════════════ */
.apv-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) { .apv-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .apv-stat-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════
   FEATURE CARDS (light and dark variants)
═══════════════════════════════════════ */
.apv-feature-card {
  background: var(--apv-bg-white);
  border: 1px solid var(--apv-border-light);
  border-radius: var(--apv-radius-card);
  padding: 1.75rem;
  box-shadow: var(--apv-shadow-card);
  transition: box-shadow var(--apv-dur-fast) var(--apv-ease),
              transform var(--apv-dur-fast) var(--apv-ease);
}

.apv-feature-card:hover {
  box-shadow: var(--apv-shadow-lift);
  transform: translateY(-2px);
}

.apv-feature-card--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--apv-border-dark);
  box-shadow: none;
}

.apv-feature-card--dark:hover {
  background: rgba(255,255,255,0.06);
  transform: none;
  box-shadow: none;
}

.apv-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  background: rgba(45,107,228,0.08);
  color: var(--apv-blue-aa-light);
  flex-shrink: 0;
}

.apv-feature-card__icon--light {
  background: rgba(45,107,228,0.08);
  color: var(--apv-blue-aa-light);
}

.apv-feature-card--dark .apv-feature-card__icon {
  background: rgba(45,107,228,0.18);
  color: var(--apv-blue-aa-dark);
}

.apv-feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--apv-fg-light-1);
  margin-bottom: 0.5rem;
}

.apv-feature-card__title--light {
  color: var(--apv-fg-light-1);
}

.apv-feature-card--dark .apv-feature-card__title {
  color: var(--apv-fg-dark-1);
}

.apv-feature-card__desc {
  font-size: 0.9375rem;
  color: var(--apv-fg-light-2);
  line-height: 1.65;
}

.apv-feature-card__desc--light {
  color: var(--apv-fg-light-2);
}

.apv-feature-card--dark .apv-feature-card__desc {
  color: var(--apv-fg-dark-2);
}

/* ═══════════════════════════════════════
   INTEGRATION GRID + CARD ELEMENTS
═══════════════════════════════════════ */
.apv-integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 901px) {
  .apv-integration-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .apv-integration-grid { grid-template-columns: 1fr; }
}

.apv-integration-card__abbr {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--apv-fg-light-1);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.apv-integration-card__caps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}

/* ═══════════════════════════════════════
   PROCESS STEPS (integrations how-it-works)
═══════════════════════════════════════ */
.apv-process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: process-step;
}

.apv-process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.apv-process-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--apv-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  flex-shrink: 0;
}

.apv-process-step__body { flex: 1; }

.apv-process-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--apv-fg-light-1);
  margin-bottom: 0.375rem;
}

.apv-process-step__desc {
  font-size: 0.9375rem;
  color: var(--apv-fg-light-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   TESTIMONIAL GRID
═══════════════════════════════════════ */
.apv-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 700px) { .apv-testimonial-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   IMPLEMENTATION PHASES
═══════════════════════════════════════ */
.apv-impl-phase__body {
  flex: 1;
}

.apv-impl-phase__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--apv-blue-aa-light);
  background: rgba(45,107,228,0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--apv-radius-pill);
  margin-bottom: 0.625rem;
}

/* ═══════════════════════════════════════
   GLOSSARY
═══════════════════════════════════════ */
.apv-glossary-letter {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--apv-nav-height) + 1.5rem);
}

.apv-glossary-letter__header {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--apv-blue-aa-light);
  border-bottom: 2px solid var(--apv-blue-aa-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.apv-glossary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.apv-glossary-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--apv-border-light);
  align-items: baseline;
}

.apv-glossary-item dt {
  font-weight: 600;
  color: var(--apv-fg-light-1);
  font-size: 0.9375rem;
}

.apv-glossary-item dd {
  color: var(--apv-fg-light-2);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 700px) {
  .apv-glossary-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .apv-glossary-item dd { padding-left: 0; }
}

/* ═══════════════════════════════════════
   BLOG ARTICLE PAGE
═══════════════════════════════════════ */
.apv-blog-article {
  background: var(--apv-bg-white);
}

.apv-blog-article__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--apv-fg-light-1);
  margin: 0.75rem 0 1rem;
  line-height: 1.25;
}

.apv-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--apv-fg-light-3);
}

.apv-blog-article__cover-wrap {
  margin: 0;
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto;
}

.apv-blog-article__cover-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--apv-radius-card);
  display: block;
}

.apv-blog-article__cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--apv-bg-light);
  border: 1px solid var(--apv-border-light);
  border-radius: var(--apv-radius-card);
  margin-top: 2rem;
}

.apv-blog-article__cta-inline strong {
  font-size: 1.0625rem;
  color: var(--apv-fg-light-1);
}

.apv-blog-article__footer {
  padding: 2rem 0 4rem;
  background: var(--apv-bg-light);
}

@media (max-width: 640px) {
  .apv-blog-article__cta-inline { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════
   BLOG CARD ELEMENTS (list page)
═══════════════════════════════════════ */
.apv-blog-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background: rgba(45,107,228,0.09);
  border-radius: var(--apv-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--apv-blue-aa-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.apv-blog-card__dot {
  color: var(--apv-fg-light-3);
  margin: 0 0.125rem;
}

.apv-blog-card__img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--apv-radius-card) var(--apv-radius-card) 0 0;
}

.apv-blog-card__img-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.apv-blog-card:hover .apv-blog-card__img-link img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════
   BTN SIZE VARIANT
═══════════════════════════════════════ */
.apv-btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════
   AUTH ASIDE sub-elements
═══════════════════════════════════════ */
.apv-auth-aside__logo {
  margin-bottom: 1.5rem;
}

.apv-auth-aside__headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════
   AUTH FORM + PANEL
═══════════════════════════════════════ */
.apv-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.apv-auth-form__link {
  color: var(--apv-blue-aa-light);
  font-weight: 500;
  text-decoration: none;
}

.apv-auth-form__link:hover {
  text-decoration: underline;
}

.apv-auth-panel__inner {
  width: 100%;
  max-width: 420px;
}

.apv-auth-panel__header {
  margin-bottom: 1.75rem;
}

/* ═══════════════════════════════════════
   LEGAL LAYOUT
═══════════════════════════════════════ */
.apv-legal-layout {
  max-width: 800px;
  margin: 0 auto;
}

.apv-legal-layout h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--apv-fg-light-1);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.apv-legal-layout h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--apv-fg-light-1);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.apv-legal-layout p {
  color: var(--apv-fg-light-2);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.apv-legal-layout ul, .apv-legal-layout ol {
  padding-left: 1.5rem;
  color: var(--apv-fg-light-2);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.apv-legal-layout li { margin-bottom: 0.375rem; }

.apv-legal-layout a { color: var(--apv-blue-aa-light); }

/* ═══════════════════════════════════════
   MOCK TERMINAL / TOOLBAR ELEMENTS
═══════════════════════════════════════ */
.apv-mock__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px 10px 0 0;
}

.apv-mock__toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apv-mock__btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

/* Mock element classes */
.apv-mock__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: var(--apv-radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.apv-mock__pill--green {
  background: rgba(22,163,74,0.18);
  color: #4ade80;
}

.apv-mock__pill--amber {
  background: rgba(234,179,8,0.18);
  color: #fbbf24;
}

.apv-mock__pill--red {
  background: rgba(220,38,38,0.18);
  color: #f87171;
}

.apv-mock__method {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: rgba(45,107,228,0.25);
  color: var(--apv-blue-aa-dark);
}

.apv-mock__mono {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.apv-mock__match {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.apv-mock__match--err { color: #f87171; }
.apv-mock__match--warn { color: #fbbf24; }
