/* ============================================================
   VirtualiTech — Hoja de estilos centralizada
   v2.0 — Reescritura completa 2026-03-21
   Fuentes: Ubuntu (títulos) + Roboto (cuerpo) via Google Fonts
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --vt-dark:       #1a2a35;
  --vt-dark-mid:   #2d4a5a;
  --vt-nav:        #343d46;
  --vt-nav-hover:  #8aa8b0;
  --vt-orange:     #f26101;
  --vt-orange-dk:  #d45400;
  --vt-blue-gray:  #8aa8b0;
  --vt-text:       #445566;
  --vt-text-light: #667788;
  --vt-border:     #e0e8ec;
  --vt-bg-gray:    #f7f9fa;
  --vt-bg-white:   #ffffff;
  --vt-shadow-sm:  0 2px 16px rgba(0,0,0,.07);
  --vt-shadow-md:  0 8px 28px rgba(0,0,0,.13);
  --vt-shadow-lg:  0 12px 40px rgba(0,0,0,.18);
  --vt-radius:     10px;
  --vt-radius-sm:  6px;
  --vt-radius-lg:  14px;
  --vt-nav-h:      72px;
  --vt-bar-h:      46px;
  --font-head:     'Ubuntu', sans-serif;
  --font-body:     'Roboto', sans-serif;
  --transition:    all .2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;  /* always show scrollbar — prevents layout shift */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vt-text);
  background: var(--vt-bg-white);
  padding-top: var(--vt-nav-h);
  padding-bottom: var(--vt-bar-h);
  /* Never block scroll */
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ── Typography helpers ─────────────────────────────────────── */
.vt-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vt-orange);
  display: block;
  margin-bottom: 12px;
}

.vt-h1 {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 1px;
}

.vt-h2 {
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--vt-dark);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.vt-h3 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--vt-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.vt-lead {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--vt-text-light);
  max-width: 620px;
}

/* ── Layout containers ──────────────────────────────────────── */
.vt-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.vt-section {
  padding: 76px 24px;
}

.vt-section--gray   { background: var(--vt-bg-gray); }
.vt-section--dark   { background: var(--vt-dark); }
.vt-section--dark-mid { background: linear-gradient(135deg, var(--vt-dark), var(--vt-dark-mid)); }
.vt-section--orange { background: linear-gradient(135deg, var(--vt-orange), var(--vt-orange-dk)); }

.vt-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.vt-section-header .vt-lead {
  margin: 0 auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.vt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--vt-nav-h);
  background: var(--vt-nav);
  z-index: 10001;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.vt-nav__logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: var(--vt-nav-h);
  flex-shrink: 0;
  text-decoration: none;
}

.vt-nav__logo img {
  height: 48px;
  width: auto;
  max-width: 66px;
  object-fit: contain;
}

.vt-nav__links {
  display: flex;
  align-items: center;
  flex: 1;
  height: var(--vt-nav-h);
  overflow: hidden;
}

.vt-nav__link {
  display: inline-flex;
  align-items: center;
  height: var(--vt-nav-h);
  padding: 0 13px;
  font-family: var(--font-head);
  font-size: .77rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}

.vt-nav__link:hover { color: var(--vt-blue-gray); }

.vt-nav__link--active {
  color: var(--vt-orange) !important;
  border-left:  2px solid var(--vt-orange);
  border-right: 2px solid var(--vt-orange);
}

/* Mobile hamburger */
.vt-nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 18px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: var(--vt-nav-h);
}

.vt-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.vt-nav__mobile {
  display: none;
  position: fixed;
  top: var(--vt-nav-h);
  left: 0; right: 0;
  background: var(--vt-nav);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  z-index: 10000;
}

.vt-nav__mobile a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-size: .84rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s, background .15s;
}

.vt-nav__mobile a:hover { background: rgba(255,255,255,.05); }
.vt-nav__mobile a.active { color: var(--vt-orange); }

@media (max-width: 960px) {
  .vt-nav__links  { display: none !important; }
  .vt-nav__burger { display: flex !important; }
}

/* ── Bottom info bar ────────────────────────────────────────── */
.vt-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--vt-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -2px 10px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--vt-blue-gray);
}

