@import url('https://fonts.cdnfonts.com/css/recoleta');

/* =============================================
   BICONCEPTS — Vibetech-Inspired Design System
   Brand Colors: --c-red, dark navy, white
   ============================================= */

:root {
  --c-red: #E8341A;
  --c-red-dark: #c42c14;
  --c-dark: #1a1a1a;
  --c-dark2: #222222;
  --c-navy: #0f1629;
  --c-white: #ffffff;
  --c-light: #f9f7f4;
  --c-mid: #555555;
  --c-border: #e8e8e8;
  --font: 'Montserrat', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--c-dark); background: var(--c-white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }


/* Icon sizes */
.icon--sm { width: 16px; height: 16px; }
.icon { width: 24px; height: 24px; }
.icon--xl { width: 48px; height: 48px; }

/* Contact info icon fix */
.contact-info__icon {
  width: 48px;
  height: 48px;
  background: rgba(29,173,254,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg, .contact-info__icon .icon {
  width: 22px;
  height: 22px;
  color: var(--c-blue);
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-2 { transition-delay: 0.2s; }
/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---- ANIMATIONS ---- */
.vt-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.vt-fade-up--delay1 { transition-delay: 0.15s; }
.vt-fade-up--delay2 { transition-delay: 0.3s; }
.vt-fade-up--delay3 { transition-delay: 0.45s; }
.vt-visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.vt-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px; transition: var(--transition); cursor: pointer; }
.vt-btn--primary { background: var(--c-red); color: var(--c-white); border: 2px solid var(--c-red); }
.vt-btn--primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,52,26,0.3); }
.vt-btn--outline { background: transparent; color: var(--c-dark); border: 2px solid var(--c-dark); }
.vt-btn--outline:hover { background: var(--c-dark); color: var(--c-white); }
.vt-btn--outline-light { background: transparent; color: var(--c-white); border: 2px solid rgba(255,255,255,0.6); }
.vt-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-quote { display: inline-flex; align-items: center; padding: 12px 28px; border: 2px solid var(--c-white); color: var(--c-white); border-radius: 4px; font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
.btn-quote:hover { background: var(--c-white); color: var(--c-dark); }

/* ---- SECTION LABELS ---- */
.vt-section-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-red); margin-bottom: 12px; }
.vt-section-label--light { color: rgba(255,255,255,0.6); }
.vt-section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--c-dark); margin-bottom: 20px; }
.vt-section-title strong { color: var(--c-dark); }
.vt-section-title--light { color: var(--c-white); }
.vt-section-title--light strong { color: var(--c-white); }
.vt-section-sub { font-size: 1.05rem; color: var(--c-mid); max-width: 540px; line-height: 1.7; }

/* =====================
   NAV
   ===================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--c-dark); transition: box-shadow 0.3s; }
.nav--scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo img { display: block; filter: brightness(10); max-height: 55px; width: auto; }
.nav__menu-wrap { display: flex; align-items: center; gap: 40px; }
.nav__menu { display: flex; gap: 32px; }
.nav__link { color: rgba(255,255,255,0.8); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav__link:hover { color: var(--c-white); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--c-white); transition: var(--transition); }

/* =====================
   HERO
   ===================== */
