/* ═══════════════════════════════════════════════════════════════════
   VIVEBUCEO — home.css
   Estilos específicos de la home / front-page
   Prefijo vb- en todas las clases
   ═══════════════════════════════════════════════════════════════════ */

/* ── Wrapper de la home ─────────────────────────────────────────── */
.vb-wrap {
  font-family: var(--vb-font-body);
  color: var(--vb-text);
  line-height: var(--vb-line-height);
  width: 100%;
  display: block;
}
.vb-wrap *, .vb-wrap *::before, .vb-wrap *::after {
  box-sizing: border-box;
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.vb-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--vb-deep);
}
.vb-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
  animation: vb-kenburns 20s ease-in-out infinite alternate;
}
@keyframes vb-kenburns {
  0%   { transform: scale(1);    object-position: center 40%; }
  100% { transform: scale(1.06); object-position: center 55%; }
}
.vb-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,30,46,.92) 0%, rgba(4,30,46,.45) 50%, rgba(4,30,46,.1) 100%);
}
.vb-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 50px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C360,55 1080,5 1440,30 L1440,50 L0,50 Z' fill='%23063550'/%3E%3C/svg%3E") no-repeat bottom center / cover;
  z-index: 3; pointer-events: none;
}
.vb-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--vb-max-width);
  margin: 0 auto;
  padding: 120px var(--vb-container-px) 80px;
}
.vb-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--vb-light); border: 1px solid var(--vb-light);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 20px;
  animation: vb-badge-in 0.8s cubic-bezier(.22,1,.36,1) 0.2s both;
}
@keyframes vb-badge-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vb-hero h1 {
  font-size: clamp(44px, 7vw, 100px) !important;
  font-weight: 800 !important; line-height: .95 !important;
  color: var(--vb-white) !important; letter-spacing: -.01em !important;
  margin-bottom: 24px !important; text-transform: uppercase !important;
  animation: vb-h1-in 0.9s cubic-bezier(.22,1,.36,1) 0.4s both;
}
@keyframes vb-h1-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vb-hero h1 span { color: var(--vb-light); display: block; }
.vb-hero-desc {
  font-size: 16px; color: rgba(255,255,255,.82);
  max-width: 560px; margin-bottom: 28px; line-height: 1.7;
  animation: vb-fade-up 0.8s cubic-bezier(.22,1,.36,1) 0.65s both;
}
.vb-hero-links {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  margin-bottom: 32px; align-items: center;
  animation: vb-fade-up 0.8s cubic-bezier(.22,1,.36,1) 0.65s both;
}
.vb-hero-links a {
  font-size: 13px; color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px; transition: color .2s;
}
.vb-hero-links a:hover { color: var(--vb-light); }
.vb-hero-links span { color: rgba(255,255,255,.3); font-size: 13px; }
.vb-btns {
  display: flex; flex-wrap: wrap; gap: 10px;
  animation: vb-fade-up 0.8s cubic-bezier(.22,1,.36,1) 0.8s both;
}
@keyframes vb-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vb-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--vb-light); color: var(--vb-white);
  font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 13px 24px; border-radius: var(--vb-radius);
  transition: background .2s; position: relative; overflow: hidden;
}
.vb-btn-primary:hover { background: #0f9fb8; color: var(--vb-white); }
.vb-btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--vb-white);
  font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 12px 22px; border-radius: var(--vb-radius);
  border: 1.5px solid rgba(255,255,255,.5); transition: border-color .2s;
}
.vb-btn-outline:hover { border-color: var(--vb-white); color: var(--vb-white); }

/* Scroll hint */
.vb-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.55; animation: vb-bounce 2s ease-in-out infinite;
}
.vb-scroll-hint span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--vb-white); }
.vb-scroll-hint svg { width: 20px; height: 20px; fill: var(--vb-white); }
@keyframes vb-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ─────────────────────────────────────────────────────── */
.vb-stats {
  width: 100%; position: relative;
  background: var(--vb-mid); padding: 32px var(--vb-container-px);
}
.vb-stats-inner {
  max-width: var(--vb-max-width); margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.vb-stat { display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease; }
.vb-stat:hover { transform: translateY(-3px); }
.vb-stat-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.vb-stat:hover .vb-stat-icon { background: rgba(26,179,200,0.2); transform: scale(1.1); }
.vb-stat-icon svg { width: 18px; height: 18px; fill: var(--vb-light); }
.vb-stat-num { font-size: 32px; font-weight: 800; color: var(--vb-white); line-height: 1; letter-spacing: -.02em; }
.vb-stat-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; line-height: 1.2; }

