/* ============================================================
   WEB 2 — Vina Geospace · Vantor-clone · LIGHT MODE
   Warm white · Bold dark typography · Real video/images
   ============================================================ */

.v2 {
  --v2-bg:          #F5F3EE;
  --v2-bg-white:    #FFFFFF;
  --v2-bg-alt:      #ECEAE3;
  --v2-bg-dark:     #0D0D0B;
  --v2-ink:         #141410;
  --v2-ink-soft:    rgba(20,20,16,0.70);
  --v2-ink-mute:    rgba(20,20,16,0.44);
  --v2-ink-dim:     rgba(20,20,16,0.24);
  --v2-border:      rgba(20,20,16,0.09);
  --v2-border-md:   rgba(20,20,16,0.14);
  --v2-border-dark: rgba(20,20,16,0.22);
  --v2-accent:      #1A1A1A;

  background: var(--v2-bg);
  color: var(--v2-ink);
  font-family: "Inter", "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  padding-bottom: 80px;
  width: 100%;
}

.v2 * { box-sizing: border-box; }
.v2 a { text-decoration: none; color: inherit; }
.v2 img { display: block; max-width: 100%; }

/* Shared utilities */
.v2-hr {
  border: none;
  border-top: 1px solid var(--v2-border);
  margin: 0;
}

.v2-dot-sm {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--v2-ink-mute);
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.v2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  color: #ffffff;
}
.v2-header--scrolled {
  background: rgba(245,243,238,0.94);
  border-bottom-color: var(--v2-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--v2-ink);
}

.v2-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 56px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: inherit;
}
.v2-header__logo-icon { width: 28px; height: 28px; }

.v2-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
}
.v2-header__nav-link {
  font-size: 14px;
  color: inherit;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.v2-header__nav-link:hover { opacity: 1; }
.v2-header__dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}
.v2-header__cta {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.v2-header__cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.v2-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.v2-header__menu span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--v2-ink);
}

/* ============================================================
   HERO
   ============================================================ */
.v2-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Background video */
.v2-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay — subtle dark at bottom where text lives */
.v2-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.80) 100%
  );
}

/* Corner bracket decoration (Vantor style) */
.v2-hero__corner {
  position: absolute;
  z-index: 3;
  width: 18px; height: 18px;
  border-color: rgba(255,255,255,0.45);
  border-style: solid;
}
.v2-hero__corner--tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.v2-hero__corner--tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.v2-hero__corner--bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.v2-hero__corner--br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

/* Content — bottom layout like Vantor */
.v2-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 64px);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
}

/* Title — medium weight, not ultra-bold */
.v2-hero__title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  max-width: 14ch;
}
.v2-hero__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: v2LineIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.v2-hero__line:nth-child(1) { animation-delay: 0.1s; }
.v2-hero__line:nth-child(2) { animation-delay: 0.24s; }
.v2-hero__line:nth-child(3) { animation-delay: 0.38s; }
@keyframes v2LineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom bar: subtitle left + mission link right */
.v2-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  animation: v2FadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes v2FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes v2FadeIn { to { opacity: 1; } }

.v2-hero__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 400px;
  flex: 1;
  min-width: 0;
}

/* "Our Mission" link — corner-framed like Vantor */
.v2-hero .v2-hero__mission {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.v2-hero .v2-hero__mission:hover { color: #ffffff; }

.v2-hero__mission-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
  transition: border-color 0.2s;
}
.v2-hero__mission:hover .v2-hero__mission-corner { border-color: rgba(255,255,255,0.9); }
.v2-hero__mission-corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.v2-hero__mission-corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.v2-hero__mission-corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.v2-hero__mission-corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ============================================================
   MISSION
   ============================================================ */
.v2-mission {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 3.5vw, 56px);
  background: #0D0D0B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.v2-mission__inner { max-width: 920px; margin: 0 auto; }

.v2-mission__label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.v2-mission__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: #ffffff;
}

.v2-mission__body {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 680px;
}

/* ============================================================
   SHARED: dim HR + corner brackets for dark sections
   ============================================================ */
.v2-hr--dim { border-top-color: rgba(255,255,255,0.1); }

.v2-brk {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(255,255,255,0.45);
  border-style: solid;
  transition: border-color 0.2s;
}
.v2-brk--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.v2-brk--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.v2-brk--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.v2-brk--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ============================================================
   ADVANTAGE — Vantor style: dark bg, sticky image left, text right
   ============================================================ */
.v2-advantage {
  background: #0D0D0B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.v2-advantage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

/* LEFT: sticky image */
.v2-advantage__visual {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}
.v2-advantage__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(0.7);
}
.v2-advantage__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,20,100,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

