/* pages.css — page-specific overrides and utility additions */

/* ─── Platform sub-pages ─────────────────────────────────────── */
.vvt-platform-feature-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
}
.vvt-platform-feature-detail__item {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-platform-feature-detail__item h3 { font-size: 1.05rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.5rem; }
.vvt-platform-feature-detail__item p  { font-size: 0.9rem; color: var(--vvt-fg-light-secondary); }

/* ─── Methodology accuracy metric ───────────────────────────── */
.vvt-method-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
  text-align: center;
  margin-top: 2rem;
}
.vvt-method-stat__value {
  font-family: var(--vvt-font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--vvt-teal-aa-light);
  display: block;
}
.vvt-method-stat__label { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }

/* ─── Resources hub ──────────────────────────────────────────── */
.vvt-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vvt-gap);
}
.vvt-resource-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  box-shadow: var(--vvt-shadow-card-light);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.375rem 1.25rem;
  align-items: start;
  transition: transform 0.2s ease;
}
.vvt-resource-card__icon { grid-row: 1 / -1; }
.vvt-resource-card .vvt-badge,
.vvt-resource-card h3,
.vvt-resource-card p,
.vvt-resource-card .vvt-resource-card__link { grid-column: 2; }
.vvt-resource-card:hover { transform: translateY(-2px); }
.vvt-resource-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--vvt-bg-light-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vvt-teal-aa-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.vvt-resource-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.375rem; }
.vvt-resource-card p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-bottom: 0.75rem; }
.vvt-resource-card a.vvt-resource-link { font-size: 0.875rem; font-weight: 500; color: var(--vvt-teal-aa-light); }

/* ─── Blog article related posts ─────────────────────────────── */
.vvt-related-section {
  background: var(--vvt-bg-light);
  padding: var(--vvt-section-py) 0;
}
.vvt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
}

/* ─── Back link ──────────────────────────────────────────────── */
.vvt-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vvt-teal-aa-light);
  margin-bottom: 1.25rem;
}
.vvt-back-link:hover { gap: 0.625rem; }

/* ─── Signup page (wider card) ───────────────────────────────── */
.vvt-auth-card--wide { max-width: 520px; }

/* ─── About story section ────────────────────────────────────── */
.vvt-story-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.vvt-story-layout h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--vvt-fg-light-primary); margin-bottom: 1rem; }
.vvt-story-layout p  { color: var(--vvt-fg-light-secondary); margin-bottom: 1rem; }

.vvt-story-sidebar {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-story-sidebar__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vvt-border-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.vvt-story-sidebar__item:last-child { border-bottom: none; }
.vvt-story-sidebar__item span:first-child { color: var(--vvt-fg-light-muted); }
.vvt-story-sidebar__item span:last-child  { color: var(--vvt-fg-light-primary); font-weight: 500; }

/* ─── Platform card link arrow ───────────────────────────────── */
.vvt-platform-card { cursor: pointer; }

/* ─── Pricing toggle ─────────────────────────────────────────── */
.vvt-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.vvt-pricing-toggle__label { font-size: 0.9rem; font-weight: 500; color: var(--vvt-fg-light-secondary); }
.vvt-pricing-toggle__label--active { color: var(--vvt-fg-light-primary); font-weight: 600; }
.vvt-pricing-toggle__badge {
  background: rgba(0, 130, 108, 0.1);
  color: var(--vvt-teal-aa-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
}

/* ─── Hero abstract SVG container ───────────────────────────── */
.vvt-hero-svg-wrap { display: flex; justify-content: flex-end; align-items: center; }

/* ─── Coverage map wrapper ───────────────────────────────────── */
.vvt-coverage-map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.vvt-coverage-map-wrap svg { max-width: 100%; height: auto; }

/* ─── Features list (portfolio analytics) ───────────────────── */
.vvt-features-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--vvt-border-light);
}
.vvt-features-list__item:last-child { border-bottom: none; }
.vvt-features-list__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 130, 108, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vvt-teal-aa-light);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.vvt-features-list__body h3 { font-size: 1rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.3rem; }
.vvt-features-list__body p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }

/* ─── Scale band ─────────────────────────────────────────────── */
.vvt-scale-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 0;
  background: var(--vvt-bg-light-alt);
  border-radius: 10px;
  margin-top: 2rem;
}
.vvt-scale-band__stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.vvt-scale-band__num {
  font-family: var(--vvt-font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--vvt-fg-light-primary);
  line-height: 1;
  display: block;
}
.vvt-scale-band__label { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-top: 0.375rem; display: block; }
.vvt-scale-band__divider {
  width: 1px;
  height: 56px;
  background: var(--vvt-border-light);
  flex-shrink: 0;
}

/* ─── Dark-alt section ────────────────────────────────────────── */
.vvt-section--dark-alt {
  background: var(--vvt-bg-dark-alt);
  padding: var(--vvt-section-py) 0;
}
.vvt-section--dark-alt h2 { color: var(--vvt-fg-dark-primary); }
.vvt-section--dark-alt p  { color: var(--vvt-fg-dark-secondary); }
.vvt-section--dark-alt .vvt-section__header h2 { color: var(--vvt-fg-dark-primary); }
.vvt-section--dark-alt .vvt-section__header p  { color: var(--vvt-fg-dark-secondary); }

/* ─── API section text + points ──────────────────────────────── */
.vvt-api-section__text p { font-size: 0.9375rem; color: var(--vvt-fg-light-secondary); margin-bottom: 1rem; }
.vvt-api-section__points { list-style: none; padding: 0; margin: 1rem 0; }
.vvt-api-section__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--vvt-fg-light-secondary);
  padding: 0.375rem 0;
}
.vvt-api-section__points li i { color: var(--vvt-teal-aa-light); font-size: 0.85rem; margin-top: 2px; }

/* ─── Export formats grid ─────────────────────────────────────── */
.vvt-export-formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.vvt-export-format-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-export-format-card__icon {
  color: var(--vvt-teal-aa-light);
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 20px;
  margin-top: 1px;
}
.vvt-export-format-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.25rem; }
.vvt-export-format-card p  { font-size: 0.8rem; color: var(--vvt-fg-light-secondary); }

/* ─── Subhero centered inner ─────────────────────────────────── */
.vvt-subhero__inner--centered {
  display: block;
  text-align: center;
  max-width: var(--vvt-container-max);
  margin: 0 auto;
}

/* ─── Subhero light-alt ──────────────────────────────────────── */
.vvt-subhero--light-alt {
  background: var(--vvt-bg-light-alt);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.vvt-subhero--light-alt .vvt-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vvt-side-pad) clamp(60px, 8vw, 100px);
}
.vvt-subhero--light-alt h1 { color: var(--vvt-fg-light-primary); }
.vvt-subhero--light-alt p  { color: var(--vvt-fg-light-secondary); }
.vvt-subhero--light-alt .vvt-eyebrow { color: var(--vvt-teal-aa-light); }

/* ─── Use-case visual column ─────────────────────────────────── */
.vvt-subhero__visual-col { display: flex; justify-content: flex-end; align-items: center; }
.vvt-uc-diagram { max-width: 100%; height: auto; }

/* ─── Use-case apps grid ──────────────────────────────────────── */
.vvt-uc-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vvt-gap);
}
.vvt-uc-app-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-uc-app-card h3 { font-size: 1rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.4rem; }
.vvt-uc-app-card p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }

/* ─── Workflow compare (col variant) ─────────────────────────── */
/* Override the 3-column (before/arrow/after) template from components.css
   when the HTML uses __col children instead of __before/__after/__arrow */
.vvt-workflow-compare:has(> .vvt-workflow-compare__col) {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.vvt-workflow-compare__col {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-workflow-compare__col--before { border-left: 3px solid var(--vvt-red); }
.vvt-workflow-compare__col--after  { border-left: 3px solid var(--vvt-teal-aa-light); }
.vvt-workflow-compare__col h3 { font-size: 1.05rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.5rem; }
.vvt-workflow-compare__col p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }
.vvt-workflow-compare__col ul { padding-left: 1.25rem; margin: 0.75rem 0; }
.vvt-workflow-compare__col li { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-bottom: 0.375rem; }

/* ─── Methodology pipeline diagram ──────────────────────────── */
.vvt-pipeline-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 2.5rem;
}
.vvt-pipeline-diagram svg { max-width: 100%; height: auto; }

