
:root {
  --vt-primary: #166534;
  --vt-primary-dark: #166534;
  --vt-primary-light: #16a34a;
  --vt-accent: #475569;
  --vt-accent-dark: #475569;
  --vt-accent-light: #94a3b8;
  --vt-white: #ffffff;
  --vt-black: #0f172a;
  --vt-gray-50: #f8fafc;
  --vt-gray-100: #f1f5f9;
  --vt-gray-200: #e2e8f0;
  --vt-gray-300: #cbd5e1;
  --vt-gray-400: #94a3b8;
  --vt-gray-500: #475569;
  --vt-gray-600: #475569;
  --vt-gray-700: #334155;
  --vt-gray-800: #1e293b;
  --vt-gray-900: #0f172a;
  --color-success: #16a34a;
  --color-error: #dc2626;
  --vt-font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --vt-font-head: 'Outfit', system-ui, -apple-system, sans-serif;
  --vt-shd-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --vt-shd-md: 0 4px 10px -2px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --vt-shd-lg: 0 12px 20px -3px rgba(0,0,0,0.1), 0 4px 8px -2px rgba(0,0,0,0.05);
  --vt-shd-xl: 0 20px 30px -8px rgba(0,0,0,0.12), 0 8px 12px -4px rgba(0,0,0,0.06);
  --vt-rd-sm: 0.375rem;
  --vt-rd-md: 0.5rem;
  --vt-rd-lg: 0.75rem;
  --vt-rd-xl: 1rem;
  --vt-rd-full: 9999px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body{
  font-family: var(--vt-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vt-gray-800);
  background-color: var(--vt-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg{
  max-width: 100%;
  height: auto;
  display: block;
}

svg.icon-inline{
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: none;
  vertical-align: -0.125em;
}

a {
  color: var(--vt-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--vt-primary-dark);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vt-font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vt-gray-900);
}

h1{ font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p{
  margin-bottom: 1rem;
  color: var(--vt-gray-600);
}

.vt-viewport {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vt-cmd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--vt-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--vt-rd-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.vt-cmd-exec {
  background: var(--vt-primary);
  color: var(--vt-white);
  border-color: var(--vt-primary);
}

.vt-cmd-exec:hover {
  background: var(--vt-primary-dark);
  border-color: var(--vt-primary-dark);
  color: var(--vt-white);
  transform: translateY(-2px);
  box-shadow: var(--vt-shd-lg);
}

.vt-cmd-alt {
  background: transparent;
  color: var(--vt-white);
  border-color: var(--vt-white);
}

.vt-cmd-alt:hover{
  background: var(--vt-white);
  color: var(--vt-primary);
  transform: translateY(-2px);
}

.vt-cmd-outline{
  background: transparent;
  color: var(--vt-primary);
  border-color: var(--vt-primary);
}

.vt-cmd-outline:hover{
  background: var(--vt-primary);
  color: var(--vt-white);
  transform: translateY(-2px);
  box-shadow: var(--vt-shd-lg);
}

.vt-cmd-accent {
  background: var(--vt-accent);
  color: var(--vt-white);
  border-color: var(--vt-accent);
}

.vt-cmd-accent:hover{
  background: var(--vt-accent-dark);
  border-color: var(--vt-accent-dark);
  color: var(--vt-white);
  transform: translateY(-2px);
  box-shadow: var(--vt-shd-lg);
}

.vt-cmd-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.vt-cmd-icon {
  font-size: 1.1em;
}

.vt-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--vt-white);
  box-shadow: var(--vt-shd-md);
  transition: all var(--transition);
}

.vt-toolbar-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.vt-wordmark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--vt-font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--vt-gray-900);
  text-decoration: none;
  z-index: 1001;
}

.vt-wordmark:hover {
  color: var(--vt-gray-900);
}

.vt-wordmark-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--vt-primary);
  color: var(--vt-white);
  border-radius: var(--vt-rd-md);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vt-sitemap-bool {
  display: none;
}

