/* ── Vequis Static — Layout CSS ─────────────────────────────── */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --vequis-dark:  #131417;
  --vequis-black: #020106;
  --vequis-gold:  #D4AA62;
  --vequis-white: #ffffff;
  --vequis-muted: #86898C;
  --vequis-light: #F2F2F2;
  --vequis-bg:    #F5F9F9;

  --font-bebas:   "Bebas Neue", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-tech:    "IBM Plex Mono", monospace;

  --header-h: 80px;
  --px-site:  70px;
}

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

html {
  font-family: var(--font-poppins);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--vequis-dark);
  color: var(--vequis-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Container ───────────────────────────────────────────────── */
.vequis-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Typography helpers ──────────────────────────────────────── */
.font-bebas   { font-family: var(--font-bebas); }
.font-poppins { font-family: var(--font-poppins); }
.font-tech    { font-family: var(--font-tech); }
.text-gold    { color: var(--vequis-gold); }
.text-muted   { color: var(--vequis-muted); }
.text-black-v { color: var(--vequis-black); }

/* ── Watermark ───────────────────────────────────────────────── */
.watermark-text {
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  color: transparent;
  user-select: none;
  pointer-events: none;
  font-family: var(--font-bebas);
}

/* ── Reveal animation ────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeinup {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadein   { animation: fadein   1s ease both; }
.animate-fadeinup { animation: fadeinup 1s ease both; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(2, 1, 6, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Scrolled state */
.site-header--scrolled {
  top: 10px;
  height: 60px;
  background: rgba(2, 1, 6, 0.92);
  border-color: rgba(212, 170, 98, 0.2);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.site-header__glow-bar {
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vequis-gold), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.site-header__logo-img {
  height: 32px;
  width: auto;
  transition: height 0.4s ease;
}
.site-header--scrolled .site-header__logo-img {
  height: 26px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--vequis-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover,
.nav-link--active {
  color: var(--vequis-white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 170, 98, 0.35);
  background: rgba(212, 170, 98, 0.04);
  color: var(--vequis-gold);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 2px;
  font-family: var(--font-bebas);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.site-header__cta-btn:hover {
  background: var(--vequis-gold);
  color: var(--vequis-black);
  border-color: var(--vequis-gold);
  box-shadow: 0 0 15px rgba(212, 170, 98, 0.25);
  transform: translateY(-1px);
}

.site-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vequis-white);
  padding: 4px;
  transition: color 0.3s ease;
}
.site-header__toggle:hover {
  color: var(--vequis-gold);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: var(--vequis-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.site-footer__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: clamp(140px, 26vw, 420px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 80px var(--px-site) 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-b: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .site-footer__cta {
    flex-direction: row;
    align-items: flex-end;
  }
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.2fr;
  }
}

.site-footer__logo { height: 32px; width: auto; margin-bottom: 16px; }

.site-footer__tagline {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.site-footer__menu,
.site-footer__address,
.site-footer__socials,
.site-footer__hubs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col-label {
  font-family: var(--font-bebas);
  font-size: 14px;
  color: var(--vequis-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}

.site-footer__link {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.site-footer__link:hover { 
  color: var(--vequis-gold);
  padding-left: 2px;
}

.site-footer__text {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.site-footer__social-row { display: flex; gap: 12px; margin-top: 4px; }

.site-footer__social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, transform 0.2s;
  display: flex;
}
.site-footer__social-link:hover { 
  color: var(--vequis-gold); 
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__copy    { font-family: var(--font-poppins); font-size: 12px; color: rgba(255, 255, 255, 0.25); }
.site-footer__credits { font-family: var(--font-poppins); font-size: 12px; color: rgba(255, 255, 255, 0.15); }

/* ── Hero slider ─────────────────────────────────────────────── */
.vequis-hero {
  position: relative;
  min-height: 90vh;
  max-height: 860px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide--active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.hero-watermark__word {
  font-family: var(--font-bebas);
  font-size: clamp(140px, 22vw, 380px);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  color: transparent;
  user-select: none;
  letter-spacing: -0.02em;
  transition: opacity 0.6s ease;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 90vh;
  padding: calc(var(--header-h) + 80px) var(--px-site) 40px;
}
.hero-content__spacer { flex: 1; }

/* ── Solutions cards ─────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 800px;
  margin-inline: auto;
}

.solution-card__img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.solution-card__body {
  background: var(--vequis-black);
  padding: 20px 16px;
}
.solution-card__name {
  font-family: var(--font-bebas);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vequis-white);
  display: block;
  margin-bottom: 4px;
}
.solution-card__desc {
  font-family: var(--font-poppins);
  font-size: 11px;
  color: var(--vequis-muted);
  line-height: 1.5;
}

/* ── Product cards (solucoes) ────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.product-card {
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.product-card__img {
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__bar {
  background: var(--vequis-black);
  padding: 20px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.product-card:hover .product-card__bar {
  border-top-color: var(--vequis-gold);
}
.product-card__tag {
  font-family: var(--font-bebas);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vequis-gold);
}
.product-card__label {
  font-family: var(--font-bebas);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--vequis-white);
  line-height: 1.2;
}

/* ── Service cards 3-col ─────────────────────────────────────── */
.service-card {
  background: #F8F8F8;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--vequis-gold);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-card__icon span { color: var(--vequis-gold); font-size: 20px; font-weight: bold; line-height: 1; }
.service-card__title {
  font-family: var(--font-bebas);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--vequis-black);
  margin-bottom: 12px;
}
.service-card__desc { font-family: var(--font-poppins); font-size: 13px; color: var(--vequis-muted); line-height: 1.6; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #E5E7EA;
}
.stat-item {
  padding: 24px 32px;
  border-right: 1px solid #E5E7EA;
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: var(--font-bebas);
  font-size: 64px;
  color: var(--vequis-black);
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-family: var(--font-poppins);
  font-size: 11px;
  color: var(--vequis-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Values (sobre) ──────────────────────────────────────────── */
.value-card__bar  { width: 32px; height: 2px; background: var(--vequis-gold); margin-bottom: 16px; }
.value-card__title { font-family: var(--font-bebas); font-size: 22px; text-transform: uppercase; color: var(--vequis-white); margin-bottom: 12px; }
.value-card__desc  { font-family: var(--font-poppins); font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── Gold accent bar ─────────────────────────────────────────── */
.gold-bar     { width: 40px; height: 3px; background: var(--vequis-gold); margin-bottom: 24px; }
.gold-bar--sm { width: 32px; height: 2px; }

/* ── Typographic band (static) ───────────────────────────────── */
.typo-band { overflow: hidden; background: var(--vequis-light); padding-block: 32px; }
.typo-band__text {
  font-family: var(--font-bebas);
  font-size: clamp(70px, 11vw, 150px);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--vequis-black);
  user-select: none;
}

/* ── Typographic band (marquee animado) ──────────────────────── */
.typo-band-marquee {
  overflow: hidden;
  background: var(--vequis-light);
  padding-block: 28px;
  border-top: 1px solid rgba(2,1,6,0.08);
  border-bottom: 1px solid rgba(2,1,6,0.08);
  cursor: default;
}
.typo-band-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.typo-band-marquee:hover .typo-band-marquee__track {
  animation-play-state: paused;
}
.typo-band-marquee__item {
  font-family: var(--font-bebas);
  font-size: clamp(52px, 8vw, 110px);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--vequis-black);
  user-select: none;
  padding-inline: 48px;
  flex-shrink: 0;
}
.typo-band-marquee__sep {
  font-size: clamp(20px, 3vw, 36px);
  color: var(--vequis-gold);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}

/* ── Editorial grid (servicos) ───────────────────────────────── */
.editorial-card {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.editorial-card__bar  { width: 32px; height: 2px; background: var(--vequis-gold); margin-bottom: 24px; }
.editorial-card__title {
  font-family: var(--font-bebas);
  font-size: clamp(18px, 1.6vw, 24px);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.editorial-card__desc { font-family: var(--font-poppins); font-size: 13px; line-height: 1.7; }
.editorial-card--light { background: var(--vequis-white); }
.editorial-card--dark  { background: #2A2A2A; }
.editorial-card--gray  { background: var(--vequis-light); border-left: 1px solid #E0E0E0; }

/* ── Locations ───────────────────────────────────────────────── */
.locations-section { display: flex; min-height: 400px; background: var(--vequis-bg); }
.locations-panel {
  width: 240px;
  flex-shrink: 0;
  background: var(--vequis-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.location-item { font-family: var(--font-bebas); font-size: 19px; text-transform: uppercase; margin-bottom: 12px; }
.location-item--active { color: var(--vequis-gold); }
.location-item--dim    { color: rgba(255,255,255,0.4); }

/* ── Operacionais card ───────────────────────────────────────── */
.operacionais-card { background: var(--vequis-white); padding: 40px; max-width: 400px; width: 100%; }
.operacionais-card__title { font-family: var(--font-bebas); font-size: 43px; text-transform: uppercase; color: var(--vequis-black); line-height: 1; margin-bottom: 20px; }
.operacionais-card__text  { font-family: var(--font-poppins); font-size: 14px; color: var(--vequis-muted); line-height: 1.7; margin-bottom: 24px; }
.operacionais-card__cta   { font-family: var(--font-poppins); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--vequis-black); border-bottom: 2px solid var(--vequis-gold); padding-bottom: 2px; }

/* ── FAQ rows ────────────────────────────────────────────────── */
.faq-item { border-top: 1px solid #E0E0E0; padding: 24px 0; display: flex; align-items: flex-start; gap: 20px; }
.faq-item__icon { font-family: var(--font-bebas); font-size: 22px; color: var(--vequis-gold); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.faq-item__q    { font-family: var(--font-bebas); font-size: 16px; text-transform: uppercase; color: var(--vequis-black); margin-bottom: 8px; }
.faq-item__a    { font-family: var(--font-poppins); font-size: 13px; color: var(--vequis-muted); line-height: 1.6; }

/* ── Contact form ────────────────────────────────────────────── */
.contact-input {
  font-family: var(--font-poppins);
  font-size: 13px;
  padding: 12px 16px;
  border: 1px solid #D0D0D0;
  color: var(--vequis-black);
  background: var(--vequis-white);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-input::placeholder { color: var(--vequis-muted); }
.contact-input:focus { border-color: var(--vequis-gold); }

/* ── Button system ───────────────────────────────────────────── */
/* Primary: gold fill — main CTAs */
.btn-primary,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vequis-black);
  background: var(--vequis-gold);
  padding: 13px 32px;
  border: 1px solid var(--vequis-gold);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  line-height: 1;
}
.btn-primary:hover,
.contact-btn:hover {
  background: var(--vequis-white);
  color: var(--vequis-black);
  border-color: var(--vequis-white);
  box-shadow: 0 4px 20px rgba(212, 170, 98, 0.25);
  transform: translateY(-1px);
}

/* Ghost: gold border, transparent fill */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vequis-gold);
  background: transparent;
  padding: 13px 32px;
  border: 1px solid rgba(212, 170, 98, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  line-height: 1;
}
.btn-ghost:hover {
  background: var(--vequis-gold);
  color: var(--vequis-black);
  border-color: var(--vequis-gold);
  transform: translateY(-1px);
}

/* HUD: micro button for inline / technical UI */
.btn-hud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tech);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.04);
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.btn-hud:hover {
  background: rgba(0, 0, 0, 0.09);
  color: rgba(0, 0, 0, 0.85);
}
.btn-hud--dark {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-hud--dark:hover {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

/* ── Section labels ──────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-bebas);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vequis-gold);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow--muted { color: var(--vequis-muted); }
.section-title {
  font-family: var(--font-bebas);
  font-size: clamp(28px, 3.5vw, 52px);
  text-transform: uppercase;
  color: var(--vequis-black);
  line-height: 1.05;
}
.section-title--white { color: var(--vequis-white); }

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid #E0E0E0;
  padding-block: 48px;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-bebas);
  font-size: clamp(28px, 3.5vw, 52px);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(2,1,6,0.18);
  letter-spacing: 0.02em;
  padding-right: 80px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Product page hero ────────────────────────────────────────── */
.product-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.product-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.product-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 110px var(--px-site) 0;
}
.product-hero__name {
  font-family: var(--font-bebas);
  text-transform: uppercase;
  color: var(--vequis-white);
  line-height: 1;
  margin-bottom: -0.12em;
  display: block;
}
.cta-blue {
  font-family: var(--font-bebas);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vequis-white);
  background: #00AEEF;
  display: inline-block;
  padding: 12px 24px;
  transition: opacity 0.2s;
  width: fit-content;
}
.cta-blue:hover { opacity: 0.85; }

/* ── Numbered list items ─────────────────────────────────────── */
.num-item {
  border-top: 1px solid #D0D0D0;
  padding: 24px 0;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.num-item__num {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: var(--vequis-muted);
  flex-shrink: 0;
  width: 60px;
}
.num-item__title {
  font-family: var(--font-bebas);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--vequis-black);
  margin-bottom: 8px;
}
.num-item__desc {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: var(--vequis-muted);
  line-height: 1.6;
  max-width: 680px;
}

/* ── Blueprint & Grid Patterns ────────────────────────────────── */
.blueprint-bg,
.blueprint-bg-dark {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(212, 170, 98, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 170, 98, 0.03) 1px, transparent 1px);
}

.blueprint-bg-light {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(212, 170, 98, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 170, 98, 0.06) 1px, transparent 1px);
}

.dot-matrix {
  background-size: 20px 20px;
  background-image: radial-gradient(rgba(212, 170, 98, 0.1) 1px, transparent 0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --px-site: 40px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .product-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid #E5E7EA; }
  .stat-item:nth-child(4) { border-top: 1px solid #E5E7EA; border-right: none; }
}

@media (max-width: 768px) {
  :root { --px-site: 24px; }

  .site-header {
    width: calc(100% - 24px);
    padding: 0 20px;
    top: 12px;
    height: 60px;
  }
  .site-header--scrolled {
    top: 6px;
    height: 54px;
  }
  
  .site-header__cta-btn {
    display: none;
  }

  .site-header__nav { display: none; }
  .site-header__toggle { display: flex; }

  .site-header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(2, 1, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 20px;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  }
  .site-header__nav--open .nav-link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .site-header__nav--open .nav-link:last-child {
    border-bottom: none;
  }
  .site-header__nav--open .nav-link::after {
    display: none;
  }

  .vequis-hero { min-height: 760px; max-height: none; }
  .hero-content { padding-top: calc(var(--header-h) + 48px); min-height: 760px; }

  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .product-grid   { grid-template-columns: 1fr 1fr; }
  .product-card__img { height: 220px; }

  .locations-section { flex-direction: column; }
  .locations-panel   { width: 100%; }

  .site-footer__top { flex-direction: column; gap: 32px; }

  .typo-band__text { font-size: clamp(44px, 14vw, 90px); }
}

/* ── Floating Side Menu ──────────────────────────────────────── */
.floating-side-menu {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(2, 1, 6, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 14px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.floating-side-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
}

.floating-side-menu__item i {
  font-size: 20px;
}

.floating-side-menu__item:hover,
.floating-side-menu__item--active {
  color: var(--vequis-gold);
  background: rgba(212, 170, 98, 0.1);
  border-color: rgba(212, 170, 98, 0.3);
}

.floating-side-menu__item--active {
  background: rgba(212, 170, 98, 0.15);
  border-color: rgba(212, 170, 98, 0.5);
  box-shadow: 0 0 12px rgba(212, 170, 98, 0.25);
}

/* Radar pulse rings around active item */
.floating-side-menu__item--active::before,
.floating-side-menu__item--active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--vequis-gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: hudPulse 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.floating-side-menu__item--active::after {
  animation-delay: 1s;
}

/* Subtle pulse of the active icon */
.floating-side-menu__item--active i {
  animation: iconGentlyMove 3s ease-in-out infinite;
}

@keyframes hudPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes iconGentlyMove {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.floating-side-menu__tooltip {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--vequis-black);
  border: 1px solid rgba(212, 170, 98, 0.25);
  color: var(--vequis-white);
  font-family: var(--font-poppins);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-side-menu__tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(212, 170, 98, 0.25) transparent transparent;
  display: block;
  width: 0;
  height: 0;
}

.floating-side-menu__item:hover .floating-side-menu__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
  .floating-side-menu {
    display: none;
  }
}

/* Shift hero content to the right to clear the floating menu (desktop only) */
@media (min-width: 992px) {
  .has-floating-menu .hero-content {
    padding-left: calc(var(--px-site) + 40px);
  }
}