/* ─── Methodology steps ──────────────────────────────────────── */
.vvt-methodology-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
  margin-top: 1rem;
}
.vvt-method-step {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-method-step__num {
  font-family: var(--vvt-font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--vvt-teal-aa-light);
  margin-bottom: 0.75rem;
}
.vvt-method-step__body h3 { font-size: 0.9375rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.375rem; }
.vvt-method-step__body p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }

/* ─── Methodology stats ──────────────────────────────────────── */
.vvt-methodology-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
  text-align: center;
  margin: 2rem 0;
}
.vvt-methodology-stat {}
.vvt-methodology-stat__num {
  font-family: var(--vvt-font-mono);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--vvt-teal-aa-light);
  display: block;
  line-height: 1;
}
.vvt-methodology-stat__label { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-top: 0.375rem; display: block; }
.vvt-methodology-note { font-size: 0.8rem; color: var(--vvt-fg-light-muted); text-align: center; margin-top: 1rem; }

/* ─── Pricing grid ────────────────────────────────────────────── */
.vvt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.vvt-pricing-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--vvt-shadow-card-light);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Featured card — dark bg AFTER base card rule */
.vvt-pricing-card--featured {
  background: var(--vvt-bg-dark);
  border-color: var(--vvt-teal-aa-dark);
  box-shadow: 0 8px 32px rgba(0, 180, 150, 0.2);
}

.vvt-pricing-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vvt-border-light);
}
.vvt-pricing-card--featured .vvt-pricing-card__header { border-bottom-color: rgba(255,255,255,0.12); }

.vvt-pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vvt-fg-light-muted);
  margin-bottom: 0.75rem;
  display: block;
}
.vvt-pricing-card--featured .vvt-pricing-card__tier { color: var(--vvt-teal-aa-dark); }

.vvt-pricing-card__price { display: flex; align-items: baseline; gap: 0.25rem; }
.vvt-pricing-card__amount {
  font-family: var(--vvt-font-mono);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--vvt-fg-light-primary);
  line-height: 1;
}
.vvt-pricing-card--featured .vvt-pricing-card__amount { color: var(--vvt-fg-dark-primary); }

.vvt-pricing-card__period { font-size: 0.875rem; color: var(--vvt-fg-light-muted); }
.vvt-pricing-card--featured .vvt-pricing-card__period { color: var(--vvt-fg-dark-secondary); }

.vvt-pricing-card__pitch { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-top: 0.5rem; }
.vvt-pricing-card--featured .vvt-pricing-card__pitch { color: var(--vvt-fg-dark-secondary); }

.vvt-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vvt-teal-aa-dark);
  color: var(--vvt-bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 14px;
  border-radius: 999px;
}

.vvt-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.vvt-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--vvt-fg-light-secondary);
  padding: 0.4rem 0;
}
.vvt-pricing-card--featured .vvt-pricing-card__features li { color: var(--vvt-fg-dark-secondary); }

.vvt-pricing-card__features li i {
  color: var(--vvt-teal-aa-light);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.vvt-pricing-card--featured .vvt-pricing-card__features li i { color: var(--vvt-teal-aa-dark); }

.vvt-pricing-card__cta { margin-top: auto; }
.vvt-pricing-card__cta .vvt-btn { width: 100%; justify-content: center; }

/* ─── Data table ──────────────────────────────────────────────── */
.vvt-data-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--vvt-border-light);
  box-shadow: var(--vvt-shadow-card-light);
}
.vvt-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.vvt-data-table thead { background: var(--vvt-bg-light-alt); }
.vvt-data-table th {
  text-align: left;
  padding: 0.875rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vvt-fg-light-muted);
  white-space: nowrap;
}
.vvt-data-table td {
  padding: 0.875rem 1.25rem;
  color: var(--vvt-fg-light-secondary);
  border-top: 1px solid var(--vvt-border-light);
  vertical-align: top;
}
.vvt-data-table td:first-child { color: var(--vvt-fg-light-primary); font-weight: 500; }
.vvt-data-table tbody tr:hover { background: var(--vvt-bg-light); }