.vt-sitemap-btn{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.vt-sitemap-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--vt-gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.vt-sitemap{
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vt-sitemap-nodes {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vt-sitemap-node {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--vt-gray-600);
  border-radius: var(--vt-rd-md);
  transition: all var(--transition);
}

.vt-sitemap-node:hover,
.vt-sitemap-node.active {
  color: var(--vt-primary);
  background: rgba(22, 101, 52, 0.06);
}

.vt-sitemap-primary .vt-cmd {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .vt-sitemap-btn{
    display: flex;
  }

  .vt-sitemap{
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--vt-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--vt-shd-xl);
    transition: right var(--transition);
    overflow-y: auto;
  }

  .vt-sitemap-bool:checked ~ .vt-sitemap{
    right: 0;
  }

  .vt-sitemap-bool:checked ~ .vt-sitemap-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .vt-sitemap-bool:checked ~ .vt-sitemap-btn span:nth-child(2){
    opacity: 0;
  }
  .vt-sitemap-bool:checked ~ .vt-sitemap-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .vt-sitemap-nodes {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .vt-sitemap-node {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--vt-gray-100);
  }

  .vt-sitemap-primary {
    margin-top: 1.5rem;
    width: 100%;
  }

  .vt-sitemap-primary .vt-cmd{
    width: 100%;
    justify-content: center;
  }
}

.vt-module {
  padding: 5rem 0;
}

.vt-module-sm{
  padding: 3rem 0;
}

.vt-module-lg {
  padding: 6rem 0;
}

.vt-module-gray {
  background: var(--vt-gray-50);
}

.vt-module-dark {
  background: var(--vt-gray-900);
}

.vt-module-brand{
  background: var(--vt-primary);
}

.vt-module-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.vt-module-head .vt-module-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vt-primary);
  margin-bottom: 0.75rem;
}

.vt-module-head h2 {
  margin-bottom: 1rem;
}

.vt-module-head p {
  font-size: 1.0625rem;
  color: var(--vt-gray-500);
}

.vt-billboard {
  position: relative;
  padding: 10rem 0 6rem;
  background:
    linear-gradient(135deg, rgba(22,101,52,0.9) 0%, rgba(21,128,61,0.85) 50%, rgba(22,163,74,0.88) 100%),
    url('hero-bg.webp') no-repeat;
  background-size: auto, 200% 200%;
  background-position: center, 0% 0%;
  color: var(--vt-white);
  overflow: hidden;
}

.vt-billboard::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vt-billboard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--vt-white), transparent);
  pointer-events: none;
}

.vt-billboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vt-billboard-payload {
  position: relative;
  z-index: 1;
}

.vt-billboard-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--vt-rd-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.vt-billboard h1 {
  color: var(--vt-white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.vt-billboard p{
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.vt-billboard-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vt-billboard-asset{
  position: relative;
  z-index: 1;
}

.vt-billboard-asset img,
.vt-billboard-asset svg {
  border-radius: var(--vt-rd-xl);
  box-shadow: var(--vt-shd-xl);
}

.vt-billboard-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vt-billboard-metric strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--vt-white);
}

.vt-billboard-metric span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Trust Strip --- */
.vt-badges-strip {
  padding: 3rem 0;
  background: var(--vt-gray-50);
  border-bottom: 1px solid var(--vt-gray-200);
}

.vt-badges-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.vt-badges-unit{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--vt-gray-600);
}

.vt-badges-unit-icon {
  font-size: 1.5rem;
}

.vt-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vt-capability-card {
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.vt-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vt-shd-lg);
  border-color: var(--vt-primary-light);
}

.vt-capability-card-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(22, 101, 52, 0.08);
  border-radius: var(--vt-rd-lg);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.vt-capability-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.vt-capability-card p {
  font-size: 0.9375rem;
  flex-grow: 1;
}

.vt-capability-card-link{
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vt-primary);
  margin-top: 1rem;
}

.vt-capability-card-link:hover {
  gap: 0.625rem;
}

.vt-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.vt-segment-card{
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  transition: all var(--transition);
}

.vt-segment-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--vt-shd-lg);
  border-color: var(--vt-primary-light);
}

.vt-segment-icon{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vt-segment-card h4{
  font-size: 0.9375rem;
  color: var(--vt-gray-700);
}

.vt-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.vt-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--vt-gray-200);
}

.vt-workflow-step{
  text-align: center;
  position: relative;
}

.vt-process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--vt-primary);
  color: var(--vt-white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.vt-workflow-step h4 {
  margin-bottom: 0.5rem;
}

.vt-workflow-step p {
  font-size: 0.875rem;
}

.vt-cases-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vt-case-card{
  position: relative;
  border-radius: var(--vt-rd-lg);
  overflow: hidden;
  background: var(--vt-gray-100);
  aspect-ratio: 4/3;
}

.vt-case-card img,
.vt-case-card svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.vt-case-card:hover img,
.vt-case-card:hover svg {
  transform: scale(1.05);
}

.vt-case-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--vt-white);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.vt-case-card:hover .vt-case-hover{
  transform: translateY(0);
}

