/* ═══════════════════════════════════════════════════════════════
   GenVue V3 — Light Theme
   Fonts: Josefin Sans (display) · Plus Jakarta Sans (sub) · Poppins (body)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* Brand */
  --gv-teal:    #1db68b;
  --gv-blue:    #00a8cc;
  --gv-orange:  #f37c47;
  --gv-yellow:  #fdce09;
  --gv-dark:    #0f1319;

  /* Light theme backgrounds */
  --bg:         #ffffff;
  --bg-2:       #f8f9fa;
  --bg-3:       #f1f3f5;
  --bg-dark:    #0f1319;

  /* Text */
  --tx:         #2d3748;
  --tx-body:    #4a5568;
  --tx-light:   #718096;
  --tx-white:   #ffffff;

  /* Borders */
  --border:     #e2e8f0;
  --border-md:  rgba(0,0,0,0.08);

  /* Gradients */
  --grad-teal:  linear-gradient(135deg, #1db68b, #00a8cc);
  --grad-warm:  linear-gradient(135deg, #f37c47, #fdce09);

  /* Fonts */
  --ff-display: 'Josefin Sans', sans-serif;
  --ff-sub:     'Plus Jakarta Sans', sans-serif;
  --ff-body:    'Poppins', sans-serif;

  /* Spacing */
  --gv-pad:     clamp(1.5rem, 5vw, 5rem);
  --radius:     12px;
  --radius-lg:  20px;

  /* Transitions */
  --gv-slate:   #3a4058;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tx-body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.t-display {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--tx);
}
.t-hero {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--tx);
}
.t-xl {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tx);
}
.t-lg {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--tx);
}
.t-md {
  font-family: var(--ff-sub);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--tx);
}
.t-gradient {
  color: #1db68b;
}
.t-white { color: var(--tx-white) !important; -webkit-text-fill-color: var(--tx-white) !important; }
.t-body { font-size: 1rem; line-height: 1.75; color: var(--tx-body); }

/* ── Navigation ─────────────────────────────────────────────── */
.gv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gv-pad);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s;
  background: transparent;
}
.gv-nav.nav-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.gv-nav.nav-always-solid {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.gv-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.gv-nav-logo img { height: 34px; width: auto; }
.gv-nav-logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.gv-nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  transition: color 0.3s;
  line-height: 1.1;
}
.gv-nav-logo-tagline {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  line-height: 1;
}
.gv-nav.nav-solid .gv-nav-logo-name,
.gv-nav.nav-always-solid .gv-nav-logo-name { color: var(--tx); }
.gv-nav.nav-solid .gv-nav-logo-tagline,
.gv-nav.nav-always-solid .gv-nav-logo-tagline { color: var(--tx-light); }

/* Nav links */
.gv-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.gv-nav-links a {
  font-family: var(--ff-sub);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}
.gv-nav.nav-solid .gv-nav-links a,
.gv-nav.nav-always-solid .gv-nav-links a { color: var(--tx-body); }
.gv-nav-links a:hover { color: var(--gv-teal) !important; }
.gv-nav-links a.active-nav { color: var(--gv-teal) !important; }

/* Products dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { padding-right: 1.1rem; }
.has-dropdown > a::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 0.2s;
}
.gv-nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  pointer-events: none;
}
/* Invisible bridge prevents gap breaking hover */
.gv-nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -10px; right: -10px;
  height: 14px;
  background: transparent;
}
.has-dropdown:hover .gv-nav-dropdown,
.has-dropdown:focus-within .gv-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.gv-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--tx-body) !important;
  transition: background 0.15s, color 0.15s;
}
.gv-nav-dropdown a:hover { background: var(--bg-2); }
.gv-nav-dropdown a strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tx);
  line-height: 1.2;
}
.gv-nav-dropdown a em {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  color: var(--tx-light);
}
.gv-nav-dropdown .dd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA button */
.gv-nav-cta {
  font-family: var(--ff-sub) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--tx-white) !important;
  background: var(--gv-teal);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.gv-nav-cta:hover { background: #18d4a2 !important; transform: translateY(-1px); }

/* Mobile burger */
.gv-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.gv-nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.3s;
}
.gv-nav.nav-solid .gv-nav-burger span,
.gv-nav.nav-always-solid .gv-nav-burger span { background: var(--tx); }

/* Mobile drawer */
.gv-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.gv-mobile-nav.open { transform: translateX(0); }
.gv-mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tx);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.gv-mobile-nav a:hover { color: var(--gv-teal); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tx-white);
  background: var(--gv-teal);
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #18d4a2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,182,139,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tx);
  background: transparent;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gv-teal);
  color: var(--gv-teal);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tx-white);
  background: transparent;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-sub);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gv-teal);
  transition: gap 0.2s;
}
.btn-text:hover { gap: 0.7rem; }

/* ── Section Utilities ──────────────────────────────────────── */
.gv-section {
  padding: 6rem var(--gv-pad);
}
.gv-section-sm { padding: 4rem var(--gv-pad); }
.gv-section-dark {
  background: var(--bg-dark);
  color: var(--tx-white);
}
.gv-section-gray { background: var(--bg-2); }
.gv-section-inner { max-width: 1300px; margin: 0 auto; padding-left: 3rem; padding-right: 3rem; }

