/* ===== Vyshnavi Computer — Light Theme ===== */
:root {
  --vy-blue: #0057ff;
  --vy-sky: #0ea5e9;
  --vy-cyan: #0284c7;
  --bg: #f5f8fc;
  --bg-alt: #ffffff;
  --bg-soft: #eef3fa;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(0, 87, 255, 0.18);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-num: "Sora", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(0, 87, 255, 0.18); color: var(--text); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--vy-blue), var(--vy-sky));
  border-radius: 10px;
}

/* ===== Preloader / opening animation ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #05070d;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(6.5rem, 22vw, 10.5rem);
  height: clamp(6.5rem, 22vw, 10.5rem);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: scale(0.6) rotate(-6deg);
  filter: drop-shadow(0 0 32px rgba(56, 189, 248, 0.6));
  animation: preloader-mark-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    preloader-mark-pulse 2.6s ease-in-out 0.9s infinite;
}
.preloader__mark img { width: 72%; height: 72%; object-fit: contain; position: relative; z-index: 2; }
.preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.4);
  opacity: 0;
  animation: preloader-ring-fade 0.8s ease 0.3s forwards, preloader-ring-spin 4s linear infinite;
}
.preloader__ring--2 {
  inset: -1.25rem;
  border-color: rgba(0, 87, 255, 0.22);
  animation: preloader-ring-fade 0.8s ease 0.5s forwards, preloader-ring-spin 6s linear infinite reverse;
}
.preloader__text {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: preloader-text-in 0.8s ease 0.25s forwards;
}
.preloader__bar {
  width: clamp(10rem, 26vw, 15rem);
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 35%;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #0057ff);
  animation: preloader-bar-sweep 1.1s ease-in-out infinite;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes preloader-mark-in {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes preloader-mark-pulse {
  0%, 100% { filter: drop-shadow(0 0 32px rgba(56, 189, 248, 0.6)); }
  50% { filter: drop-shadow(0 0 50px rgba(56, 189, 248, 0.9)); }
}
@keyframes preloader-ring-fade {
  to { opacity: 1; }
}
@keyframes preloader-ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes preloader-text-in {
  to { opacity: 1; }
}
@keyframes preloader-bar-sweep {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(380%); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__mark, .preloader__text, .preloader__ring { animation: none; opacity: 1; transform: none; }
  .preloader__bar span { animation: none; width: 100%; }
}

.font-display, h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }

.text-gradient {
  background: linear-gradient(135deg, var(--vy-blue) 0%, var(--vy-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-blue {
  background: linear-gradient(135deg, var(--vy-sky), var(--vy-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-glow { filter: drop-shadow(0 4px 20px rgba(0, 87, 255, 0.2)); }

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.glass-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 87, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.bg-grid.opacity-10 { opacity: 0.6; }
.bg-grid.opacity-5 { opacity: 0.4; }
.bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bg-radial.opacity-50 { opacity: 0.7; }

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}
.container--narrow { max-width: 64rem; }
.container--mid { max-width: 56rem; }
.center { text-align: center; }

.section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--bg);
}
@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}
.section__head { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--vy-blue);
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }
.section__head h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.lead {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
}
.lead.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, var(--vy-blue), var(--vy-sky));
  box-shadow: 0 10px 28px rgba(0, 87, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(0, 87, 255, 0.35); }
.btn--sm { padding: 0.5rem 1.25rem; }
.btn--ghost {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.btn--ghost:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 28px rgba(0, 87, 255, 0.12);
}
.btn--text {
  background: none;
  box-shadow: none;
  color: var(--text-muted);
  padding: 0.875rem 1.25rem;
}
.btn--text:hover { color: var(--text); transform: none; }
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--vy-blue);
  box-shadow: var(--shadow);
}
.btn svg, .btn .ic { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #ff7a45 100%);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(255, 122, 69, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.06);
  box-shadow: none;
}
.btn-ghost {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.12);
}
.btn-block {
  width: 100%;
}

/* Orbs — soft light blues */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.orb--1 { left: 25%; top: 25%; width: 400px; height: 400px; background: rgba(0, 87, 255, 0.12); }
.orb--2 { right: 25%; bottom: 25%; width: 350px; height: 350px; background: rgba(14, 165, 233, 0.12); animation-delay: 2s; }
.orb--3 { left: 50%; top: 50%; width: 300px; height: 300px; background: rgba(56, 189, 248, 0.1); transform: translate(-50%, -50%); animation-delay: 1s; }
.orb--center { left: 50%; top: 50%; width: 500px; height: 500px; background: rgba(0, 87, 255, 0.08); transform: translate(-50%, -50%); filter: blur(150px); }
.orb--center-purple { left: 50%; top: 50%; width: 500px; height: 500px; background: rgba(14, 165, 233, 0.08); transform: translate(-50%, -50%); filter: blur(150px); }
.orb--tr { right: 0; top: 0; width: 400px; height: 400px; background: rgba(0, 87, 255, 0.08); }
.orb--bl { left: 0; bottom: 0; width: 300px; height: 300px; background: rgba(14, 165, 233, 0.08); filter: blur(100px); }
.orb--tl { left: 0; top: 25%; width: 400px; height: 400px; background: rgba(0, 87, 255, 0.06); filter: blur(150px); }
.orb--br { right: 0; bottom: 25%; width: 300px; height: 300px; background: rgba(14, 165, 233, 0.08); }
.orb--bl-cyan { left: 25%; bottom: 0; width: 300px; height: 300px; background: rgba(14, 165, 233, 0.08); }
.orb--br-cyan { right: 0; bottom: 25%; width: 300px; height: 300px; background: rgba(14, 165, 233, 0.08); }
.orb--cta { left: 50%; top: 50%; width: 700px; height: 500px; background: linear-gradient(to right, rgba(0, 87, 255, 0.1), rgba(14, 165, 233, 0.1)); transform: translate(-50%, -50%); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.hover-lift { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; }
.hover-lift:hover { transform: translateY(-8px); }

.gradient-border {
  position: relative;
  background: var(--bg-alt);
  border-radius: 1.5rem;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.45), rgba(14, 165, 233, 0.25), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hidden { display: none !important; }

/* Cursor glow */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
@media (min-width: 768px) {
  .cursor-glow { display: block; }
}
.cursor-glow.visible { opacity: 1; }
.cursor-glow__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(circle, rgba(0, 87, 255, 0.1) 0%, transparent 70%);
  transition: left 0.15s ease-out, top 0.15s ease-out;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.nav {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 1.5rem;
  min-height: 3.65rem;
}
@media (min-width: 1024px) {
  .nav { padding: 0.15rem 2.5rem; min-height: 4.15rem; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo__mark {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .logo__mark { width: 3.9rem; height: 3.9rem; }
}
.logo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.logo__img--light { opacity: 0; }
.logo__img--dark { opacity: 1; }
.logo__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
  transition: color 0.25s ease;
}
@media (min-width: 640px) {
  .logo__text { font-size: 1.1rem; }
}

.nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) {
  .nav__links { display: flex; }
}
.nav__links > a:not(.btn) {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--vy-sky), var(--vy-blue));
  transition: width 0.3s;
}
.nav__links > a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: flex;
  color: var(--text);
  width: 1.5rem;
  height: 1.5rem;
}
.nav__toggle svg { width: 100%; height: 100%; }
@media (min-width: 1024px) {
  .nav__toggle { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a:not(.btn) {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu .btn { margin-top: 0.5rem; text-align: center; }

/* ===== HERO — full image, text on empty wall ===== */
.hero {
  position: relative;
  display: flex;
  min-height: min(100vh, 900px);
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 5.5rem 0 2.5rem;
  background: #05070d;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__media img {
  object-fit: cover;
  object-position: left center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 48%,
    rgba(5, 7, 13, 0.25) 62%,
    rgba(5, 7, 13, 0.55) 78%,
    rgba(5, 7, 13, 0.72) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: min(34vw, 30rem);
  margin-right: 3%;
  padding: 0;
  text-align: left;
  background: none;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.9s ease;
}
@media (min-width: 1100px) {
  .hero__content {
    width: min(32vw, 32rem);
    margin-right: 4%;
  }
}
.hero__content.mounted { opacity: 1; transform: translateY(0); }

/* Kept as a plain wrapper (same width as .hero__content) so the whole
   block — heading included — shares one left edge, fully inside the
   clear wall column that never crosses onto the desk products. */
.hero__lower {
  width: 100%;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero__location::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero h1 .hero__line {
  display: block;
}
@media (min-width: 901px) {
  .hero h1 .hero__line {
    white-space: nowrap;
  }
}
.hero h1 .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 45%, #0057ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 87, 255, 0.35));
}
.hero__lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 26rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.hero__trust {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
}
.hero__trust li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0057ff);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}
.hero__ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn--ghost-dark {
  background: rgba(5, 7, 13, 0.35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding: 5.25rem 0 0;
  }
  .hero__media img {
    object-position: center top;
  }
  .hero__shade {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.55) 0%,
      rgba(5, 7, 13, 0.35) 22%,
      rgba(5, 7, 13, 0.2) 42%,
      transparent 58%,
      rgba(5, 7, 13, 0.45) 78%,
      rgba(5, 7, 13, 0.85) 100%
    );
  }
  .hero__content {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem 2.5rem;
  }
  .hero__lower {
    width: 100%;
    margin-left: 0;
  }
}

