/* ==========================================================================
   Vatlieuso — home.css
   Homepage-specific: hero (2-col dark), trust strip, price table,
   section scaffolding, category grid, product card grid
   ========================================================================== */

/* ── Pulse animation (used by hero kicker + live badge) ─────────────────── */
@keyframes vls-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — gradient navy, 2-column grid
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hero {
  background: linear-gradient(135deg, #0D1832 0%, #1F3355 50%, #152F5A 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Decorative radial orbs */
.vls-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,51,85,.8) 0%, transparent 70%);
  pointer-events: none;
}
.vls-hero::after {
  content: '';
  position: absolute;
  left: -50px; bottom: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* 2-column grid */
.vls-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left — kicker */
.vls-hero__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FFC107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vls-hero__kicker-dot {
  width: 6px; height: 6px;
  background: #FFC107;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vls-pulse 2s infinite;
}

/* Left — title */
.vls-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.vls-hero__title em { color: #FFC107; font-style: normal; }

/* Left — sub */
.vls-hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Left — CTAs */
.vls-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vls-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFC107;
  color: #26251F;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-2);
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.vls-hero__btn-primary:hover { background: #FFD740; transform: translateY(-1px); }

.vls-hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--r-2);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: background .15s;
}
.vls-hero__btn-ghost:hover { background: rgba(255,255,255,.08); }

/* Left — stats row (glass panel) */
.vls-hero__stats {
  display: inline-flex;
  gap: 0;
  margin-top: 40px;
  padding: 16px 6px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.vls-hero__stats:hover {
  transform: translateY(-2px);
  border-color: rgba(255,193,7,.35);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.vls-hero__stats > div {
  position: relative;
  padding: 2px 26px;
  text-align: center;
}
.vls-hero__stats > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.vls-hero__stat-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: #FFC107;
  line-height: 1;
  letter-spacing: -.5px;
}
.vls-hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.55);
  margin-top: 7px;
}

@media (max-width: 600px) {
  .vls-hero__stats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
  }
  .vls-hero__stats > div { padding: 2px 10px; }
  .vls-hero__stat-num { font-size: 21px; }
}

/* Right — ticker side */
.vls-hero__img-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Live badge */
.vls-hero__live-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: #0E8F4A;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.vls-hero__live-dot {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: vls-pulse 1.5s infinite;
}

/* Ticker card */
.vls-hero__ticker-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-3);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.vls-hero__ticker-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
}
.vls-hero__ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 12px;
}
.vls-hero__ticker-row:last-child { border-bottom: none; padding-bottom: 0; }
.vls-hero__ticker-row:first-child { padding-top: 0; }

.vls-ticker-name  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); flex: 1; min-width: 0; }
.vls-ticker-price { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.vls-ticker-delta-up   { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #0E8F4A; white-space: nowrap; }
.vls-ticker-delta-dn   { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #C8321E; white-space: nowrap; }
.vls-ticker-delta-flat { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.35); white-space: nowrap; }


/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STRIP — full-width dark navy
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-trust-strip {
  background: #0D1832;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vls-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  flex-wrap: wrap;
}
.vls-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}
.vls-trust-item__icon {
  width: 36px; height: 36px;
  background: rgba(255,193,7,.12);
  border-radius: var(--r-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFC107;
}
.vls-trust-item__value {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.vls-trust-item__label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  margin-top: 2px;
}
.vls-trust-div {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRICE INDEX SECTION — full-width dark navy
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-price-idx-section {
  background: #0D1832;
  padding: 56px 0;
}

.vls-price-table {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-3);
  overflow: hidden;
}
.vls-price-table__row {
  display: grid;
  grid-template-columns: 1fr 130px 150px 90px;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .12s;
}
.vls-price-table__row:last-child { border-bottom: none; }
.vls-price-table__row:hover { background: rgba(255,255,255,.04); }

.vls-price-table__row--header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border-bottom-color: rgba(255,255,255,.08);
}
.vls-price-table__row--header > div:nth-child(n+2) { text-align: right; }

.vls-price-table__name  { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
.vls-price-table__unit  { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.35); text-align: right; }
.vls-price-table__price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: #fff; text-align: right; font-feature-settings: "tnum" 1; }
.vls-price-table__delta { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-align: right; }
.vls-price-table__delta--up   { color: #0E8F4A; }
.vls-price-table__delta--dn   { color: #C8321E; }
.vls-price-table__delta--flat { color: rgba(255,255,255,.3); font-weight: 400; }


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE SECTION SCAFFOLDING
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hp-section          { padding: 64px 0; }
.vls-hp-section--flush-top { padding-top: 0; }

.vls-hp-section--latest {
  padding-top: 78px;
  background: #fff;
}
.vls-hp-section--latest .vls-hp-section-head {
  margin-bottom: 34px;
  align-items: center;
}
.vls-hp-section--latest .vls-hp-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 8px;
  background: #FFF7E0;
  color: #8A5A00;
}
.vls-hp-section--latest .vls-hp-section-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 51, 85, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
}

.vls-hp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.vls-hp-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}