/* ─── About story ─────────────────────────────────────────────── */
.vvt-about-story {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.vvt-about-story__text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--vvt-fg-light-primary); margin-bottom: 1rem; }
.vvt-about-story__text p  { color: var(--vvt-fg-light-secondary); margin-bottom: 1rem; line-height: 1.75; }

/* ─── Team grid ───────────────────────────────────────────────── */
.vvt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vvt-gap);
}
.vvt-team-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--vvt-shadow-card-light);
  text-align: center;
}
.vvt-team-card__img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.vvt-team-card__img { width: 100%; height: 100%; object-fit: cover; }
.vvt-team-card__name { font-size: 1rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin-bottom: 0.2rem; }
.vvt-team-card__role { font-size: 0.8rem; color: var(--vvt-teal-aa-light); font-weight: 500; margin-bottom: 0.625rem; }
.vvt-team-card__bio  { font-size: 0.8125rem; color: var(--vvt-fg-light-secondary); line-height: 1.6; }

/* Letter-circle avatar */
.vvt-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--av-bg, #1A3A4A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  font-family: var(--vvt-font-sans);
  margin: 0 auto;
}

/* ─── Values grid ─────────────────────────────────────────────── */
.vvt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvt-gap);
}
.vvt-value-card {
  background: var(--vvt-bg-dark-alt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2rem;
}
.vvt-value-card__icon {
  font-size: 1.75rem;
  color: var(--vvt-teal-aa-dark);
  margin-bottom: 1rem;
}
.vvt-value-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--vvt-fg-dark-primary); margin-bottom: 0.5rem; }
.vvt-value-card p  { font-size: 0.875rem; color: var(--vvt-fg-dark-secondary); }

/* ─── Contact layout ──────────────────────────────────────────── */
.vvt-contact-hero {
  background: var(--vvt-bg-dark);
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 80px);
}
.vvt-contact-hero .vvt-container { max-width: 700px; }
.vvt-contact-hero h1 { color: var(--vvt-fg-dark-primary); font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.vvt-contact-hero p  { color: var(--vvt-fg-dark-secondary); font-size: 1.0625rem; margin-top: 0.75rem; }
.vvt-contact-hero .vvt-eyebrow { color: var(--vvt-teal-aa-dark); }

.vvt-contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.vvt-contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: var(--vvt-fg-light-primary); margin-bottom: 1.5rem; }
.vvt-contact-form { display: flex; flex-direction: column; gap: 1rem; }

.vvt-contact-sidebar {
  background: var(--vvt-bg-light-alt);
  border: 1px solid var(--vvt-border-light);
  border-radius: 10px;
  padding: 1.75rem;
}
.vvt-contact-sidebar__block { margin-bottom: 1.5rem; }
.vvt-contact-sidebar__block:last-child { margin-bottom: 0; }
.vvt-contact-sidebar__block h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vvt-fg-light-muted); margin-bottom: 0.5rem; }
.vvt-contact-sidebar__block p  { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); }
.vvt-contact-sidebar__block a  { color: var(--vvt-teal-aa-light); }
.vvt-contact-sidebar__address  { font-style: normal; font-size: 0.875rem; color: var(--vvt-fg-light-secondary); line-height: 1.7; }
.vvt-contact-sidebar__block ul { list-style: disc; padding-left: 1.125rem; }
.vvt-contact-sidebar__block li { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); margin-bottom: 0.375rem; }

/* ─── Form primitives ─────────────────────────────────────────── */
.vvt-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.vvt-form-label { font-size: 0.875rem; font-weight: 500; color: var(--vvt-fg-light-primary); display: block; }
.vvt-form-req   { color: var(--vvt-red); }
.vvt-form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: var(--vvt-font-sans);
  color: var(--vvt-fg-light-primary);
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.vvt-form-input:focus { outline: none; border-color: var(--vvt-teal-aa-light); box-shadow: 0 0 0 3px rgba(0, 130, 108, 0.12); }
.vvt-form-input::placeholder { color: var(--vvt-fg-light-muted); }
.vvt-form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.vvt-form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
option { background: var(--vvt-bg-white); color: var(--vvt-fg-light-primary); }