/* Header over dark hero */
.header:not(.scrolled) {
  background: rgba(5, 7, 13, 0.35);
  backdrop-filter: blur(12px);
}
.header:not(.scrolled) .nav__links > a:not(.btn) { color: rgba(255, 255, 255, 0.78); }
.header:not(.scrolled) .nav__links > a:not(.btn):hover { color: #fff; }
.header:not(.scrolled) .nav__toggle { color: #fff; }
.header:not(.scrolled) .logo__img--light { opacity: 1; }
.header:not(.scrolled) .logo__img--dark { opacity: 0; }
.header:not(.scrolled) .logo__text { color: #fff; }
.header.scrolled .nav__toggle { color: #0f172a; }
.header.scrolled .logo__img--light { opacity: 0; }
.header.scrolled .logo__img--dark { opacity: 1; }
.header.scrolled .logo__text { color: #0f172a; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vy-blue);
  background: #fff;
  border: 1px solid rgba(0, 87, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.08);
}

/* ===== ABOUT / OUR STORY ===== */
.about {
  background: var(--bg-alt);
  padding-top: 0;
}
.about__stats {
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 2rem 0;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .about__stats { margin-bottom: 5rem; padding: 2.25rem 0; }
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
}
@media (min-width: 640px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}
.about-stats__item {
  text-align: center;
  position: relative;
  padding: 0 0.75rem;
}
@media (min-width: 1024px) {
  .about-stats__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--border);
  }
}
.about-stats__value {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0d9488;
}
.about-stats__value .suffix { color: inherit; }
.about-stats__value--accent { color: #b8860b; }
.about-stats__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.about__grid {
  display: grid;
  gap: 2.75rem;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}
.about__visual { position: relative; }
.about__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: #0f172a;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__est-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0d9488;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.35), var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}
.about__est-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
}
.about__est-badge strong {
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.eyebrow--story {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.22em;
}
.eyebrow__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e8912d;
  flex-shrink: 0;
}
.about__story h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}
.about__copy {
  margin-top: 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.about__copy strong { color: var(--text); font-weight: 600; }
.story-milestones {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .story-milestones {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}
.story-milestones__year {
  display: block;
  font-family: var(--font-num);
  font-size: 1.125rem;
  font-weight: 700;
  color: #e8912d;
  margin-bottom: 0.35rem;
}
.story-milestones__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 16rem;
}
.story-milestones__line {
  display: none;
}
@media (min-width: 640px) {
  .story-milestones__line {
    display: block;
    align-self: center;
    width: 100%;
    min-width: 3rem;
    height: 0;
    border-top: 2px dotted rgba(15, 23, 42, 0.18);
    margin-top: 0.75rem;
  }
}

/* ===== BRANDS ===== */
.brands {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 4rem 0;
}
.brands .eyebrow { margin-bottom: 2.5rem; }

/* ----- scrollable brand strip ----- */
.brand-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.brand-viewport::-webkit-scrollbar { display: none; }
.brand-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.25rem;
  width: max-content;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  height: 11rem;
  width: 11.5rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s, background 0.4s;
  user-select: none;
}
.brand-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 3.75rem;
  transition: transform 0.4s;
}
.brand-card__media--dark {
  background: #0b0b0b;
  border-radius: 0.75rem;
  padding: 0.45rem 0.6rem;
}
.brand-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s;
}
.brand-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  transition: color 0.4s;
}
.brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}
.brand-card:hover .brand-card__media { transform: scale(1.06); }
.brand-card:hover .brand-card__logo { transform: scale(1.04); }
.brand-card:hover .brand-card__name { color: var(--text); }