.vt-bottom-bar a {
  color: var(--vt-blue-gray);
  text-decoration: none;
  transition: color .2s;
}

.vt-bottom-bar a:hover { color: #fff; }

.vt-bottom-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vt-bottom-bar svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* ── WhatsApp float ─────────────────────────────────────────── */
.vt-wa {
  position: fixed;
  bottom: 62px;
  right: 26px;
  z-index: 9999;
  text-decoration: none;
  filter: drop-shadow(0 4px 12px rgba(37,211,102,.4));
  transition: transform .2s ease;
}

.vt-wa:hover { transform: scale(1.08); }

.vt-wa svg { width: 56px; height: 56px; display: block; }

.vt-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.45);
  animation: vt-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes vt-pulse {
  0%   { transform: scale(.88); opacity: .8; }
  70%  { transform: scale(1.26); opacity: 0; }
  100% { transform: scale(.88); opacity: 0; }
}

@media (max-width: 575px) {
  .vt-wa { bottom: 68px; right: 14px; }
  .vt-wa svg { width: 50px; height: 50px; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.vt-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vt-dark);
}

.vt-hero--short { min-height: 58vh; }

.vt-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.vt-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.vt-hero__overlay {
  position: absolute;
  inset: 0;
}

.vt-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 24px 60px;
}

.vt-hero__badge {
  display: inline-block;
  background: var(--vt-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.vt-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
}

.vt-hero__sub {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: rgba(255,255,255,.80);
  max-width: 680px;
  line-height: 1.72;
  margin-bottom: 34px;
}

.vt-hero__arrow {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  font-size: 1.6rem;
  text-decoration: none;
  animation: vt-bounce 2.2s ease-in-out infinite;
  z-index: 1;
}

@keyframes vt-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.vt-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: var(--vt-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.vt-btn--primary {
  background: var(--vt-orange);
  color: #fff;
}
.vt-btn--primary:hover { background: var(--vt-orange-dk); }

.vt-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.vt-btn--outline-white:hover { border-color: rgba(255,255,255,.85); }

.vt-btn--outline-dark {
  background: transparent;
  color: var(--vt-dark);
  border: 2px solid var(--vt-dark);
}
.vt-btn--outline-dark:hover { background: var(--vt-dark); color: #fff; }

.vt-btn--dark {
  background: var(--vt-dark);
  color: #fff;
}
.vt-btn--dark:hover { background: var(--vt-dark-mid); }

.vt-btn--white {
  background: #fff;
  color: var(--vt-orange);
  font-weight: 700;
}
.vt-btn--white:hover { background: rgba(255,255,255,.9); }

.vt-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Badges ─────────────────────────────────────────────────── */
.vt-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  border: 1px solid currentColor;
  opacity: .85;
}

/* ── Stats row ──────────────────────────────────────────────── */
.vt-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.vt-stat__num {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 300;
  color: var(--vt-orange);
  line-height: 1;
}

.vt-stat__label {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

.vt-stats--dark .vt-stat__label { color: var(--vt-text-light); }

/* ── Cards ──────────────────────────────────────────────────── */
.vt-grid {
  display: grid;
  gap: 26px;
}

.vt-grid--2 { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); }
.vt-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.vt-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.vt-card {
  background: var(--vt-bg-white);
  border-radius: var(--vt-radius);
  box-shadow: var(--vt-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.vt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vt-shadow-md);
}

.vt-card__img {
  height: 188px;
  overflow: hidden;
  position: relative;
}

.vt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.vt-card:hover .vt-card__img img { transform: scale(1.05); }

.vt-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--vt-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

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

.vt-card__link {
  color: var(--vt-orange);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  display: inline-block;
}

/* Feature icon cards */
.vt-feature {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  background: var(--vt-bg-white);
  transition: box-shadow .2s;
}

.vt-feature:hover { box-shadow: var(--vt-shadow-sm); }

.vt-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--vt-orange);
}

.vt-feature__icon svg { width: 22px; height: 22px; }

/* Bordered service cards */
.vt-service-card {
  background: var(--vt-bg-gray);
  border-radius: var(--vt-radius);
  padding: 30px;
}