.gv-section-header { text-align: center; margin-bottom: 4rem; }
.gv-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-teal);
  margin-bottom: 1rem;
}
.gv-section-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gv-teal);
  flex-shrink: 0;
}

/* ── Glass Card ─────────────────────────────────────────────── */
.gv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.gv-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ── Divider ────────────────────────────────────────────────── */
.gv-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.gv-reveal,
.gv-reveal-up,
.gv-reveal-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.gv-reveal { transform: translateY(24px); }
.gv-reveal-up { transform: translateY(40px); }
.gv-reveal-fade { transform: none; }
.gv-reveal.revealed,
.gv-reveal-up.revealed,
.gv-reveal-fade.revealed { opacity: 1; transform: none; }

/* ── Product Hero (for product pages) ─────────────────────── */
.prod-hero {
  margin-top: -70px;
  min-height: calc(70vh + 70px);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gv-pad) 5rem;
  overflow: hidden;
}
.prod-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s var(--ease);
}
.prod-hero:hover .prod-hero-bg { transform: scale(1.03); }
.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,19,25,0.85) 0%, rgba(15,19,25,0.3) 60%, transparent 100%);
}
.prod-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.prod-hero-eyebrow {
  color: var(--gv-teal);
  margin-bottom: 1rem;
}
.prod-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--tx-white);
  margin-bottom: 1.25rem;
}
.prod-hero-tagline {
  font-family: var(--ff-sub);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Product Feature Grid ───────────────────────────────────── */
.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.prod-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.prod-feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: rgba(29,182,139,0.3);
}
.prod-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(29,182,139,0.08);
  border: 1px solid rgba(29,182,139,0.15);
  color: var(--gv-teal);
}
.prod-feature-card h3 {
  font-family: var(--ff-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 0.5rem;
}
.prod-feature-card p {
  font-size: 0.88rem;
  color: var(--tx-light);
  line-height: 1.65;
}

/* ── Specs Table ────────────────────────────────────────────── */
.prod-specs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.prod-spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-row:hover { background: var(--bg-2); }
.prod-spec-label {
  font-family: var(--ff-sub);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tx-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.prod-spec-value {
  font-size: 0.92rem;
  color: var(--tx);
  font-weight: 500;
}

/* ── Product CTA ────────────────────────────────────────────── */
.prod-cta {
  background: var(--bg-dark);
  padding: 8rem var(--gv-pad);
  text-align: center;
}
.prod-cta-inner { max-width: 640px; margin: 0 auto; }
.prod-cta-inner p {
  margin: 1.5rem 0 2.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.prod-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────────── */
.gv-footer {
  background: #3a4058;
  padding: 5rem var(--gv-pad) 2.5rem;
}
.gv-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.gv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.gv-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.gv-footer-brand-logo img { height: 28px; width: auto; }
.gv-footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.gv-footer p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.gv-footer-social {
  display: flex;
  gap: 0.75rem;
}
.gv-footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gv-footer-social a:hover {
  border-color: var(--gv-teal);
  color: var(--gv-teal);
  background: rgba(29,182,139,0.05);
}
.gv-footer-social svg { width: 16px; height: 16px; }
.gv-footer-col h4 {
  font-family: var(--ff-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.gv-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.gv-footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.gv-footer-col ul li a:hover { color: var(--gv-teal); }
.gv-footer-office {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gv-footer-office-item { }
.gv-footer-office-city {
  font-family: var(--ff-sub);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.2rem;
}
.gv-footer-office-addr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.gv-footer-office-tel {
  font-size: 0.8rem;
  color: var(--gv-teal);
  font-weight: 500;
  display: block;
  margin-top: 0.2rem;
}
.gv-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.gv-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: none;
  margin: 0;
}

/* ── Scroll Cursor ──────────────────────────────────────────── */
.gv-cursor {
  position: fixed;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(29,182,139,0.3);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
@media (hover: none) { .gv-cursor { display: none; } }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gv-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .gv-nav-links, .gv-nav-cta { display: none; }
  .gv-nav-burger { display: flex; }
  .gv-section { padding: 4rem 1.5rem; }
  .gv-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gv-footer-brand-logo img { height: 24px; }
  .gv-footer p { max-width: 100%; }
  .prod-spec-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .prod-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-outline, .btn-outline-white {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ── Textured Background Utility ──────────────────────────── */
.gv-textured-bg {
  position: relative;
}
.gv-textured-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29,182,139,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.gv-textured-bg > * { position: relative; z-index: 1; }

/* ── Image Normalization ────────────────────────────────────── */
.gv-img-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gv-img-169  { aspect-ratio: 16/9; overflow: hidden; }
.gv-img-43   { aspect-ratio: 4/3; overflow: hidden; }
.gv-img-11   { aspect-ratio: 1/1; overflow: hidden; }
.gv-img-45   { aspect-ratio: 4/5; overflow: hidden; }
.gv-img-169 img, .gv-img-43 img, .gv-img-11 img, .gv-img-45 img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Background Textures ────────────────────────────────────── */
.gv-texture-grid {
  position: relative;
}
.gv-texture-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,182,139,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,182,139,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.gv-texture-grid > * { position: relative; z-index: 1; }

/* Responsive footer */
@media (max-width: 1024px) {
  .gv-footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .gv-footer-links-group { grid-template-columns: 1fr 1fr; }
  .gv-footer-col-offices { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .gv-footer-links-group { grid-template-columns: 1fr; }
  .gv-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