/* ===== CATEGORIES ===== */
.categories { background: var(--bg); }
.cat-tabs {
  display: none;
}
@media (min-width: 900px) {
  .cat-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 0.25rem 0.15rem 0.5rem;
  }
}
.cat-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 640px) {
  .cat-tab { font-size: 0.875rem; padding: 0.5rem 1rem; }
}
@media (min-width: 900px) {
  .cat-tab {
    width: auto;
    flex-shrink: 0;
    justify-content: flex-start;
  }
}
.cat-tab svg { width: 1rem; height: 1rem; }
.cat-tab.active {
  background: linear-gradient(to right, var(--vy-blue), var(--vy-sky));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.25);
}
.cat-tab:hover:not(.active) { color: var(--text); border-color: var(--border-strong); }
.cat-slider {
  position: relative;
  width: 100%;
}
.cat-slider__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  /* clip subpixel bleed from the next slide */
  contain: paint;
  transform: translateZ(0);
}
.cat-slider__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .cat-slider__track { transition: none; }
}
.cat-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.45s ease;
}
.cat-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .cat-slide { opacity: 1; transition: none; }
}
@media (min-width: 1024px) {
  .cat-slide { grid-template-columns: 1fr 1fr; }
}
.cat-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.cat-img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.4), rgba(14, 165, 233, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.cat-img:hover img { transform: scale(1.05); }
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent 55%);
}
.cat-img__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.cat-img__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  color: var(--vy-blue);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
}
.cat-img__icon svg { width: 1.5rem; height: 1.5rem; }
.cat-img__label small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #bae6fd;
}
.cat-img__label strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.cat-details h3 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
}
.cat-details > p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.cat-specs { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cat-spec {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}
.cat-spec__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--vy-blue), var(--vy-sky));
  flex-shrink: 0;
  color: #fff;
}
.cat-spec__check svg { width: 0.875rem; height: 0.875rem; }
.cat-details .btn { margin-top: 2rem; }