.vt-service-card--orange { border-left: 4px solid var(--vt-orange); }
.vt-service-card--blue   { border-left: 4px solid #1565C0; }
.vt-service-card--green  { border-left: 4px solid #2E7D32; }
.vt-service-card--teal   { border-left: 4px solid #00796B; }

.vt-service-card ul {
  padding-left: 18px;
  font-size: .88rem;
  color: var(--vt-text-light);
  line-height: 2;
  margin: 12px 0 0;
}

/* Client cards */
.vt-client-card {
  background: var(--vt-bg-white);
  border-radius: var(--vt-radius);
  box-shadow: var(--vt-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}

.vt-client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vt-shadow-md);
}

.vt-client-card__logo {
  padding: 22px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.vt-client-card__logo svg { width: 180px; height: 68px; }

.vt-client-card__body { padding: 4px 18px 18px; flex: 1; }

.vt-client-card__foot {
  padding: 0 18px 16px;
}

.vt-client-card__foot a {
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
}

/* Dark box (case study) */
.vt-case {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--vt-radius);
  padding: 28px;
}

.vt-case__metric-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--vt-orange);
  font-weight: 300;
  line-height: 1;
}

.vt-case__metric-lbl {
  font-size: .78rem;
  color: var(--vt-blue-gray);
  margin-top: 2px;
}

/* ── Process steps ──────────────────────────────────────────── */
.vt-steps { display: flex; flex-direction: column; }

.vt-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--vt-border);
}

.vt-step:last-child { border-bottom: none; }

.vt-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vt-orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Sector icons ────────────────────────────────────────────── */
.vt-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}

.vt-sector {
  background: var(--vt-bg-gray);
  border-radius: var(--vt-radius);
  padding: 22px 16px;
  text-align: center;
}

.vt-sector__em { font-size: 1.8rem; margin-bottom: 10px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.vt-faq__item {
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}

.vt-faq__q {
  width: 100%;
  text-align: left;
  background: var(--vt-bg-white);
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 400;
  color: var(--vt-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}

.vt-faq__q:hover { background: var(--vt-bg-gray); }

.vt-faq__icon {
  font-size: 1.4rem;
  color: var(--vt-orange);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}

.vt-faq__a {
  display: none;
  padding: 0 20px 18px;
  font-size: .92rem;
  color: var(--vt-text);
  line-height: 1.72;
}

.vt-faq__a.open { display: block; }

/* ── Tech grid ──────────────────────────────────────────────── */
.vt-tech-card {
  background: var(--vt-bg-white);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 22px;
}

.vt-tech-card__title {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--vt-dark);
  font-size: .95rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vt-orange);
  margin-bottom: 12px;
}

.vt-tech-card ul {
  padding-left: 16px;
  font-size: .87rem;
  color: var(--vt-text-light);
  line-height: 2;
  margin: 0;
}

/* ── Brand chips ─────────────────────────────────────────────── */
.vt-brands {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vt-brand {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--vt-radius-sm);
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: #fff;
}

/* ── About feature list ──────────────────────────────────────── */
.vt-about-features { display: flex; flex-direction: column; gap: 20px; }

.vt-about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vt-about-feature__icon {
  width: 44px;
  height: 44px;
  background: var(--vt-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-about-feature__icon svg { width: 20px; height: 20px; }

/* ── Footer ─────────────────────────────────────────────────── */
.vt-footer {
  background: var(--vt-dark);
  color: var(--vt-blue-gray);
  padding: 48px 24px 24px;
}

.vt-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1140px;
  margin: 0 auto 36px;
}

.vt-footer__col h4 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vt-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vt-footer__col a {
  color: var(--vt-blue-gray);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.vt-footer__col a:hover { color: #fff; }

.vt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  font-size: .83rem;
}

.vt-footer__copy { color: rgba(255,255,255,.4); }

/* ── Social icons ────────────────────────────────────────────── */
.vt-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vt-social__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}

.vt-social__link:hover { opacity: .8; transform: translateY(-2px); }
.vt-social__link svg   { width: 17px; height: 17px; }

/* ── CTA section ─────────────────────────────────────────────── */
.vt-cta {
  text-align: center;
  padding: 76px 24px;
}

.vt-cta__h2 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}

.vt-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Form ────────────────────────────────────────────────────── */
.vt-form { display: flex; flex-direction: column; gap: 18px; }