/* Auth forms — dark context */
.vvt-page--auth .vvt-form-label { color: var(--vvt-fg-dark-primary); }
.vvt-page--auth .vvt-form-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--vvt-fg-dark-primary);
}
.vvt-page--auth .vvt-form-input:focus { border-color: var(--vvt-teal-aa-dark); box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15); }
.vvt-page--auth .vvt-form-input::placeholder { color: rgba(255,255,255,0.35); }

/* ─── Auth card layout ────────────────────────────────────────── */
.vvt-auth-page {
  min-height: 100vh;
  background: var(--vvt-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem clamp(24px, 8vw, 80px);
}
.vvt-auth-header {
  width: 100%;
  max-width: 520px;
  margin-bottom: 2rem;
}
.vvt-auth-header__logo img { height: 32px; width: auto; }

.vvt-auth-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.vvt-auth-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vvt-fg-dark-primary);
  margin-bottom: 0.5rem;
}
.vvt-auth-card__sub {
  font-size: 0.9rem;
  color: var(--vvt-fg-dark-secondary);
  margin-bottom: 2rem;
}
.vvt-auth-card__footer {
  font-size: 0.875rem;
  color: var(--vvt-fg-dark-secondary);
  text-align: center;
  margin-top: 1.5rem;
}
.vvt-auth-card__footer a { color: var(--vvt-teal-aa-dark); }

.vvt-auth-form { display: flex; flex-direction: column; gap: 1rem; }
.vvt-auth-form__actions { display: flex; justify-content: flex-end; }
.vvt-auth-form__forgot { font-size: 0.8125rem; color: var(--vvt-fg-dark-secondary); }
.vvt-auth-form__forgot:hover { color: var(--vvt-teal-aa-dark); }
.vvt-auth-form__submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.vvt-auth-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.vvt-auth-page__legal {
  font-size: 0.8rem;
  color: var(--vvt-fg-dark-secondary);
  text-align: center;
  margin-top: 1.5rem;
  max-width: 440px;
}
.vvt-auth-page__legal a { color: var(--vvt-fg-dark-secondary); text-decoration: underline; }

/* ─── Blog grid + article ─────────────────────────────────────── */
.vvt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.vvt-blog-grid--3 { grid-template-columns: repeat(3, 1fr); }

.vvt-blog-card {
  background: var(--vvt-bg-white);
  border: 1px solid var(--vvt-border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--vvt-shadow-card-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vvt-blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

.vvt-blog-card__img-link { display: block; overflow: hidden; }
.vvt-blog-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.vvt-blog-card:hover .vvt-blog-card__img { transform: scale(1.03); }

.vvt-blog-card__body { padding: 1.25rem 1.375rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.vvt-blog-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vvt-teal-aa-light);
  background: rgba(0, 130, 108, 0.08);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 0.625rem;
}
.vvt-blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vvt-fg-light-primary);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.vvt-blog-card__title a { color: inherit; }
.vvt-blog-card__title a:hover { color: var(--vvt-teal-aa-light); }
.vvt-blog-card h3.vvt-blog-card__title { font-size: 0.9375rem; }
.vvt-blog-card__summary { font-size: 0.875rem; color: var(--vvt-fg-light-secondary); flex: 1; margin-bottom: 0.75rem; line-height: 1.6; }
.vvt-blog-card__meta { font-size: 0.8rem; color: var(--vvt-fg-light-muted); margin-top: auto; }

/* ─── Blog article page ──────────────────────────────────────── */
.vvt-blog-article { background: var(--vvt-bg-white); }
.vvt-article-header {
  background: var(--vvt-bg-light-alt);
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 56px);
}
.vvt-article-header__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--vvt-side-pad);
}
.vvt-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--vvt-teal-aa-light);
  margin-bottom: 1rem;
}
.vvt-article-back:hover { gap: 0.75rem; }
.vvt-article-header h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--vvt-fg-light-primary); margin: 0.75rem 0 1rem; line-height: 1.3; }
.vvt-article-header__meta { font-size: 0.875rem; color: var(--vvt-fg-light-muted); display: flex; align-items: center; gap: 0.5rem; }
.vvt-article-header__sep { opacity: 0.4; }