/* ── SECCIONES HOME ─────────────────────────────────────────────── */
.vb-section {
  width: 100%; position: relative;
  padding: var(--vb-section-padding, 70px) var(--vb-container-px, 40px);
}
.vb-section-alt { background: var(--vb-alt); }
.vb-inner { max-width: var(--vb-max-width); margin: 0 auto; }
.vb-label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--vb-teal); margin-bottom: 8px;
}
.vb-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; text-transform: uppercase;
  color: var(--vb-deep); line-height: 1; letter-spacing: -.01em; margin-bottom: 12px;
  position: relative; display: inline-block;
}
.vb-section h2::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 3px; background: var(--vb-light);
  border-radius: 2px; transition: width 0.6s cubic-bezier(.22,1,.36,1) 0.3s;
}
.vb-reveal.vb-visible h2::after,
.vb-reveal-left.vb-visible h2::after { width: 56px; }
.vb-section-sub { font-size: 15px; color: var(--vb-muted); max-width: 540px; margin-bottom: 40px; line-height: 1.7; }
.vb-section-sub a { color: var(--vb-teal); }

/* ── CARDS SERVICIOS ──────────────────────────────────────────────── */
.vb-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vb-card {
  background: var(--vb-white); border-radius: var(--vb-radius);
  overflow: hidden; box-shadow: 0 2px 14px rgba(4,30,46,.09);
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.vb-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(4,30,46,0.15) !important; }
.vb-card-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.vb-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: var(--vb-light); opacity: 0;
  transition: opacity 0.3s ease; mix-blend-mode: multiply; pointer-events: none;
}
.vb-card:hover .vb-card-img::after { opacity: 0.08; }
.vb-card-img-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,30,46,.85) 0%, transparent 60%); }
.vb-card-img-label { position: relative; z-index: 2; padding: 16px 18px; width: 100%; }
.vb-card-img-label h2 {
  font-size: 26px !important; font-weight: 800 !important; color: var(--vb-white) !important;
  line-height: 1 !important; margin-bottom: 2px !important; letter-spacing: .01em !important;
  text-transform: uppercase !important;
}
.vb-card-img-label p { font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 0; }
.vb-card-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.vb-price { font-size: 22px; font-weight: 800; color: var(--vb-teal); letter-spacing: -.01em; }
.vb-price.vb-price-animated { animation: vb-price-in 0.5s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes vb-price-in {
  0%   { opacity: 0; transform: scale(0.85); }
  70%  { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.vb-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vb-list li {
  font-size: 13.5px; color: var(--vb-text);
  padding-left: 14px; position: relative; line-height: 1.5; margin-bottom: 0;
}
.vb-list li::before {
  content: ''; width: 5px; height: 5px; background: var(--vb-light);
  border-radius: 50%; position: absolute; left: 0; top: 7px;
}
.vb-list li strong { font-weight: 600; }
.vb-card-btns { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.vb-btn-blue {
  display: block; text-align: center; background: var(--vb-mid);
  color: var(--vb-white); font-size: 13.5px; font-weight: 600;
  text-decoration: none; padding: 11px 18px; border-radius: var(--vb-radius);
  transition: background .2s; position: relative; overflow: hidden;
}
.vb-btn-blue:hover { background: #094570; color: var(--vb-white); }
.vb-btn-gold {
  display: block; text-align: center; background: var(--vb-gold);
  color: var(--vb-deep); font-size: 13.5px; font-weight: 700;
  text-decoration: none; padding: 11px 18px; border-radius: var(--vb-radius);
  transition: background .2s; position: relative; overflow: hidden;
}
.vb-btn-gold:hover { background: #dda020; }

/* Shimmer en botones */
.vb-btn-primary::after, .vb-btn-blue::after, .vb-btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease; pointer-events: none;
}
.vb-btn-primary:hover::after, .vb-btn-blue:hover::after, .vb-btn-gold:hover::after { left: 140%; }

/* ── OTROS SERVICIOS ─────────────────────────────────────────────── */
.vb-others { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vb-other-card {
  background: var(--vb-white); border-radius: var(--vb-radius);
  overflow: hidden; box-shadow: 0 1px 10px rgba(4,30,46,.08);
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.vb-other-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(4,30,46,0.13) !important; }
.vb-other-img {
  height: 150px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.vb-other-img::after {
  content: ''; position: absolute; inset: 0; background: var(--vb-light);
  opacity: 0; transition: opacity 0.3s ease; mix-blend-mode: multiply; pointer-events: none;
}
.vb-other-card:hover .vb-other-img::after { opacity: 0.1; }
.vb-other-img-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,30,46,.8) 0%, transparent 60%); }
.vb-other-title { position: relative; z-index: 2; padding: 14px 16px; font-size: 22px; font-weight: 800; color: var(--vb-white); text-transform: uppercase; line-height: 1; }
.vb-other-body { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.vb-other-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }

/* ── POR QUÉ NOSOTROS ───────────────────────────────────────────── */
.vb-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.vb-why-card {
  background: var(--vb-white); border-radius: var(--vb-radius); padding: 26px;
  border-left: 4px solid var(--vb-light); box-shadow: 0 1px 8px rgba(4,30,46,.06);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.vb-why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(4,30,46,0.12) !important; border-left-color: var(--vb-teal); }
.vb-why-icon {
  width: 40px; height: 40px; background: var(--vb-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.vb-why-icon svg { width: 20px; height: 20px; fill: var(--vb-teal); }
.vb-why-card h3 { font-size: 17px !important; font-weight: 700 !important; color: var(--vb-deep) !important; margin-bottom: 8px !important; line-height: 1.3 !important; text-transform: uppercase !important; letter-spacing: .01em !important; }
.vb-why-card > p { font-size: 13.5px; color: var(--vb-muted); line-height: 1.65; margin-bottom: 12px; }
.vb-arrows { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.vb-arrows li { font-size: 13px; color: var(--vb-text); padding-left: 16px; position: relative; line-height: 1.5; margin-bottom: 0; }
.vb-arrows li::before { content: "→"; color: var(--vb-teal); font-weight: 700; position: absolute; left: 0; top: 0; }

/* ── EQUIPO ─────────────────────────────────────────────────────── */
.vb-team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vb-team-card {
  background: var(--vb-white); border-radius: var(--vb-radius); padding: 24px;
  display: flex; gap: 18px; align-items: flex-start; box-shadow: 0 1px 10px rgba(4,30,46,.07);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.vb-team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(4,30,46,0.13) !important; }
.vb-team-card img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--vb-light); flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.vb-team-card:hover img { transform: scale(1.06); box-shadow: 0 4px 16px rgba(26,179,200,0.35); }
.vb-team-card h3 { font-size: 22px !important; font-weight: 800 !important; color: var(--vb-deep) !important; text-transform: uppercase !important; letter-spacing: .02em !important; margin-bottom: 2px !important; }
.vb-team-role { font-size: 12px; color: var(--vb-teal); font-weight: 600; margin-bottom: 10px; line-height: 1.4; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.vb-faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.vb-faq-item { border-bottom: 1px solid #d8ecf0; }
.vb-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 16px 0; font-family: inherit;
  font-size: 14px; font-weight: 600; color: var(--vb-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; line-height: 1.4;
}
.vb-faq-q span { flex: 1; }
.vb-faq-q::after { content: "+"; font-size: 20px; color: var(--vb-teal); flex-shrink: 0; font-weight: 300; transition: transform .3s ease; }
.vb-faq-item.vb-open .vb-faq-q::after { transform: rotate(45deg); }
.vb-faq-a {
  display: block !important; max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1), opacity 0.3s ease;
  opacity: 0; padding-bottom: 0;
}
.vb-faq-item.vb-open .vb-faq-a { max-height: 400px; opacity: 1; padding-bottom: 16px; }
.vb-faq-a a { color: var(--vb-teal); }
.vb-faq-photos { display: flex; flex-direction: column; gap: 14px; }
.vb-faq-photos img { width: 100%; border-radius: var(--vb-radius); object-fit: cover; display: block; }
.vb-faq-photos img:first-child { height: 210px; }
.vb-faq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vb-faq-row img { height: 140px; }

/* ── RESEÑAS ────────────────────────────────────────────────────── */
.vb-reviews {
  width: 100%; position: relative;
  background: var(--vb-deep); padding: 64px var(--vb-container-px); color: var(--vb-white);
}
.vb-reviews .vb-inner .vb-label { color: var(--vb-light); }
.vb-reviews h2 { color: var(--vb-white) !important; }
.vb-reviews-sub { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.6; }
.vb-reviews-widget {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--vb-radius); padding: 28px; text-align: center;
}

/* ── CONTACTO ───────────────────────────────────────────────────── */
.vb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.vb-contact-info h2 { margin-bottom: 10px !important; }
.vb-contact-desc { font-size: 15px; color: var(--vb-muted); margin-bottom: 28px; line-height: 1.7; }
.vb-contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.vb-contact-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--vb-text); text-decoration: none; transition: color 0.2s; }
.vb-contact-detail:hover { color: var(--vb-teal); }
.vb-contact-icon {
  width: 38px; height: 38px; background: var(--vb-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.vb-contact-detail:hover .vb-contact-icon { background: var(--vb-teal); transform: scale(1.1); }
.vb-contact-icon svg { width: 16px; height: 16px; fill: var(--vb-light); }
.vb-contact-detail:hover .vb-contact-icon svg { fill: var(--vb-white); }
.vb-map { border-radius: var(--vb-radius); overflow: hidden; }
.vb-map iframe { width: 100%; height: 260px; border: none; display: block; }
.vb-contact-form { background: var(--vb-white); border-radius: var(--vb-radius); padding: 32px; box-shadow: 0 4px 28px rgba(4,30,46,.11); }
.vb-contact-form h3 { font-size: 22px !important; font-weight: 800 !important; text-transform: uppercase !important; color: var(--vb-deep) !important; margin-bottom: 8px !important; letter-spacing: .01em !important; }
.vb-contact-form p { font-size: 13px; color: var(--vb-muted); margin-bottom: 20px; line-height: 1.6; }

/* ── CTA FINAL ──────────────────────────────────────────────────── */
.vb-cta {
  width: 100%; position: relative;
  background: var(--vb-light); padding: 56px var(--vb-container-px); text-align: center;
}
.vb-cta h2 { font-size: clamp(28px,4vw,50px) !important; font-weight: 800 !important; text-transform: uppercase !important; color: var(--vb-white) !important; margin-bottom: 8px !important; letter-spacing: -.01em !important; }
.vb-cta p { font-size: 16px; color: rgba(255,255,255,.88); max-width: 460px; margin: 0 auto 28px; line-height: 1.65; }
.vb-cta-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.vb-cta-btns a { font-size: 14px; font-weight: 700; text-decoration: none; padding: 13px 24px; border-radius: var(--vb-radius); transition: opacity .2s; position: relative; overflow: hidden; }
.vb-cta-btns a:hover { opacity: .88; }
.vb-cta-dark { background: var(--vb-deep); color: var(--vb-white) !important; }
.vb-cta-gold { background: var(--vb-gold); color: var(--vb-deep) !important; }
.vb-cta-btns a::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease; pointer-events: none;
}
.vb-cta-btns a:hover::after { left: 140%; }

/* ── ANIMACIONES REVEAL ─────────────────────────────────────────── */
.vb-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
.vb-reveal.vb-visible { opacity: 1; transform: translateY(0); }
.vb-reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.vb-reveal-left.vb-visible { opacity: 1; transform: translateX(0); }
.vb-reveal-d1 { transition-delay: 0.1s; }
.vb-reveal-d2 { transition-delay: 0.2s; }
.vb-reveal-d3 { transition-delay: 0.3s; }
.vb-reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE HOME ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vb-services, .vb-others { grid-template-columns: 1fr 1fr; }
  .vb-why, .vb-faq-wrap, .vb-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .vb-stats { padding: 24px 20px; }
  .vb-stats-inner { display: flex; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; gap: 20px; padding-bottom: 5px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .vb-stats-inner::-webkit-scrollbar { display: none; }
  .vb-stat { flex-direction: column; text-align: center; gap: 6px; flex: 0 0 100px; }
  .vb-stat-icon { width: 32px; height: 32px; margin: 0 auto; }
  .vb-stat-icon svg { width: 16px; height: 16px; }
  .vb-stat-num { font-size: 26px; }
  .vb-stat-label { font-size: 11px; margin-top: 2px; }
}
@media (max-width: 600px) {
  .vb-section, .vb-reviews, .vb-cta { padding-left: 20px; padding-right: 20px; }
  .vb-hero-inner { padding: 100px 20px 60px; }
  .vb-services, .vb-others, .vb-team { grid-template-columns: 1fr; }
  .vb-hero { min-height: 75vh; }
  .vb-scroll-hint { display: none; }
}