.vls-hp-section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -.02em;
  margin: 0;
}

.vls-hp-section-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.vls-hp-section-link:hover { opacity: .8; }


/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY GRID — 6 columns
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hp-section--cats {
  background:
    linear-gradient(180deg, #F8FAFC 0%, #FFF7E0 100%);
  border-top: 1px solid rgba(31, 51, 85, .08);
  border-bottom: 1px solid rgba(255, 193, 7, .24);
  padding: 76px 0 84px;
}
.vls-hp-section--cats .vls-hp-section-head {
  align-items: flex-end;
  margin-bottom: 34px;
}
.vls-hp-section--cats .vls-hp-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(31, 51, 85, .12);
  border-radius: 999px;
  background: #fff;
  color: #1F3355;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .05);
}
.vls-hp-section--cats .vls-hp-section-title {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0;
}
.vls-hp-section--cats .vls-hp-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 51, 85, .14);
  border-radius: 8px;
  background: #fff;
  color: #1F3355;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .05);
}
.vls-hp-section--cats .vls-hp-section-link:hover {
  opacity: 1;
  border-color: #F7C948;
  background: #FFFAEB;
  color: #10203F;
}
.vls-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.vls-hp-section--cats .vls-cat-card {
  --cat-accent: #1F6FEB;
  --cat-accent-2: #38BDF8;
  --cat-soft: #EFF8FF;
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.9)),
    linear-gradient(135deg, var(--cat-soft) 0%, transparent 44%);
  border: 1px solid rgba(31, 51, 85, .12);
  border-radius: 8px;
  padding: 30px 18px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 36px rgba(16, 24, 40, .07);
}
.vls-hp-section--cats .vls-cat-card:nth-child(1) { --cat-accent: #8B5CF6; --cat-accent-2: #EC4899; --cat-soft: #F5F3FF; }
.vls-hp-section--cats .vls-cat-card:nth-child(2) { --cat-accent: #0F766E; --cat-accent-2: #22D3EE; --cat-soft: #ECFEFF; }
.vls-hp-section--cats .vls-cat-card:nth-child(3) { --cat-accent: #2563EB; --cat-accent-2: #38BDF8; --cat-soft: #EFF6FF; }
.vls-hp-section--cats .vls-cat-card:nth-child(4) { --cat-accent: #F59E0B; --cat-accent-2: #FACC15; --cat-soft: #FFFBEB; }
.vls-hp-section--cats .vls-cat-card:nth-child(5) { --cat-accent: #C2410C; --cat-accent-2: #FB923C; --cat-soft: #FFF7ED; }
.vls-hp-section--cats .vls-cat-card:nth-child(6) { --cat-accent: #059669; --cat-accent-2: #34D399; --cat-soft: #ECFDF3; }
.vls-hp-section--cats .vls-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cat-accent), var(--cat-accent-2));
}
.vls-hp-section--cats .vls-cat-card::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, transparent 50%, color-mix(in srgb, var(--cat-accent) 18%, #fff) 50%);
  pointer-events: none;
}
.vls-hp-section--cats .vls-cat-card:hover {
  border-color: color-mix(in srgb, var(--cat-accent) 38%, #fff);
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(16, 24, 40, .14);
  background:
    linear-gradient(180deg, #fff, var(--cat-soft)),
    linear-gradient(135deg, color-mix(in srgb, var(--cat-accent) 12%, #fff) 0%, transparent 46%);
}

.vls-hp-section--cats .vls-cat-card__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--cat-soft), #fff);
  border: 1px solid color-mix(in srgb, var(--cat-accent) 18%, #fff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cat-accent);
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--cat-accent) 18%, transparent);
}
.vls-hp-section--cats .vls-cat-card:hover .vls-cat-card__icon {
  background: linear-gradient(135deg, var(--cat-accent), var(--cat-accent-2));
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--cat-accent) 26%, transparent);
}

.vls-hp-section--cats .vls-cat-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 6px;
  line-height: 1.25;
  transition: color .18s ease;
}
.vls-hp-section--cats .vls-cat-card:hover .vls-cat-card__name {
  color: var(--cat-accent);
}
.vls-hp-section--cats .vls-cat-card__count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #667085;
  margin-bottom: 8px;
}
.vls-hp-section--cats .vls-cat-card__subs {
  color: #475467;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 2px;
  max-width: 100%;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD (.vls-pcard) — 4-col homepage grid
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vls-pcard {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: border-color .12s, transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.vls-pcard:hover {
  border-color: #A8A49A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,13,9,.08);
}

.vls-pcard__link,
.vls-pcard__body-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.vls-pcard__thb {
  aspect-ratio: 5/4;
  position: relative;
  border-bottom: 1px solid var(--border-1);
  overflow: hidden;
}
.vls-pcard__texture {
  position: absolute;
  inset: 0;
  transition: transform 300ms var(--ease-out, ease);
}
.vls-pcard:hover .vls-pcard__texture { transform: scale(1.04); }

.vls-pcard__thb img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 300ms var(--ease-out, ease);
}
.vls-pcard:hover .vls-pcard__thb img { transform: scale(1.04); }

.vls-pcard__tag {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: #1F3355;
  color: #fff;
}
.vls-pcard__tag svg { flex-shrink: 0; }
.vls-pcard__tag--green { background: #0E8F4A; }

.vls-pcard__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vls-pcard__brand {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}
.vls-pcard__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.vls-pcard__spec {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-bottom: 12px;
  flex: 1;
  line-height: 1.5;
}
.vls-pcard__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.vls-pcard__price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-1);
  font-feature-settings: "tnum" 1;
}
.vls-pcard__unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.vls-pcard__delta      { font-family: var(--font-mono); font-size: 11px; font-weight: 700; }
.vls-pcard__delta--up   { color: #0E8F4A; }
.vls-pcard__delta--down { color: #C8321E; }
.vls-pcard__delta--flat { color: var(--fg-3); font-weight: 400; }

.vls-pcard__footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 8px 16px;
  border-top: 1px solid var(--border-1);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  background: var(--bg-sunken, #F7F7F5);
}

/* ─── Archive context: 3-col ─────────────────────────────────────── */
.vls-archive-content .vls-prod-grid { grid-template-columns: repeat(3, 1fr); }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .vls-prod-grid  { grid-template-columns: repeat(3, 1fr); }
  .vls-cat-grid   { grid-template-columns: repeat(4, 1fr); }
  .vls-hp-section--cats .vls-cat-card { min-height: 220px; }
}

@media (max-width: 900px) {
  .vls-hero { padding: 56px 0 48px; }
  .vls-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .vls-hero__img-side { display: none; }
  .vls-trust-strip__inner { justify-content: center; }
  .vls-trust-div { display: none; }
  .vls-price-table__row { grid-template-columns: 1fr 100px 110px; }
  .vls-price-table__row > div:last-child { display: none; }
  .vls-cat-grid  { grid-template-columns: repeat(3, 1fr); }
  .vls-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .vls-archive-content .vls-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .vls-hp-section--cats { padding: 58px 0 64px; }
  .vls-hp-section--cats .vls-hp-section-head {
    align-items: flex-start;
    gap: 14px;
  }
  .vls-hp-section--latest { padding-top: 62px; }
}

@media (max-width: 600px) {
  .vls-hero { padding: 40px 0 36px; }
  .vls-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .vls-hp-section { padding: 40px 0; }
  .vls-hp-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .vls-cat-grid  { grid-template-columns: repeat(2, 1fr); }
  .vls-prod-grid { grid-template-columns: 1fr; }
  .vls-price-table__row { grid-template-columns: 1fr 90px; }
  .vls-price-table__row > div:nth-child(2),
  .vls-price-table__row > div:last-child { display: none; }
  .vls-archive-content .vls-prod-grid { grid-template-columns: 1fr; }
  .vls-hp-section--cats { padding: 48px 0 54px; }
  .vls-hp-section--cats .vls-hp-section-title { font-size: 28px; }
  .vls-hp-section--cats .vls-cat-grid { gap: 12px; }
  .vls-hp-section--cats .vls-cat-card {
    min-height: 206px;
    padding: 24px 12px 18px;
  }
  .vls-hp-section--cats .vls-cat-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }
  .vls-hp-section--cats .vls-cat-card__name { font-size: 14px; }
  .vls-hp-section--cats .vls-cat-card__subs { font-size: 11px; }
  .vls-hp-section--latest { padding-top: 50px; }
  .vls-hp-section--latest .vls-hp-section-head { margin-bottom: 24px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TICKER STRIP — scrolling price bar at top of page
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes vls-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vls-ticker-strip {
  background: #0D1832;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: stretch;
  height: 40px;
  overflow: hidden;
}
.vls-ticker-strip__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #1F3355;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FFC107;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.vls-ticker-strip__dot {
  width: 6px; height: 6px;
  background: #FFC107;
  border-radius: 50%;
  animation: vls-pulse 1.5s infinite;
  flex-shrink: 0;
}
.vls-ticker-strip__track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.vls-ticker-strip__items {
  display: flex;
  align-items: center;
  animation: vls-ticker 40s linear infinite;
  width: max-content;
}
.vls-ti {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
  height: 40px;
}
.vls-ti__name  { font-family: var(--font-body);  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); }
.vls-ti__cat   { font-family: var(--font-mono);  font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .04em; }
.vls-ti__price { font-family: var(--font-mono);  font-size: 12px; font-weight: 700; color: #fff; }
.vls-ti__delta { font-family: var(--font-mono);  font-size: 11px; font-weight: 700; }
.vls-ti__delta--up   { color: #0E8F4A; }
.vls-ti__delta--dn   { color: #C8321E; }
.vls-ti__delta--flat { color: rgba(255,255,255,.3); font-weight: 400; }


/* ═══════════════════════════════════════════════════════════════════════════
   HERO — v2 additions: card header, ticker loc, card footer
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hero__ticker-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vls-hero__ticker-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.vls-hero__ticker-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
}
.vls-ticker-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
  letter-spacing: .03em;
}
.vls-hero__ticker-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  gap: 8px;
  margin-top: 4px;
}
.vls-hero__ticker-foot a {
  color: #FFC107;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.vls-hero__ticker-foot a:hover { opacity: .8; }


/* ═══════════════════════════════════════════════════════════════════════════
   BRAND RAIL — drag-to-scroll showcase
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-brand-rail {
  background: var(--bg-surface, #fff);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 32px 0 28px;
}
.vls-brand-rail__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 20px;
  text-align: center;
}

/* Wrap = full vls-wrap container, no overflow/mask trickery */
.vls-brand-scroll-wrap {
  overflow: visible;
}
.vls-brand-scroll {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding: 0;
  overflow: visible;
  cursor: default;
  user-select: none;
}

.vls-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px 14px;
  background: var(--bg-body, #F7F7F5);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s, background .15s;
  text-align: center;
}
.vls-brand-item:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.vls-brand-item__mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.vls-brand-item__name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-1);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.vls-brand-item__sku {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  text-align: center;
}
.vls-brand-item__verified {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0E8F4A;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRICE TABLE — v2 additions: sub text, price note, footer bar
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-price-table__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
  letter-spacing: .03em;
}
.vls-price-table__price-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
  text-align: right;
}
.vls-price-table__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  gap: 16px;
}
.vls-price-table__foot-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  letter-spacing: .03em;
}
.vls-price-table__foot-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #FFC107;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .03em;
}
.vls-price-table__foot-link:hover { opacity: .8; }