/* RIGHT: label + items + cta */
.v2-advantage__right {
  display: flex;
  flex-direction: column;
  padding: clamp(64px, 8vw, 100px) clamp(40px, 5vw, 80px);
  border-left: 1px solid rgba(255,255,255,0.07);
}

.v2-advantage__label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}
.v2-advantage__label .v2-dot-sm {
  border-color: rgba(255,255,255,0.3);
}

.v2-advantage__list { display: flex; flex-direction: column; flex: 1; }

.v2-advantage__item {
  padding: clamp(32px, 4.5vw, 52px) 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.v2-advantage__item.is-revealed { opacity: 1; transform: translateX(0); }
.v2-advantage__item:nth-child(2) { transition-delay: 0.12s; }
.v2-advantage__item:nth-child(3) { transition-delay: 0.24s; }

.v2-advantage__text {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 20px 0 0;
}

/* CTA with corner brackets */
.v2-advantage__cta-row {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v2-advantage .v2-advantage__cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.v2-advantage .v2-advantage__cta-link:hover { color: #ffffff; }
.v2-advantage .v2-advantage__cta-link:hover .v2-brk { border-color: rgba(255,255,255,0.85); }

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .v2-advantage__inner { grid-template-columns: 1fr; }
  .v2-advantage__visual { display: none; }
  .v2-advantage__right { border-left: none; padding: 48px 24px; }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.v2-industries {
  background: var(--v2-bg-white);
  border-bottom: 1px solid var(--v2-border);
}

.v2-industries__head {
  border-bottom: 1px solid var(--v2-border);
}
.v2-industries__head-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 3.5vw, 56px) clamp(32px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.v2-industries__head-label {
  font-size: 12.5px;
  color: var(--v2-ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.v2-industries__title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--v2-ink);
}

.v2-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.v2-industries__card {
  border-right: 1px solid var(--v2-border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.v2-industries__card:last-child { border-right: none; }
.v2-industries__card.is-revealed { opacity: 1; transform: translateY(0); }
.v2-industries__card:nth-child(2) { transition-delay: 0.1s; }
.v2-industries__card:nth-child(3) { transition-delay: 0.2s; }

.v2-industries__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.v2-industries__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.v2-industries__card:hover .v2-industries__img {
  filter: grayscale(15%) brightness(0.95);
  transform: scale(1.03);
}
.v2-industries__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,16,0.5) 0%, transparent 50%);
}

.v2-industries__card-body {
  padding: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--v2-border);
}
.v2-industries__card-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--v2-ink);
}
.v2-industries__card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--v2-ink-mute);
  margin: 0 0 20px;
}
.v2-industries__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--v2-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--v2-border-md);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.v2-industries__link:hover { color: var(--v2-ink); border-color: var(--v2-ink); }
.v2-industries__link span { transition: transform 0.2s; }
.v2-industries__link:hover span { transform: translateX(4px); }

/* ============================================================
   PRODUCTS — Vantor style: dark bg, sticky video left, list right
   ============================================================ */