/* ===== SERVICES ===== */
.services { background: var(--bg-alt); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.5s;
}
@media (min-width: 640px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 2rem;
    border-radius: 1.5rem;
    animation: float 6s ease-in-out infinite;
  }
}
.service-card:hover,
.service-card:focus-within {
  border-color: var(--border-strong);
  box-shadow: 0 16px 40px rgba(0, 87, 255, 0.15);
}
@media (min-width: 640px) {
  .service-card:hover {
    transform: translateY(-8px) scale(1.03);
  }
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  background: linear-gradient(to bottom right, var(--vy-blue), var(--vy-sky));
  color: #fff;
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.25);
  transition: transform 0.5s;
}
@media (min-width: 640px) {
  .service-card__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(4deg); }
.service-card__icon svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 640px) {
  .service-card__icon svg { width: 2rem; height: 2rem; }
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
@media (min-width: 640px) {
  .service-card h3 { font-size: 1.125rem; }
}
.service-card__body {
  min-width: 0;
  flex: 1;
}
.service-card__desc {
  max-height: none;
  opacity: 1;
  overflow: visible;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: all 0.5s;
}
@media (min-width: 640px) {
  .service-card__desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .service-card:hover .service-card__desc,
  .service-card:focus-within .service-card__desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 0.75rem;
  }
}
@media (max-width: 639px) {
  .services .section__head { margin-bottom: 2rem; }
  .services .section__head h2 { font-size: 1.65rem; }
  .services__lead { font-size: 0.92rem; max-width: 22rem; }
}

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg); }
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hex-grid { gap: 1.5rem; }
}
.hex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
}
@media (min-width: 640px) {
  .hex { width: 10rem; height: 10rem; }
}
.hex__shape {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.5s;
}
.hex:hover .hex__shape {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(14, 165, 233, 0.1));
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.15);
}
.hex__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.hex__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--vy-blue);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.5s;
}
.hex:hover .hex__icon {
  background: linear-gradient(to bottom right, var(--vy-blue), var(--vy-sky));
  color: #fff;
  border-color: transparent;
}
.hex__icon svg { width: 1.5rem; height: 1.5rem; }
.hex__name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.hex__desc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.hex:hover .hex__desc { opacity: 1; max-height: 3rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  padding: 5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .stats-bar__grid { grid-template-columns: repeat(5, 1fr); }
}
.stats-bar__item { text-align: center; }
.stats-bar__value {
  font-family: var(--font-num);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  color: var(--text);
}
.stats-bar__value .suffix {
  background: linear-gradient(135deg, var(--vy-sky), var(--vy-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-bar__label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .stats-bar__label { font-size: 0.875rem; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16), transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.16), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--text);
}
.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 34px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-alt); }
.contact__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.contact__visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.contact__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.4), rgba(14, 165, 233, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}
.contact__visual img { width: 100%; height: 100%; object-fit: cover; }
.contact__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.15), transparent);
}
.contact__badges {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
}
.contact__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact__badge p { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.contact__badge span { font-size: 0.75rem; color: var(--text-muted); }
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--vy-blue), var(--vy-sky));
  flex-shrink: 0;
  color: #fff;
}
.icon-box svg { width: 1.25rem; height: 1.25rem; }
.icon-box--lg {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.25);
}
.icon-box--lg svg { width: 2rem; height: 2rem; }