/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — 3 steps with arrow dividers
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hiw {
  background:
    linear-gradient(180deg, #FFF8E1 0%, #F6FBFF 45%, #F7F7F5 100%);
  padding: 88px 0 92px;
  border-top: 1px solid rgba(255, 193, 7, .26);
  border-bottom: 1px solid rgba(31, 51, 85, .12);
  position: relative;
  overflow: hidden;
}
.vls-hiw__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 58px;
}
.vls-hiw__intro .vls-hp-kicker {
  display: inline-flex;
  justify-content: center;
  padding: 7px 14px;
  border: 1px solid rgba(255, 193, 7, .42);
  border-radius: 999px;
  background: #FFF3C4;
  color: #8A5A00;
}
.vls-hiw__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #101828;
  letter-spacing: 0;
  margin: 12px 0 14px;
  line-height: 1.12;
}
.vls-hiw__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475467;
  line-height: 1.65;
  margin: 0;
}
.vls-hiw__steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
}
.vls-hiw__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 94px;
  color: #1F3355;
  opacity: .78;
}
.vls-hiw__arrow .vls-icon {
  width: 28px !important;
  height: 28px !important;
  filter: drop-shadow(0 6px 12px rgba(31, 51, 85, .18));
}
.vls-hiw-step {
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(31, 51, 85, .12);
  border-radius: 8px;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vls-hiw-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: #1F3355;
}
.vls-hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 68px rgba(16, 24, 40, .14);
}
.vls-hiw-step:nth-child(1)::before { background: linear-gradient(90deg, #1F6FEB, #38BDF8); }
.vls-hiw-step:nth-child(3)::before { background: linear-gradient(90deg, #F59E0B, #FACC15); }
.vls-hiw-step:nth-child(5)::before { background: linear-gradient(90deg, #059669, #34D399); }
.vls-hiw-step:nth-child(1):hover { border-color: rgba(31, 111, 235, .34); }
.vls-hiw-step:nth-child(3):hover { border-color: rgba(245, 158, 11, .38); }
.vls-hiw-step:nth-child(5):hover { border-color: rgba(5, 150, 105, .36); }
.vls-hiw-step:nth-child(1) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F9FF 100%);
}
.vls-hiw-step:nth-child(3) {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E8 100%);
}
.vls-hiw-step:nth-child(5) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}
.vls-hiw-step__num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7A5A00;
  margin-bottom: 18px;
}
.vls-hiw-step__icon {
  width: 78px;
  height: 78px;
  background: #EEF0F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F3355;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 16px 34px rgba(31, 51, 85, .14);
}
.vls-hiw-step:nth-child(1) .vls-hiw-step__icon {
  background: linear-gradient(135deg, #DBEAFE, #93C5FD);
  color: #123D7A;
}
.vls-hiw-step:nth-child(3) .vls-hiw-step__icon {
  background: linear-gradient(135deg, #FEF3C7, #FBBF24);
  color: #7A3F00;
}
.vls-hiw-step:nth-child(5) .vls-hiw-step__icon {
  background: linear-gradient(135deg, #D1FAE5, #34D399);
  color: #064E3B;
}
.vls-hiw-step__title {
  font-family: var(--font-display);
  font-size: var(--fs-20, 20px);
  font-weight: 800;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.3;
}
.vls-hiw-step__desc {
  font-family: var(--font-body);
  font-size: var(--fs-15, 15px);
  color: #344054;
  line-height: 1.68;
  margin: 0 0 22px;
  flex: 1;
}
.vls-hiw-step__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #05603A;
  background: #ECFDF3;
  border: 1px solid #ABEFC6;
  border-radius: 6px;
  padding: 7px 12px;
}
.vls-hiw-step:nth-child(1) .vls-hiw-step__tag {
  color: #175CD3;
  background: #EFF8FF;
  border-color: #B2DDFF;
}
.vls-hiw-step:nth-child(3) .vls-hiw-step__tag {
  color: #B54708;
  background: #FFFAEB;
  border-color: #FEDF89;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY CARD — sub-category line
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-cat-card__subs {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-3);
  line-height: 1.4;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ═══════════════════════════════════════════════════════════════════════════
   REGIONAL PRICE SNAPSHOT — dark 4-city comparison
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-regional {
  background: #0D1832;
  padding: 72px 0;
}
.vls-regional__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.vls-regional__intro { padding-top: 8px; }
.vls-regional__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.vls-regional__desc {
  font-family: var(--font-body);
  font-size: var(--fs-14, 14px);
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0 0 24px;
}
.vls-regional__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFC107;
  color: #26251F;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-2);
  text-decoration: none;
  transition: background .15s;
}
.vls-regional__cta:hover { background: #FFD740; }

.vls-regional-table {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-3);
  overflow: hidden;
}
.vls-regional-table__head {
  display: grid;
  grid-template-columns: 1fr repeat(4, 110px);
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vls-r-th {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 10px 14px;
  text-align: center;
}
.vls-r-th:first-child { text-align: left; }

.vls-r-row {
  display: grid;
  grid-template-columns: 1fr repeat(4, 110px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: center;
  transition: background .12s;
}
.vls-r-row:last-child { border-bottom: none; }
.vls-r-row:hover { background: rgba(255,255,255,.03); }
.vls-r-row > div:first-child { padding: 12px 14px; }

.vls-r-product {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.vls-r-product-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}
.vls-r-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 12px 14px;
}
.vls-r-price--lo { color: #4ADE80; font-weight: 700; }

.vls-regional-table__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  gap: 12px;
}
.vls-regional-table__foot a {
  color: #FFC107;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.vls-regional-table__foot a:hover { opacity: .8; }


/* ═══════════════════════════════════════════════════════════════════════════
   MARKET NEWS — 2fr + 1fr + 1fr grid layout
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-market-news {
  background: var(--bg-body, #F7F7F5);
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.vls-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.vls-news-card {
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-1);
  border-radius: var(--r-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .12s, transform .15s, box-shadow .15s;
}
.vls-news-card:hover {
  border-color: #A8A49A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,13,9,.08);
}
.vls-news-card__img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.vls-news-card__img { height: 172px; }

.vls-news-card__thb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vls-news-card__tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: #1F3355;
  color: #fff;
}
.vls-news-card__tag--steel  { background: #C8321E; }
.vls-news-card__tag--cement { background: #55524C; }
.vls-news-card__tag--market { background: #0E8F4A; }

.vls-news-card__body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vls-news-card__chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 12px;
}
.vls-news-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 14px;
}
.vls-news-card__date,
.vls-news-card__read { color: var(--fg-3); }

.vls-news-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vls-news-card__title { font-size: 16px; -webkit-line-clamp: 2; }

.vls-news-card__excerpt {
  font-family: var(--font-body);
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vls-news-card__excerpt { font-size: 13.5px; -webkit-line-clamp: 3; }

.vls-news-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border-1);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  flex-shrink: 0;
}
.vls-news-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vls-news-card__avatar {
  width: 22px; height: 22px;
  background: #1F3355;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CALCULATOR CTA — dark banner, yellow top border
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-calc-cta {
  background: #0D1832;
  border-top: 3px solid #FFC107;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.vls-calc-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,.06) 0%, transparent 70%);
  pointer-events: none;
}
.vls-calc-cta__inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vls-calc-cta__icon {
  width: 80px; height: 80px;
  background: rgba(255,193,7,.12);
  border-radius: var(--r-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC107;
  flex-shrink: 0;
}
.vls-calc-cta__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFC107;
  margin-bottom: 6px;
}
.vls-calc-cta__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.vls-calc-cta__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}
.vls-calc-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.vls-calc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFC107;
  color: #26251F;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.vls-calc-cta__btn:hover { background: #FFD740; }
.vls-calc-cta__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.3);
  text-align: center;
  letter-spacing: .04em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS — 3-col grid
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-testimonials {
  background: var(--bg-surface, #fff);
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.vls-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vls-test-card {
  background: var(--bg-body, #F7F7F5);
  border: 1px solid var(--border-1);
  border-radius: var(--r-3);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.vls-test-card__quote {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #1F3355;
  opacity: .15;
  line-height: 1;
  margin-bottom: 4px;
}
.vls-test-card__stars {
  font-size: 14px;
  color: #FFC107;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.vls-test-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}
.vls-test-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-1);
  padding-top: 16px;
}
.vls-test-card__avatar {
  width: 40px; height: 40px;
  background: #1F3355;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.vls-test-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 2px;
}
.vls-test-card__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.3;
}
.vls-test-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0E8F4A;
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — new v2 sections
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .vls-regional-table__head,
  .vls-r-row { grid-template-columns: 1fr repeat(4, 90px); }
}

@media (max-width: 1024px) {
  .vls-news-grid { grid-template-columns: 1fr 1fr; }
  .vls-news-card--main { grid-column: 1 / -1; }
  .vls-news-card--main .vls-news-card__img { height: 200px; }
  .vls-calc-cta__inner { grid-template-columns: 64px 1fr auto; gap: 20px; }
  .vls-calc-cta__icon { width: 64px; height: 64px; }
}

@media (max-width: 900px) {
  .vls-ticker-strip__label { display: none; }
  .vls-hiw__steps { grid-template-columns: 1fr; }
  .vls-hiw__arrow { display: none; }
  .vls-regional__grid { grid-template-columns: 1fr; gap: 32px; }
  .vls-regional-table__head,
  .vls-r-row { grid-template-columns: 1fr repeat(2, 90px); }
  .vls-r-th:nth-child(3),
  .vls-r-th:nth-child(4),
  .vls-r-row > div:nth-child(3),
  .vls-r-row > div:nth-child(4) { display: none; }
  .vls-test-grid { grid-template-columns: 1fr 1fr; }
  .vls-calc-cta__inner { grid-template-columns: 1fr auto; gap: 20px; }
  .vls-calc-cta__icon { display: none; }
  .vls-hp-protools__grid { grid-template-columns: repeat(2, 1fr); }
  .vls-brand-scroll { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRO TOOLS SECTION — homepage
   ═══════════════════════════════════════════════════════════════════════════ */

.vls-hp-protools {
  padding: 72px 0 80px;
  background: #F7F7F5;
  position: relative;
}
.vls-hp-protools::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #f59e0b) 0%, #1F3355 100%);
}
.vls-hp-protools__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-3);
  margin: 8px 0 0;
  max-width: 560px;
  line-height: 1.6;
}
.vls-hp-protools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

/* ── Pro Tool Card ──────────────────────────────────────────────────────── */
.vls-hp-ptcard {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1.5px solid var(--border-1, #E8E5DF);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.vls-hp-ptcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
  border-color: transparent;
  text-decoration: none;
}
.vls-hp-ptcard__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.vls-hp-ptcard__body {
  flex: 1;
  min-width: 0;
}
.vls-hp-ptcard__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 8px;
  line-height: 1.3;
}
.vls-hp-ptcard__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0 0 12px;
}
.vls-hp-ptcard__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #f59e0b);
  transition: gap 0.15s ease;
}
.vls-hp-ptcard:hover .vls-hp-ptcard__link {
  gap: 8px;
}