.vt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.vt-form__group { display: flex; flex-direction: column; gap: 6px; }

.vt-form__label {
  font-size: .84rem;
  font-weight: 500;
  color: var(--vt-text);
  letter-spacing: .3px;
}

.vt-form__input,
.vt-form__select,
.vt-form__textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--vt-dark);
  background: #fff;
  border: 1.5px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.vt-form__input:focus,
.vt-form__select:focus,
.vt-form__textarea:focus {
  border-color: var(--vt-orange);
  box-shadow: 0 0 0 3px rgba(242,97,1,.14);
}

.vt-form__textarea { resize: vertical; min-height: 130px; }

.vt-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--vt-text-light);
  cursor: pointer;
}

.vt-form__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vt-orange);
}

.vt-form__submit {
  background: var(--vt-orange);
  color: #fff;
  border: none;
  border-radius: var(--vt-radius-sm);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}

.vt-form__submit:hover { background: var(--vt-orange-dk); }

.vt-form__msg {
  padding: 12px 16px;
  border-radius: var(--vt-radius-sm);
  font-size: .92rem;
  display: none;
}

.vt-form__msg--ok  { background: #e8f5e9; color: #2E7D32; border: 1px solid #a5d6a7; }
.vt-form__msg--err { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

/* ── Contact info blocks ─────────────────────────────────────── */
.vt-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.vt-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--vt-bg-gray);
  border-radius: var(--vt-radius);
}

.vt-contact-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--vt-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-contact-item__icon svg { width: 18px; height: 18px; }

.vt-contact-item a {
  color: var(--vt-text);
  text-decoration: none;
  font-size: .9rem;
}

.vt-contact-item a:hover { color: var(--vt-orange); }

/* Map embed */
.vt-map {
  border-radius: var(--vt-radius);
  overflow: hidden;
  border: none;
  width: 100%;
  height: 400px;
  display: block;
}

/* ── Privacy / Text pages ─────────────────────────────────────── */
.vt-prose { max-width: 860px; margin: 0 auto; }

.vt-prose h2 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--vt-dark);
  font-size: 1.25rem;
  margin: 36px 0 14px;
}

.vt-prose p,
.vt-prose li {
  font-size: .97rem;
  color: var(--vt-text);
  line-height: 1.78;
  margin-bottom: 12px;
}

.vt-prose ul { padding-left: 20px; }

.vt-prose a { color: var(--vt-orange); }

/* ── 404 ─────────────────────────────────────────────────────── */
.vt-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 60px 24px;
}

.vt-404__num {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 300;
  color: var(--vt-blue-gray);
  line-height: 1;
  margin-bottom: 12px;
}

/* ── Client filter ───────────────────────────────────────────── */
.vt-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--vt-border);
  position: sticky;
  top: var(--vt-nav-h);
  z-index: 100;
}

.vt-filter-btn {
  background: #fff;
  color: var(--vt-text);
  border: 1.5px solid var(--vt-border);
  padding: 7px 18px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: .83rem;
  cursor: pointer;
  transition: var(--transition);
}

.vt-filter-btn.active,
.vt-filter-btn:hover {
  background: var(--vt-dark);
  color: #fff;
  border-color: var(--vt-dark);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .vt-section { padding: 52px 20px; }
  .vt-hero { min-height: 70vh; }
  .vt-hero--short { min-height: 50vh; }
  .vt-form__row { grid-template-columns: 1fr; }
  .vt-stats { gap: 28px; }
  .vt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .vt-footer__grid { grid-template-columns: 1fr; }
  .vt-grid--2, .vt-grid--3, .vt-grid--4 { grid-template-columns: 1fr; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.vt-text-center { text-align: center; }
.vt-text-white  { color: #fff !important; }
.vt-text-orange { color: var(--vt-orange) !important; }
.vt-text-muted  { color: var(--vt-text-light); }

.vt-mt-0  { margin-top: 0; }
.vt-mb-0  { margin-bottom: 0; }
.vt-mb-sm { margin-bottom: 14px; }
.vt-mb-md { margin-bottom: 28px; }
.vt-mb-lg { margin-bottom: 48px; }

.vt-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-gap-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

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