@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #070b14;
  --bg2: #0c1220;
  --bg3: #111827;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --blue: #3b82f6;
  --cyan: #38bdf8;
  --purple: #818cf8;
  --gold: #d4a853;
  --gold-light: #f0d78c;
  --accent-grad: linear-gradient(135deg, #3b82f6, #6366f1);
  --glow: 0 8px 40px rgba(59, 130, 246, 0.15);
  --nav-h: 130px;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(59, 130, 246, 0.35); color: #fff; }
a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, .logo {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.2;
}

.section-title span,
.section-title.gradient {
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Progress & cursor */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--accent-grad);
  z-index: 10001; width: 0%;
  transition: width 0.1s;
}

#cursor-glow {
  position: fixed; width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (hover: none) { #cursor-glow { display: none; } }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 12px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: clamp(240px, 18vw, 300px);
  height: auto;
  max-width: 100%;
  max-height: 110px;
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  filter: none;
}

.logo-img-footer {
  width: clamp(200px, 26vw, 260px);
  height: auto;
  max-width: 100%;
  max-height: 96px;
  filter: none;
}

.logo-mark {
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  display: block;
}

.logo-wordmark {
  font-family: 'Sora', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.logo-wordmark em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.logo-footer .logo-mark {
  height: 32px;
  width: 32px;
}

.logo-footer .logo-wordmark {
  font-size: 1rem;
}

.logo:hover .logo-wordmark {
  color: #fff;
}

.logo:hover .logo-wordmark em {
  color: var(--cyan);
}

.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a::after { display: none; }

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px 4px;
  z-index: 1002;
  position: relative;
  margin-left: auto;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.menu-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px;
  border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-gold {
  background: linear-gradient(135deg, #c9a227, #e8c468);
  color: #0a0f1a;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.btn-gold:hover { transform: translateY(-1px); }

.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: ripple 0.5s linear;
  pointer-events: none;
}

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Cards */
.glass {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Background - subtle only */
.digital-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1; pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  opacity: 0.2;
}

.blob-1 { width: 480px; height: 480px; background: var(--blue); top: -15%; left: -10%; }
.blob-2 { width: 400px; height: 400px; background: var(--purple); bottom: -10%; right: -5%; }
.blob-3 { display: none; }

/* Hero */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.75) 50%, rgba(7, 11, 20, 0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(7, 11, 20, 0.9) 100%);
}

#particles-canvas {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; opacity: 0.6;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08; margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-hindi {
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.85;
  margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.globe-wrap {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 1;
}

.globe-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(59, 130, 246, 0.12);
}

.globe-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 0;
}

.globe-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 50%, rgba(99, 102, 241, 0.12) 100%);
  pointer-events: none;
}

.globe-frame::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 20, 0.5) 100%);
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 12px;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.stat-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-light);
}

.stat-num, .counter-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label, .counter-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.marquee {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee span {
  padding: 0 36px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.marquee span::before {
  content: '·';
  margin-right: 36px;
  color: var(--blue);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card grids */
.model-cards, .feature-grid, .merchant-grid,
.revenue-grid, .values-grid, .roadmap-grid {
  display: grid; gap: 20px;
}

.model-cards { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }

.model-card, .feature-card, .merchant-card, .revenue-card, .value-card {
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.model-card:hover, .feature-card:hover, .merchant-card:hover,
.revenue-card:hover, .quick-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--glow);
}

.model-icon, .feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 1.3rem;
}

.model-card h3, .feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.model-card p, .feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.merchant-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.merchant-card { padding: 28px 22px; text-align: center; }
.merchant-icon { font-size: 1.75rem; margin-bottom: 14px; display: block; }

.merchant-card h3 {
  font-size: 0.92rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.merchant-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* Charts */
.chart-wrap {
  margin-top: 20px; height: 100px;
  display: flex; align-items: flex-end; gap: 6px;
}

.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: barGrow 1.2s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0.85;
}

.chart-bar:nth-child(2) { background: linear-gradient(180deg, var(--purple), var(--blue)); animation-delay: 0.08s; }
.chart-bar:nth-child(3) { background: linear-gradient(180deg, var(--gold), var(--gold-light)); animation-delay: 0.16s; }
.chart-bar:nth-child(4) { animation-delay: 0.24s; }
.chart-bar:nth-child(5) { animation-delay: 0.32s; }
.chart-bar:nth-child(6) { animation-delay: 0.4s; }

@keyframes barGrow { to { transform: scaleY(1); } }

.donut-chart {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0% 35%, var(--blue) 35% 60%, var(--purple) 60% 80%, var(--gold) 80% 100%);
  position: relative; margin: 20px auto;
}