.contact__card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .contact__card { padding: 2.5rem; }
}
.contact__owner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__owner h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.contact__owner p { font-size: 0.875rem; color: var(--text-muted); }
.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__info .eyebrow { margin-bottom: 0.5rem; }
.contact__info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}
.contact__info a:hover { color: var(--vy-blue); }
.contact__info a svg { color: var(--vy-blue); flex-shrink: 0; }
.address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
}
.address svg { color: var(--vy-blue); margin-top: 0.125rem; flex-shrink: 0; }
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .contact__actions { flex-direction: row; }
  .contact__actions .btn { flex: 1; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 1.7fr;
  gap: 40px;
  padding-bottom: 56px;
  align-items: start;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__img {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.footer-brand p {
  color: var(--text-muted);
  margin: 18px 0 24px;
  max-width: 38ch;
  font-size: 0.94rem;
  line-height: 1.65;
}
.footer-brand .brand { margin-bottom: 4px; }
.footer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links h4,
.footer-contact h4,
.footer-map h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #06b6d4; }
.footer-contact address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 4px;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: #06b6d4; }
.map-embed {
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  height: 260px;
  background: var(--bg-alt);
}
@media (min-width: 981px) {
  .map-embed { height: 280px; }
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
.footer-map .btn-block {
  max-width: 100%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.85rem;
}
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}
.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 768px) {
  .about__est-badge { width: 3.75rem; height: 3.75rem; top: 0.75rem; right: 0.75rem; }
}

/* ===== SEO / A11Y helpers ===== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--vy-blue);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.section__head--compact { margin-bottom: 2rem; }
.brands__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-top: 0.35rem;
}

.service-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vy-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-card__link:hover { color: var(--vy-cyan); }