.vvt-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 2rem auto;
  max-width: 900px;
}

.vvt-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem var(--vvt-side-pad) 4rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--vvt-fg-light-secondary);
}
.vvt-article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--vvt-fg-light-primary); margin: 2.5rem 0 1rem; }
.vvt-article-body h3 { font-size: 1.15rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin: 1.75rem 0 0.75rem; }
.vvt-article-body p { margin-bottom: 1.25rem; }
.vvt-article-body ul, .vvt-article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.vvt-article-body li { margin-bottom: 0.375rem; }
.vvt-article-body a { color: var(--vvt-teal-aa-light); text-decoration: underline; }
.vvt-article-body blockquote {
  border-left: 3px solid var(--vvt-teal-aa-light);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--vvt-fg-light-primary);
}

/* ─── Related posts section ───────────────────────────────────── */
.vvt-related-posts {
  background: var(--vvt-bg-light-alt);
  padding: clamp(48px, 6vw, 72px) 0;
}
.vvt-related-posts__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vvt-fg-light-primary);
  margin-bottom: 2rem;
}

/* ─── Legal content ───────────────────────────────────────────── */
.vvt-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem var(--vvt-side-pad) 5rem;
}
.legal-article { font-size: 0.9375rem; line-height: 1.75; color: var(--vvt-fg-light-secondary); }
.legal-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--vvt-border-light); }
.legal-header h1 { font-size: 1.75rem; font-weight: 700; color: var(--vvt-fg-light-primary); margin-bottom: 0.75rem; }
.legal-meta { font-size: 0.8125rem; color: var(--vvt-fg-light-muted); }
.legal-article h2 { font-size: 1.2rem; font-weight: 700; color: var(--vvt-fg-light-primary); margin: 2.5rem 0 0.875rem; }
.legal-article h3 { font-size: 1rem; font-weight: 600; color: var(--vvt-fg-light-primary); margin: 1.5rem 0 0.5rem; }
.legal-article p { margin-bottom: 1rem; }
.legal-article ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-article li { margin-bottom: 0.375rem; }
.legal-article a { color: var(--vvt-teal-aa-light); }
.legal-article address { font-style: normal; border: 1px solid var(--vvt-border-light); border-radius: 6px; padding: 1rem 1.25rem; background: var(--vvt-bg-light-alt); line-height: 1.8; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.legal-table th, .legal-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--vvt-border-light); }
.legal-table th { background: var(--vvt-bg-light-alt); font-weight: 600; color: var(--vvt-fg-light-primary); }
.legal-table td { color: var(--vvt-fg-light-secondary); }

/* ─── Responsive additions ───────────────────────────────────── */
@media (max-width: 1024px) {
  .vvt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .vvt-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .vvt-platform-feature-detail { grid-template-columns: 1fr; }
  .vvt-method-stat-row { grid-template-columns: 1fr; }
  .vvt-resources-grid { grid-template-columns: 1fr; }
  .vvt-related-grid { grid-template-columns: 1fr; }
  .vvt-story-layout { grid-template-columns: 1fr; }
  .vvt-about-story { grid-template-columns: 1fr; }
  .vvt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .vvt-values-grid { grid-template-columns: 1fr; }
  .vvt-contact-layout { grid-template-columns: 1fr; }
  .vvt-blog-grid { grid-template-columns: 1fr; }
  .vvt-blog-grid--3 { grid-template-columns: 1fr; }
  .vvt-methodology-steps { grid-template-columns: 1fr; }
  .vvt-methodology-stats { grid-template-columns: 1fr; }
  .vvt-uc-apps-grid { grid-template-columns: 1fr; }
  .vvt-export-formats-grid { grid-template-columns: 1fr; }
  .vvt-scale-band { flex-direction: column; gap: 1.5rem; }
  .vvt-scale-band__divider { width: 80px; height: 1px; }
  .vvt-subhero--light-alt .vvt-subhero__inner { grid-template-columns: 1fr; }
  .vvt-auth-form__row { grid-template-columns: 1fr; }
  .vvt-article-header__inner { max-width: 100%; }
  .vvt-blog-article__cover { margin: 1.5rem 0; border-radius: 6px; }
}