.vt-case-hover h4{
  color: var(--vt-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.vt-case-hover p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

/* --- Testimonials --- */
.vt-endorsements-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vt-endorsement-card {
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  padding: 2rem;
  position: relative;
}

.vt-endorsement-score {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.vt-endorsement-card blockquote{
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--vt-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.vt-endorsement-by{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vt-endorsement-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vt-primary);
  color: var(--vt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.vt-endorsement-meta strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--vt-gray-800);
}

.vt-endorsement-meta span {
  font-size: 0.8125rem;
  color: var(--vt-gray-500);
}

.vt-faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.vt-kb-entry {
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--vt-white);
}

.vt-kb-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--vt-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vt-gray-800);
  text-align: left;
  transition: all var(--transition);
}

.vt-kb-title:hover {
  color: var(--vt-primary);
}

.vt-kb-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--vt-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.vt-kb-entry.active .vt-kb-toggle {
  transform: rotate(45deg);
}

.vt-kb-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.vt-kb-entry.active .vt-kb-content{
  max-height: 300px;
}

.vt-kb-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--vt-gray-600);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.vt-conversion-bar {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--vt-primary-dark) 0%, var(--vt-primary) 100%);
  color: var(--vt-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vt-conversion-bar::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.vt-conversion-bar h2 {
  color: var(--vt-white);
  margin-bottom: 1rem;
}

.vt-conversion-bar p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vt-cta-buttons{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vt-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vt-about-content h2{
  margin-bottom: 1.5rem;
}

.vt-about-content p {
  margin-bottom: 1rem;
}

.vt-tenets-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vt-tenet-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  transition: all var(--transition);
}

.vt-tenet-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--vt-shd-lg);
}

.vt-tenet-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vt-tenet-card h4{
  margin-bottom: 0.5rem;
}

.vt-tenet-card p {
  font-size: 0.875rem;
}

.vt-changelog {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.vt-changelog::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vt-gray-200);
}

.vt-changelog-entry {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.vt-changelog-entry::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--vt-primary);
  border-radius: 50%;
  border: 3px solid var(--vt-white);
  box-shadow: 0 0 0 2px var(--vt-primary);
  transform: translateX(-50%);
  margin-left: -1px;
}

.vt-changelog-version {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vt-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.vt-changelog-entry h4 {
  margin-bottom: 0.5rem;
}

.vt-changelog-entry p {
  font-size: 0.875rem;
}

.vt-team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vt-team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
  transition: all var(--transition);
}

.vt-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vt-shd-lg);
}

.vt-team-avatar{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vt-primary);
  color: var(--vt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.vt-team-card h4 {
  margin-bottom: 0.25rem;
}

.vt-team-card p{
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.vt-capability-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--vt-gray-200);
}

.vt-capability-detail:nth-child(even) {
  direction: rtl;
}

.vt-capability-detail:nth-child(even) > * {
  direction: ltr;
}

.vt-capability-detail-content h3{
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vt-capability-detail-content p {
  margin-bottom: 1rem;
}

.vt-capability-detail-list {
  margin-top: 1rem;
}

.vt-capability-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--vt-gray-600);
}

.vt-capability-detail-list li::before {
  content: '✓';
  color: var(--vt-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.vt-capability-detail-image {
  border-radius: var(--vt-rd-lg);
  overflow: hidden;
}

.vt-capability-detail-image img,
.vt-capability-detail-image svg {
  width: 100%;
  border-radius: var(--vt-rd-lg);
}

.vt-support-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.vt-support-card{
  background: var(--vt-primary);
  color: var(--vt-white);
  border-radius: var(--vt-rd-xl);
  padding: 2.5rem;
}

.vt-support-card h3 {
  color: var(--vt-white);
  margin-bottom: 0.5rem;
}

.vt-support-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.vt-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vt-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vt-support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--vt-rd-md);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vt-contact-info-text strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
  color: var(--vt-white);
}

.vt-contact-info-text span,
.vt-contact-info-text a{
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.vt-contact-info-text a:hover{
  color: var(--vt-white);
}

.vt-support-form-card {
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-xl);
  padding: 2.5rem;
}

.vt-support-form-card h3{
  margin-bottom: 0.5rem;
}

.vt-support-form-card > p{
  margin-bottom: 2rem;
}

.vt-ui-group{
  margin-bottom: 1.25rem;
}

.vt-ui-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vt-gray-700);
  margin-bottom: 0.375rem;
}

.vt-ui-input,
.vt-ui-select,
.vt-ui-textarea{
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--vt-font-body);
  font-size: 0.9375rem;
  color: var(--vt-gray-800);
  background: var(--vt-gray-50);
  border: 1px solid var(--vt-gray-300);
  border-radius: var(--vt-rd-md);
  transition: all var(--transition);
  outline: none;
}