.v2-products {
  background: #0D0D0B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Centered header */
.v2-products__head {
  text-align: center;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 4vw, 64px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-products__head-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.v2-products__head-label .v2-dot-sm { border-color: rgba(255,255,255,0.3); }
.v2-products__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

/* Body: sticky left + scroll right */
.v2-products__body {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
}

/* LEFT sticky wrapper */
.v2-products__sticky {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

/* Tab nav overlaid on left edge of visual */
.v2-products__nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.v2-products__nav-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  text-align: left;
  padding: 14px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.v2-products__nav-btn:last-child { border-bottom: none; }
.v2-products__nav-btn:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.05); }
.v2-products__nav-btn--active { color: #ffffff; font-weight: 600; }

/* Video panels */
.v2-products__vpanel {
  display: none;
  width: 100%;
  height: 100%;
}
.v2-products__vpanel--active { display: block; }
.v2-products__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT: categories container */
.v2-products__list {
  border-left: 1px solid rgba(255,255,255,0.07);
  position: relative;
  height: calc(100vh - 64px);
}

/* Categories stack + cross-fade */
.v2-products__cat {
  position: absolute;
  inset: 0;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 60px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.v2-products__cat--active {
  opacity: 1;
  pointer-events: auto;
}

.v2-products__cat-intro {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 28px;
}
.v2-products__cat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 4px;
}

.v2-products__product {
  padding: clamp(20px, 2.5vw, 28px) 0;
}
.v2-products__product-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.v2-products__product-row:hover { opacity: 0.75; }

.v2-products__product-name {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 6px;
}
.v2-products__product-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.v2-products__thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity 0.2s;
}
.v2-products__product-row:hover .v2-products__thumb { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
  .v2-products__body { grid-template-columns: 1fr; }
  .v2-products__sticky { position: relative; top: 0; height: 50vw; min-height: 240px; }
  .v2-products__list { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 24px; }
  .v2-products__nav { position: relative; top: auto; left: auto; transform: none; flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   STATS
   ============================================================ */
.v2-stats {
  background: var(--v2-bg-white);
  padding: clamp(100px, 14vw, 180px) 0;
  border-bottom: 1px solid var(--v2-border);
}
.v2-stats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 56px);
}
.v2-stats__head {
  font-size: 12.5px;
  color: var(--v2-ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.v2-stats__row {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.v2-stats__row.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.v2-stats__row:nth-child(1) { transition-delay: 0s; }
.v2-stats__row:nth-child(2) { transition-delay: 0.1s; }
.v2-stats__row:nth-child(3) { transition-delay: 0.2s; }
.v2-stats__row:nth-child(4) { transition-delay: 0.3s; }
.v2-stats__row:nth-child(5) { transition-delay: 0.4s; }

.v2-stats__item {
  display: grid;
  grid-template-columns: clamp(200px, 22vw, 320px) 1fr;
  gap: 24px 48px;
  align-items: baseline;
  padding: clamp(40px, 5vw, 64px) 0;
}
.v2-stats__val {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.v2-stats__num {
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--v2-ink);
}
.v2-stats__unit {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  color: var(--v2-ink-soft);
  letter-spacing: -0.04em;
}
.v2-stats__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--v2-ink-soft);
  margin: 0;
  max-width: 580px;
}

/* ============================================================
   VIDEO BANNER
   ============================================================ */
.v2-banner {
  position: relative;
  height: clamp(360px, 50vw, 600px);
  overflow: hidden;
}
.v2-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(13,13,11,0.88) 0%,
    rgba(13,13,11,0.60) 50%,
    rgba(13,13,11,0.30) 100%
  );
}
.v2-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 3.5vw, 56px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-banner__label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.v2-banner__title {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 36px;
  max-width: 600px;
}
.v2-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff !important;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.v2-banner__btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* ============================================================
   CTA
   ============================================================ */
.v2-cta {
  background: var(--v2-bg-white);
  padding: clamp(72px, 10vw, 140px) clamp(20px, 3.5vw, 56px);
  border-bottom: 1px solid var(--v2-border);
  text-align: center;
}
.v2-cta__inner { max-width: 600px; margin: 0 auto; }
.v2-cta__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  color: var(--v2-ink);
}
.v2-cta__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--v2-ink-soft);
  margin: 0 0 40px;
}
.v2-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.v2-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.v2-cta__btn--primary {
  background: var(--v2-ink);
  color: var(--v2-bg) !important;
  border: 1px solid var(--v2-ink);
}
.v2-cta__btn--primary:hover { opacity: 0.85; }
.v2-cta__btn--ghost {
  color: var(--v2-ink-soft);
  border: 1px solid var(--v2-border-dark);
}
.v2-cta__btn--ghost:hover { background: var(--v2-bg-alt); color: var(--v2-ink); }

/* ============================================================
   FOOTER — Vantor style
   ============================================================ */
.v2-footer {
  background: var(--v2-bg-white);
  color: var(--v2-ink);
  border-top: 1px solid var(--v2-border);
}
.v2-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 56px);
}

/* Head row: logo + CTA */
.v2-footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(32px, 4vw, 56px) 0;
}
.v2-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--v2-ink);
}
.v2-footer__logo-icon { width: 32px; height: 32px; }

/* Corner-frame button */
.v2-footer__contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--v2-ink);
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.v2-footer__contact-btn:hover { opacity: 0.5; }
.v2-footer__btn-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--v2-ink);
  border-style: solid;
}
.v2-footer__btn-corner--tl { top:0; left:0; border-width: 1px 0 0 1px; }
.v2-footer__btn-corner--tr { top:0; right:0; border-width: 1px 1px 0 0; }
.v2-footer__btn-corner--bl { bottom:0; left:0; border-width: 0 0 1px 1px; }
.v2-footer__btn-corner--br { bottom:0; right:0; border-width: 0 1px 1px 0; }

