/* =========================================================
   BLINKEN - Glassmorphic Industrial
   ========================================================= */

:root {
  --bg-base: #050912;
  --bg-deep: #03060d;
  --cyan: #00D4FF;
  --blue: #0066FF;
  --violet: #6B46FF;
  --pink: #FF4FB1;

  --text: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.66);
  --text-mute: rgba(255, 255, 255, 0.42);

  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-strong: rgba(255, 255, 255, 0.18);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 28px;
  --radius-xl: 32px;

  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.18);
  --shadow-glow-violet: 0 0 60px rgba(107, 70, 255, 0.22);

  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   Animated gradient mesh background
   ========================================================= */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at 50% 0%, #0a1428 0%, var(--bg-base) 40%, var(--bg-deep) 100%);
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}

.mesh-blob-1 {
  width: 60vw; height: 60vw;
  top: -20vw; left: -10vw;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 65%);
}
.mesh-blob-2 {
  width: 55vw; height: 55vw;
  top: 10vh; right: -15vw;
  background: radial-gradient(circle, var(--violet) 0%, transparent 65%);
}
.mesh-blob-3 {
  width: 50vw; height: 50vw;
  bottom: -10vw; left: 20vw;
  background: radial-gradient(circle, var(--blue) 0%, transparent 65%);
}
.mesh-blob-4 {
  width: 40vw; height: 40vw;
  bottom: 30vh; right: 30vw;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: 0.3;
}

.mesh-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.particle {
  fill: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.6));
}

/* =========================================================
   Glass primitive
   ========================================================= */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-glass);
}

@supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .glass {
    background: rgba(15, 22, 40, 0.78);
  }
}

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  position: relative;
  z-index: 5;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { transition: color 0.25s; }
.topbar a:hover { color: var(--cyan); }
.topbar-links, .topbar-meta { display: flex; gap: 14px; align-items: center; }
.topbar-sep { color: rgba(255,255,255,0.18); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px 28px 0;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--bg-base);
  border-radius: 4px;
}
.logo-text { font-weight: 500; }

.nav {
  display: flex;
  gap: 6px;
}
.nav a {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  border-radius: 12px;
  transition: all 0.25s;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.search-btn svg { width: 18px; height: 18px; }
.search-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 60%, var(--violet));
  color: white;
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 102, 255, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--glass-border-strong);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 80px 0 100px;
  position: relative;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.glass-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.gradient-text {
  background: linear-gradient(110deg, var(--cyan) 10%, var(--blue) 45%, var(--violet) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-brands {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.brands-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.brands {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  transition: color 0.25s;
}
.brand:hover { color: var(--cyan); }

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.65;
}

/* =========================================================
   Cards / grids
   ========================================================= */
.grid {
  display: grid;
  gap: 22px;
}
.grid-products {
  grid-template-columns: repeat(4, 1fr);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 212, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-glow-cyan);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(107, 70, 255, 0.16));
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  color: var(--cyan);
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  flex-grow: 1;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  margin-top: 8px;
}
.card .arrow { transition: transform 0.3s; }
.card:hover .card-link { gap: 10px; }
.card:hover .arrow { transform: translateX(2px); }

/* Feature cards */
.card-feature {
  padding: 44px;
  gap: 16px;
}
.card-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(107, 70, 255, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: var(--cyan);
}
.card-icon-lg svg { width: 32px; height: 32px; }
.card-feature h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
  font-weight: 300;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* =========================================================
   Partner / Topcon
   ========================================================= */
.partner-card {
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  border-radius: var(--radius-xl);
}

.partner-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.partner-text p {
  color: var(--text-soft);
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 36px;
}

.stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Orbit visual */
.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: white;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.orbit-ring-1 { width: 55%; height: 55%; }
.orbit-ring-2 { width: 75%; height: 75%; border-color: rgba(0, 212, 255, 0.18); }
.orbit-ring-3 { width: 95%; height: 95%; border-color: rgba(107, 70, 255, 0.14); }

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.orbit-dot-1 { top: 22%; right: 22%; }
.orbit-dot-2 { bottom: 18%; left: 24%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.orbit-dot-3 { top: 50%; right: 4%; background: white; box-shadow: 0 0 14px white; width: 8px; height: 8px; }

/* =========================================================
   Dealers
   ========================================================= */
.dealers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.dealer {
  padding: 30px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.dealer:hover {
  color: var(--text);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

/* =========================================================
   Events
   ========================================================= */
.event {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s;
}
.event:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), var(--shadow-glow-violet);
}

.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(107, 70, 255, 0.1));
  border: 1px solid var(--glass-border);
  width: fit-content;
  margin-bottom: 4px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.event-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-top: 4px;
}
.event-year {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.event-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
}
.event h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.event p {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
}

/* =========================================================
   Values
   ========================================================= */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value {
  padding: 32px 26px;
  border-radius: var(--radius);
  transition: all 0.35s;
}
.value:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-3px);
}
.value-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.value h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.value p {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.cta p {
  font-size: 17px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 36px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 260px;
}
.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  transition: all 0.25s;
}
.social:hover {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.office {
  padding: 24px 22px;
  border-radius: var(--radius);
}
.office-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.office p {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 10px;
}
.office a {
  font-size: 13px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.office a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.footer-bottom a:hover { color: var(--cyan); }
.footer-links { display: flex; gap: 22px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .partner-card { grid-template-columns: 1fr; padding: 48px 40px; }
  .partner-text .section-title { text-align: center; }
  .partner-text p { text-align: center; }
  .stats { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  .container { padding: 0 20px; }
  .header { margin: 10px 18px 0; }
  .header-inner { padding: 12px 18px; }
  .nav { display: none; }

  .topbar-meta { display: none; }

  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .dealers { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-offices { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }

  .cta { padding: 56px 28px; }
  .card-feature { padding: 32px 26px; }
}

@media (max-width: 480px) {
  .grid-products { grid-template-columns: 1fr; }
  .dealers { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }

  .hero-cta .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .stats { gap: 22px; }
  .stat-num { font-size: 36px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .glass-pill .dot { animation: none; }
}