.vt-ui-input:focus,
.vt-ui-select:focus,
.vt-ui-textarea:focus{
  border-color: var(--vt-primary);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
  background: var(--vt-white);
}

.vt-ui-textarea {
  min-height: 120px;
  resize: vertical;
}

.vt-ui-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vt-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vt-form-checkbox input{
  margin-top: 0.25rem;
  accent-color: var(--vt-primary);
}

.vt-form-checkbox label{
  font-size: 0.8125rem;
  color: var(--vt-gray-600);
  line-height: 1.5;
}

.vt-form-checkbox a {
  color: var(--vt-primary);
  text-decoration: underline;
}

.vt-map-container{
  width: 100%;
  height: 400px;
  border-radius: var(--vt-rd-lg);
  overflow: hidden;
  margin-top: 3rem;
  background: var(--vt-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-coords-map{
  text-align: center;
  color: var(--vt-gray-500);
}

.vt-coords-map-icon{
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vt-page-header{
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--vt-gray-900) 0%, var(--vt-gray-800) 100%);
  color: var(--vt-white);
  text-align: center;
}

.vt-page-header h1{
  color: var(--vt-white);
  margin-bottom: 0.75rem;
}

.vt-page-header p{
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.vt-sitemap-path{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.vt-sitemap-path a {
  color: rgba(255, 255, 255, 0.6);
}

.vt-sitemap-path a:hover {
  color: var(--vt-white);
}

.vt-sitemap-path span{
  color: rgba(255, 255, 255, 0.4);
}

.vt-sitemap-path-current{
  color: rgba(255, 255, 255, 0.9) !important;
}

/* --- Legal Pages --- */
.vt-compliance-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.vt-compliance-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--vt-gray-200);
}

.vt-compliance-body h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.vt-compliance-body p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.vt-compliance-body ul,
.vt-compliance-body ol{
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.vt-compliance-body li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--vt-gray-600);
  line-height: 1.7;
}

.vt-compliance-body ol li{
  list-style: decimal;
}

.vt-legal-update {
  padding: 1rem 1.5rem;
  background: var(--vt-gray-50);
  border-left: 4px solid var(--vt-primary);
  border-radius: var(--vt-rd-sm);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--vt-gray-600);
}

.vt-basement {
  background: var(--vt-gray-900);
  color: var(--vt-gray-400);
  padding-top: 4rem;
}

.vt-basement-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-basement-brand .vt-wordmark {
  color: var(--vt-white);
  margin-bottom: 1rem;
}