.vt-hero { background: var(--c-dark); padding: 160px 0 100px; position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.vt-hero__shapes { position: absolute; inset: 0; pointer-events: none; }
.vt-hero__shape { position: absolute; }
.vt-hero__shape--1 { width: 0; height: 0; border-style: solid; border-width: 0 0 700px 400px; border-color: transparent transparent rgba(232,52,26,0.15) transparent; right: 30%; top: -50px; }
.vt-hero__shape--2 { width: 0; height: 0; border-style: solid; border-width: 600px 350px 0 0; border-color: rgba(232,52,26,0.2) transparent transparent transparent; right: 25%; bottom: -100px; }
.vt-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.vt-hero__tag { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.vt-hero__tag-dot { width: 8px; height: 8px; background: var(--c-red); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.vt-hero__title { font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; line-height: 1.0; margin-bottom: 28px; display: flex; flex-direction: column; gap: 4px; }
.vt-hero__title--solid { color: var(--c-white); }
.vt-hero__title--outline { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.4); font-style: italic; }
.vt-hero__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.75; max-width: 480px; margin-bottom: 40px; }
.vt-hero__btns { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.vt-btn-play { display: flex; align-items: center; gap: 14px; color: var(--c-white); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.vt-btn-play:hover { opacity: 0.8; }
.vt-btn-play__circle { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.vt-btn-play__circle svg { width: 14px; height: 14px; color: var(--c-white); margin-left: 2px; }
.vt-btn-play:hover .vt-btn-play__circle { background: var(--c-red); border-color: var(--c-red); }
.vt-hero__stats { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 32px; flex-wrap: wrap; }
.vt-hero__stat p { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.vt-hero__stat { display: flex; flex-direction: column; }
.vt-hero__stat span { font-size: 2rem; font-weight: 900; color: var(--c-white); line-height: 1; }
.vt-count-suffix { font-size: 1.5rem !important; font-weight: 900; color: var(--c-red) !important; }
.vt-hero__img-wrap { position: relative; }
.vt-hero__img-wrap img { border-radius: 16px; width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.vt-hero__img-wrap.no-img { background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%); border-radius: 16px; height: 400px; }
.vt-hero__float { position: absolute; background: var(--c-white); border-radius: 12px; padding: 14px 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.vt-hero__float--1 { bottom: 30px; left: -30px; }
.vt-hero__float--2 { top: 30px; right: -30px; }
.vt-hero__float-label { display: block; font-size: 0.72rem; color: var(--c-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.vt-hero__float-val { display: block; font-size: 1.5rem; font-weight: 900; color: var(--c-dark); }
.vt-hero__float-val small { font-size: 0.9rem; color: var(--c-mid); }

/* =====================
PAGE HERO (Inner Pages)
===================== */
.page-hero { background: #1a1a1a; padding: 120px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,52,26,0.08) 0%, transparent 60%); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; font-weight: 500; letter-spacing: 0.5px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: #E8341A; }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero__title { font-family: 'Recoleta', Georgia, serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.page-hero__title span { color: #E8341A; }
.page-hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 600px; }

/* =====================
   CLIENTS TICKER
   ===================== */
.vt-clients { background: var(--c-dark2); padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.vt-clients .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.vt-clients__label { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; font-weight: 600; }
.vt-clients__track { overflow: hidden; flex: 1; }
.vt-clients__ticker { display: flex; gap: 20px; white-space: nowrap; animation: ticker 30s linear infinite; }
.vt-clients__ticker span { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.5px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =====================
   ABOUT SECTION
   ===================== */
.vt-about { background: var(--c-white); }
.vt-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vt-about__img-wrap { position: relative; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; overflow: hidden; max-width: 480px; }
.vt-about__img-wrap img { width: 100%; object-fit: cover; aspect-ratio: 1; }
.vt-about__img-wrap.no-img { background: var(--c-light); height: 400px; border-radius: 16px; }
.vt-about__dots { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; background-image: radial-gradient(var(--c-red) 1.5px, transparent 1.5px); background-size: 12px 12px; z-index: -1; }
.vt-about__badge { position: absolute; bottom: 24px; right: -24px; background: var(--c-red); color: var(--c-white); padding: 20px 24px; border-radius: 12px; text-align: center; box-shadow: 0 8px 30px rgba(232,52,26,0.4); }
.vt-about__badge-num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.vt-about__badge-text { display: block; font-size: 0.75rem; font-weight: 600; opacity: 0.9; margin-top: 4px; }
.vt-about__img { position: relative; }
.vt-check-list { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.vt-check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--c-mid); }
.vt-check { color: var(--c-red); font-weight: 900; flex-shrink: 0; font-size: 1rem; }

/* =====================
   SERVICES - Numbered List Style
   ===================== */
.vt-services { background: var(--c-white); }
.vt-services__header { margin-bottom: 60px; }
.vt-services__list { display: flex; flex-direction: column; }
.vt-svc-item { display: grid; grid-template-columns: 80px 1fr 60px; gap: 24px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--c-border); transition: var(--transition); }
.vt-svc-item:first-child { border-top: 1px solid var(--c-border); }
.vt-svc-item:hover { background: var(--c-light); padding-left: 16px; padding-right: 16px; margin: 0 -16px; border-radius: 8px; border-color: transparent; }
.vt-svc-item__num { font-size: 1rem; font-weight: 800; color: var(--c-red); letter-spacing: 1px; }
.vt-svc-item__body h3 { font-size: 1.2rem; font-weight: 800; color: var(--c-dark); margin-bottom: 6px; }
.vt-svc-item__body p { font-size: 0.92rem; color: var(--c-mid); line-height: 1.6; max-width: 600px; }
.vt-arrow-link { width: 52px; height: 52px; border: 2px solid var(--c-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.vt-arrow-link svg { width: 20px; height: 20px; color: var(--c-dark); transition: var(--transition); }
.vt-svc-item:hover .vt-arrow-link { background: var(--c-red); border-color: var(--c-red); }
.vt-svc-item:hover .vt-arrow-link svg { color: var(--c-white); }

/* =====================
   PROCESS (DARK SECTION)
   ===================== */
.vt-process { background: var(--c-dark); padding: 120px 0; position: relative; overflow: hidden; }
.vt-process__wave { position: absolute; top: 0; left: 0; right: 0; height: 100%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='100' viewBox='0 0 1440 100'%3E%3Cpath d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,60 1440,50 L1440,100 L0,100Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E"); background-repeat: repeat-x; background-size: 1440px 100px; opacity: 0.5; }
.vt-process__header { margin-bottom: 64px; }
.vt-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.vt-process-step { position: relative; padding-left: 0; }
.vt-process-step__num { font-size: 3rem; font-weight: 900; color: rgba(232,52,26,0.3); line-height: 1; margin-bottom: 16px; font-family: var(--font); }
.vt-process-step h4 { font-size: 1.1rem; font-weight: 800; color: var(--c-white); margin-bottom: 12px; }
.vt-process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* =====================
   PORTFOLIO
   ===================== */
.vt-portfolio { background: var(--c-white); }
.vt-portfolio__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.vt-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.vt-pcard__img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--c-light); }
.vt-pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vt-pcard:hover .vt-pcard__img img { transform: scale(1.05); }
.vt-pcard__img.no-img { background: linear-gradient(135deg, #2a2a2a, #3a3a3a); }
.vt-pcard__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,22,41,0.95) 0%, rgba(15,22,41,0.3) 60%, transparent 100%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: opacity 0.35s ease; }
.vt-pcard:hover .vt-pcard__overlay { opacity: 1; }
.vt-pcard__link { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; background: var(--c-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vt-pcard__link svg { width: 18px; height: 18px; color: white; }
.vt-pcard__cat { font-size: 0.72rem; color: var(--c-red); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 6px; }
.vt-pcard__overlay h3 { font-size: 1.2rem; font-weight: 800; color: var(--c-white); margin-bottom: 6px; }
.vt-pcard__overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Ecommerce brands grid */
.vt-ecom { background: var(--c-light); border-radius: var(--radius); padding: 32px 40px; }
.vt-ecom__label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--c-mid); margin-bottom: 16px; }
.vt-ecom__brands { display: flex; flex-wrap: wrap; gap: 12px; }
.vt-ecom__brands span { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 8px; padding: 8px 16px; font-size: 0.82rem; font-weight: 700; color: var(--c-dark); }
.vt-ecom__brands em { font-style: normal; color: var(--c-mid); font-weight: 400; }

/* =====================
   STATS SECTION
   ===================== */
.vt-stats { background: var(--c-light); padding: 80px 0; }
.vt-stats__card { background: var(--c-dark); border-radius: 20px; padding: 60px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.vt-stat-item { display: flex; align-items: center; gap: 20px; padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.1); }
.vt-stat-item:last-child { border-right: none; }
.vt-stat-item svg { width: 40px; height: 40px; color: var(--c-red); flex-shrink: 0; }
.vt-stat-num { display: block; font-size: 2.5rem; font-weight: 900; color: var(--c-white); line-height: 1; }
.vt-stat-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* =====================
   TESTIMONIALS
   ===================== */
.vt-testimonials { background: var(--c-light); }
.vt-testimonials__header { margin-bottom: 56px; }
.vt-tgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.vt-tcard { background: var(--c-white); border-radius: var(--radius); padding: 36px; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.vt-tcard__quote-icon { font-size: 2.5rem; color: var(--c-red); line-height: 1; margin-bottom: 16px; opacity: 0.7; }
.vt-tcard__text { font-size: 0.98rem; color: var(--c-mid); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.vt-tcard__author { display: flex; align-items: center; gap: 14px; }
.vt-tcard__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-red); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; flex-shrink: 0; }
.vt-tcard__author strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--c-dark); }
.vt-tcard__author span { font-size: 0.8rem; color: var(--c-mid); }

/* =====================
   CTA SECTION
   ===================== */
.vt-cta { background: var(--c-dark); padding: 100px 0; }
.vt-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.vt-cta__inner h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 900; color: var(--c-white); line-height: 1.2; margin-bottom: 12px; }
.vt-cta__inner p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 440px; }
.vt-cta__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* =====================
   FOOTER
   ===================== */
.vt-footer { background: var(--c-dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 0; }
.vt-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.vt-footer__logo { filter: brightness(10); margin-bottom: 16px; max-height: 55px; width: auto; }
.vt-footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.vt-footer__socials { display: flex; gap: 12px; }
.vt-footer__socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.vt-footer__socials a svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }
.vt-footer__socials a:hover { background: var(--c-red); border-color: var(--c-red); }
.vt-footer__col-title { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--c-white); margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--c-red); display: inline-block; }
.vt-footer__grid ul { display: flex; flex-direction: column; gap: 10px; }
.vt-footer__grid ul li { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.vt-footer__grid ul li a { color: rgba(255,255,255,0.5); }
.vt-footer__grid ul li a:hover, .vt-footer__grid ul li:hover { color: var(--c-white); }
.vt-footer__form { display: flex; margin-top: 4px; }
.vt-footer__form input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: var(--c-white); font-size: 0.85rem; border-radius: 4px 0 0 4px; outline: none; }
.vt-footer__form input::placeholder { color: rgba(255,255,255,0.3); }
.vt-footer__form button { padding: 12px 18px; background: var(--c-red); color: var(--c-white); border: none; cursor: pointer; font-size: 1rem; border-radius: 0 4px 4px 0; transition: background 0.2s; }
.vt-footer__form button:hover { background: var(--c-red-dark); }
.vt-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.vt-footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.vt-footer__bottom strong { color: rgba(255,255,255,0.7); }
.vt-footer__bottom div { display: flex; gap: 20px; }
.vt-footer__bottom a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.vt-footer__bottom a:hover { color: var(--c-white); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .vt-hero__grid { grid-template-columns: 1fr; }
  .vt-hero__img { display: none; }
  .vt-about__grid { grid-template-columns: 1fr; }
  .vt-about__img { max-width: 400px; margin: 0 auto; }
  .vt-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .vt-stats__card { grid-template-columns: 1fr; gap: 32px; }
  .vt-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 32px; }
  .vt-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .vt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .vt-hero { padding: 120px 0 72px; min-height: auto; }
  .vt-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .nav__menu-wrap { display: none; flex-direction: column; position: fixed; inset: 72px 0 0; background: var(--c-dark2); padding: 40px 24px; gap: 0; z-index: 999; overflow-y: auto; }
  .nav--open { display: flex; }
  .nav__menu { flex-direction: column; gap: 0; }
  .nav__link { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1.2rem; }
  .nav__hamburger { display: flex; }
  .vt-hero__stats { gap: 24px; }
  .vt-process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vt-portfolio__grid { grid-template-columns: 1fr; }
  .vt-tgrid { grid-template-columns: 1fr; }
  .vt-cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .vt-footer__grid { grid-template-columns: 1fr; }
  .vt-svc-item { grid-template-columns: 64px 1fr 48px; gap: 16px; }
  .vt-about__img { display: none; }
}

@media (max-width: 480px) {
  .vt-hero__btns { flex-direction: column; align-items: flex-start; }
  .vt-process__steps { grid-template-columns: 1fr; }
  .vt-stats__card { padding: 40px 24px; }
  .vt-portfolio__header { flex-direction: column; align-items: flex-start; }
  .vt-clients .container { flex-direction: column; align-items: flex-start; gap: 8px; }
}