.donut-chart::after {
  content: '';
  position: absolute; inset: 14px;
  border-radius: 50%;
  background: var(--bg2);
}

/* Flow */
.flow-wrap {
  max-width: 520px; margin: 48px auto 0;
  display: flex; flex-direction: column; align-items: center;
}

.flow-node {
  padding: 22px 32px;
  text-align: center; width: 100%;
  border-radius: 12px;
}

.flow-node h3 {
  font-size: 0.95rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.flow-node p { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.flow-arrow {
  font-size: 1.2rem; color: var(--blue);
  padding: 6px 0; opacity: 0.5;
}

.glow-text { color: var(--cyan); font-weight: 600; }

/* Quick links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.quick-link-card {
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.quick-link-card .feature-icon { margin: 0 auto 14px; }

.quick-link-card h3 {
  font-size: 0.95rem;
  font-family: 'Sora', sans-serif;
  margin-bottom: 6px;
}

.quick-link-card p { font-size: 0.8rem; color: var(--muted); }

.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  margin: 3px;
}

/* CTA */
.cta-section {
  padding: 96px 0;
  text-align: center;
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.cta-bg { display: none; }

.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-content p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Core message */
.core-msg {
  max-width: 820px; margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.04));
}

.core-msg p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

.core-msg .animated-border { display: none; }

/* Footer */
footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 8px;
}

.footer-links h4, .footer-social h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.social-icons { display: flex; gap: 10px; }

.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}

.social-icon:hover {
  border-color: var(--border-light);
  background: var(--surface-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
}

/* Mission card */
.mission-card {
  max-width: 720px; margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.mission-card::before { display: none; }
.mission-card .inner { background: none; padding: 0; }

/* Hide AI clutter */
.ai-bg-canvas, .ai-scanlines,
.ai-orb-ring, .neural-svg,
.ai-ticker, .orbit, .node-dot, .float-icon { display: none !important; }

.ai-badge { display: none !important; }
.hero-badge { display: inline-flex !important; }

/* Responsive */
@media (max-width: 1100px) {
  :root { --nav-h: 112px; }

  .logo-img {
    width: clamp(210px, 56vw, 240px);
    max-height: 90px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 12px;
    right: 12px;
    z-index: 1001;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-height: calc(100vh - var(--nav-h) - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    white-space: normal;
  }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 1024px) {
  .hero-content, .about-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .model-cards, .feature-grid { grid-template-columns: 1fr; }
  .merchant-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid, .values-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blob-1 { width: 280px; height: 280px; }
  .blob-2 { width: 240px; height: 240px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 108px; }

  .container { padding: 0 16px; }

  .merchant-grid, .quick-links { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }

  .core-msg,
  .mission-card {
    padding: 32px 20px;
  }

  .model-card, .feature-card, .merchant-card, .revenue-card, .value-card {
    padding: 24px 20px;
  }

  .logo-wordmark { font-size: 1rem; }
  .logo-mark { height: 32px; width: 32px; }
  .logo-img {
    width: clamp(190px, 54vw, 220px);
    max-height: 82px;
  }
  .logo-img-footer {
    width: clamp(180px, 50vw, 210px);
    max-height: 78px;
  }
}

@media (max-width: 480px) {
  :root { --nav-h: 100px; }

  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .cta-section { padding: 48px 0; }

  .hero-btns, .cta-btns { flex-direction: column; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; }

  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 16px 14px; }
  .stat-num, .counter-val { font-size: 1.4rem; }

  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-desc { font-size: 0.95rem; }

  footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; }

  .logo-img {
    width: clamp(170px, 52vw, 200px);
    max-height: 76px;
  }
  .logo-img-footer {
    width: clamp(160px, 48vw, 190px);
    max-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