.vt-basement-brand p {
  color: var(--vt-gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vt-basement-social{
  display: flex;
  gap: 0.75rem;
}

.vt-basement-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--vt-rd-md);
  color: var(--vt-gray-400);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.vt-basement-social a:hover {
  background: var(--vt-primary);
  color: var(--vt-white);
}

.vt-basement-column h4 {
  color: var(--vt-white);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.vt-basement-nav li{
  margin-bottom: 0.625rem;
}

.vt-basement-nav a {
  color: var(--vt-gray-400);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.vt-basement-nav a:hover {
  color: var(--vt-primary-light);
}

.vt-basement-contact-item{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: var(--vt-gray-400);
}

.vt-basement-contact-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vt-basement-contact-item a {
  color: var(--vt-gray-400);
}

.vt-basement-contact-item a:hover{
  color: var(--vt-primary-light);
}

.vt-basement-disclaimer{
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-basement-disclaimer p{
  font-size: 0.75rem;
  color: var(--vt-gray-500);
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.vt-basement-org{
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-basement-org-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.75rem;
  color: var(--vt-gray-500);
}

.vt-basement-org-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vt-basement-org-label {
  font-weight: 600;
  color: var(--vt-gray-400);
}

.vt-basement-end {
  padding: 1.25rem 0;
}

.vt-basement-end-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.vt-basement-copy {
  font-size: 0.8125rem;
  color: var(--vt-gray-500);
}

.vt-basement-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vt-basement-legal-links a{
  font-size: 0.8125rem;
  color: var(--vt-gray-500);
}

.vt-basement-legal-links a:hover{
  color: var(--vt-primary-light);
}

.vt-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vt-stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--vt-white);
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-rd-lg);
}

.vt-stat-number{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vt-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vt-stat-label{
  font-size: 0.875rem;
  color: var(--vt-gray-500);
}

@media (max-width: 1024px){
  .vt-billboard-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vt-billboard-asset {
    display: none;
  }

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

  .vt-segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .vt-process-grid::before {
    display: none;
  }

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

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

  .vt-about-grid {
    grid-template-columns: 1fr;
  }

  .vt-capability-detail {
    grid-template-columns: 1fr;
  }

  .vt-capability-detail:nth-child(even) {
    direction: ltr;
  }

  .vt-support-grid{
    grid-template-columns: 1fr;
  }

  .vt-basement-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .vt-stats-row{
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .vt-process-grid {
    grid-template-columns: 1fr;
  }

  .vt-endorsements-grid {
    grid-template-columns: 1fr;
  }

  .vt-cases-grid {
    grid-template-columns: 1fr;
  }

  .vt-billboard-metrics {
    flex-direction: column;
    gap: 1.25rem;
  }

  .vt-billboard-buttons{
    flex-direction: column;
  }

  .vt-billboard-buttons .vt-cmd {
    width: 100%;
  }

  .vt-basement-grid {
    grid-template-columns: 1fr;
  }

  .vt-basement-end-inner {
    flex-direction: column;
    text-align: center;
  }

  .vt-basement-legal-links {
    justify-content: center;
  }

  .vt-ui-row {
    grid-template-columns: 1fr;
  }

  .vt-tenets-grid{
    grid-template-columns: 1fr;
  }

  .vt-team-grid {
    grid-template-columns: 1fr;
  }

  .vt-stats-row{
    grid-template-columns: 1fr;
  }

  .vt-badges-strip-inner{
    flex-direction: column;
    gap: 1.25rem;
  }

}

.vt-x-center{ text-align: center; }
.vt-x-white { color: var(--vt-white); }
.vt-mt-1 { margin-top: 0.5rem; }
.vt-mt-2 { margin-top: 1rem; }
.vt-mt-3 { margin-top: 1.5rem; }
.vt-mt-4{ margin-top: 2rem; }
.vt-mb-1 { margin-bottom: 0.5rem; }
.vt-mb-2 { margin-bottom: 1rem; }
.vt-mb-3 { margin-bottom: 1.5rem; }
.vt-mb-4 { margin-bottom: 2rem; }



/* FAQ styles */
.vt-kb-content{opacity:0;max-height:0;overflow:hidden;transition:opacity .3s,max-height .3s}.vt-kb-entry.active .vt-kb-content{opacity:1;max-height:500px}.vt-kb-entry.active .vt-kb-toggle{transform:rotate(45deg)}


/* === VISUAL IDENTITY OVERRIDES === */

/* ── Tech Angular Layout ── */

/* Header: sticky, blur, accent top line */
.vt-toolbar {
  border-top: 3px solid #16a34a !important;
  border-bottom: none !important;
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Hero: diagonal clip-path bg */
.vt-billboard {
  position: relative !important;
  padding: 6rem 0 8rem !important;
  background: linear-gradient(135deg, #166534 0%, #15803d 40%, #16a34a 100%) !important;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%) !important;
  color: #fff !important;
  text-align: left !important;
}
.vt-billboard-payload {
  text-align: left !important;
  color: #fff !important;
}
.vt-billboard-layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.vt-billboard-label {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 4px !important;
}
.vt-billboard-metrics {
  background: rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
}
.vt-billboard-metric {
  color: #fff !important;
}

/* Cards: no border, hover lift */
.vt-capability-card, .vt-segment-card, .vt-case-card, .vt-endorsement-card, .vt-tenet-card, .vt-team-card {
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  transition: all 0.3s ease !important;
}
.vt-capability-card:hover, .vt-case-card:hover, .vt-segment-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
}

/* Buttons: gradient fills */
.vt-cmd {
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.vt-cmd-exec {
  background: linear-gradient(135deg, #166534, #16a34a) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(22,101,52,0.3) !important;
}
.vt-cmd-exec:hover {
  box-shadow: 0 4px 16px rgba(22,101,52,0.4) !important;
  background: linear-gradient(135deg, #14532d, #15803d) !important;
}
.vt-cmd-alt {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
  color: #166534 !important;
  border: none !important;
}

/* Page hero: angular */
.vt-page-header {
  background: linear-gradient(135deg, #166534, #16a34a) !important;
  color: #fff !important;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%) !important;
  padding: 6rem 0 5rem !important;
}

/* Footer: dark, subtle grid-line pattern */
.vt-basement {
  background: #0f172a !important;
  color: rgba(255,255,255,0.7) !important;
  position: relative !important;
}
.vt-basement::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  pointer-events: none !important;
}
.vt-basement a {
  color: #4ade80 !important;
}
.vt-basement-grid {
  position: relative !important;
  z-index: 1 !important;
}

/* Sections */
.vt-module {
  padding: 4.5rem 0 !important;
}