@media (max-width: 600px) {
  .vls-ticker-strip { height: 36px; }
  .vls-hiw { padding: 48px 0; }
  .vls-hiw__intro { margin-bottom: 32px; }
  .vls-news-grid { grid-template-columns: 1fr; }
  .vls-test-grid { grid-template-columns: 1fr; }
  .vls-calc-cta { padding: 40px 0; }
  .vls-calc-cta__inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .vls-calc-cta__actions { align-items: center; }
  .vls-calc-cta__sub { max-width: none; }
  .vls-regional { padding: 48px 0; }
  .vls-market-news { padding: 48px 0; }
  .vls-testimonials { padding: 48px 0; }
  .vls-price-table__foot { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vls-regional-table__head,
  .vls-r-row { grid-template-columns: 1fr 90px; }
  .vls-r-th:nth-child(n+3),
  .vls-r-row > div:nth-child(n+3) { display: none; }
  .vls-brand-rail { padding: 20px 0 16px; }
  .vls-brand-scroll { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .vls-hp-protools { padding: 48px 0 56px; }
  .vls-hp-protools__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Khối "Sản phẩm nổi bật" (tài trợ) — kicker vàng */
.vls-hp-kicker--gold { color: #B45309; display: inline-flex; align-items: center; gap: 6px; }
.vls-hp-kicker--gold svg { color: #F5A623; }
.vls-hp-section--featured { background: linear-gradient(180deg, rgba(247,201,72,.06), transparent 60%); }