/* 5-col nav grid */
.v2-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: clamp(40px, 5vw, 64px) 0;
  gap: 0;
}
.v2-footer__col {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(16px, 2.5vw, 40px);
  border-right: 1px solid var(--v2-border);
}
.v2-footer__col:first-child { padding-left: 0; }
.v2-footer__col:last-child { border-right: none; padding-right: 0; }

.v2-footer__col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin: 0 0 14px;
}
.v2-footer__link {
  color: var(--v2-ink);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.v2-footer__link:hover { opacity: 0.45; }
.v2-footer__link--sub {
  font-weight: 400;
  font-size: 13.5px;
  color: var(--v2-ink-soft);
  letter-spacing: 0;
  margin-bottom: 4px;
}

/* Bottom bar */
.v2-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}
.v2-footer__bottom-links { display: flex; gap: 24px; }
.v2-footer__bottom-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--v2-ink);
  transition: opacity 0.2s;
}
.v2-footer__bottom-links a:hover { opacity: 0.45; }
.v2-footer__copy {
  font-size: 12px;
  color: var(--v2-ink-mute);
  margin: 0;
  flex: 1;
  text-align: center;
}
.v2-footer__social { display: flex; gap: 20px; align-items: center; }
.v2-footer__social a {
  color: var(--v2-ink);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.v2-footer__social a:hover { opacity: 1; }
.v2-footer .v2-hr { border-top-color: var(--v2-border); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .v2-advantage__inner { grid-template-columns: 1fr; gap: 32px; }
  .v2-advantage__label { position: static; }
  .v2-products__inner { grid-template-columns: 1fr; }
  .v2-products__sidebar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: static;
  }
  .v2-products__panel--active { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .v2-header__nav { display: none; }
  .v2-header__menu { display: flex; }
  .v2-industries__grid { grid-template-columns: 1fr; }
  .v2-industries__card { border-right: none; border-bottom: 1px solid var(--v2-border); }
  .v2-stats__item { grid-template-columns: 1fr; gap: 8px; }
  .v2-footer__top { flex-direction: column; }
  .v2-footer__links { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .v2-hero__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .v2-hero__sub { max-width: 100%; }
}

@media (max-width: 480px) {
  .v2-hero__title { letter-spacing: -0.03em; }
  .v2-products__sidebar { grid-template-columns: 1fr; }
}

/* Body override for light mode */
body:has(.v2) {
  background: #F5F3EE;
}

/* ============================================================
   SCROLL ANIMATIONS — GSAP initial state
   Elements are invisible until GSAP takes over.
   Use .no-gsap class on .v2 if GSAP not loaded (fallback to CSS).
   ============================================================ */

/* Elements that GSAP will animate in — start hidden */
.v2 .v2-mission__label,
.v2 .v2-advantage__label,
.v2 .v2-industries__label,
.v2 .v2-products__label,
.v2 .v2-news__label,
.v2 .v2-banner__label,
.v2 .v2-mission__title,
.v2 .v2-mission__body,
.v2 .v2-industries__title,
.v2 .v2-products__title,
.v2 .v2-banner__title,
.v2 .v2-cta__title,
.v2 .v2-cta__sub,
.v2 .v2-cta__btns,
.v2 .v2-news__title,
.v2 .v2-advantage__item,
.v2 .v2-industries__card,
.v2 .v2-stats__item,
.v2 .v2-products__tab,
.v2 .v2-news__card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* CSS fallback — .is-revealed toggled by IntersectionObserver */
.v2 .v2-mission__label.is-revealed,
.v2 .v2-advantage__label.is-revealed,
.v2 .v2-industries__label.is-revealed,
.v2 .v2-products__label.is-revealed,
.v2 .v2-news__label.is-revealed,
.v2 .v2-banner__label.is-revealed,
.v2 .v2-mission__title.is-revealed,
.v2 .v2-mission__body.is-revealed,
.v2 .v2-industries__title.is-revealed,
.v2 .v2-products__title.is-revealed,
.v2 .v2-banner__title.is-revealed,
.v2 .v2-cta__title.is-revealed,
.v2 .v2-cta__sub.is-revealed,
.v2 .v2-cta__btns.is-revealed,
.v2 .v2-news__title.is-revealed,
.v2 .v2-advantage__item.is-revealed,
.v2 .v2-industries__card.is-revealed,
.v2 .v2-stats__item.is-revealed,
.v2 .v2-products__tab.is-revealed,
.v2 .v2-news__card.is-revealed {
  opacity: 1;
  transform: none;
}

/* ── Product panel crossfade ── */
.v2-products__panel {
  transition: opacity 0.3s ease;
}

/* ── Subtle underline reveal on section titles ── */
.v2-section-title {
  position: relative;
}

